From 30d7711cfebefd93a857d089413bbd828790fa93 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 18 Dec 2012 18:06:49 +0100 Subject: [PATCH 01/72] [FIX] lp:1091759 lp bug: https://launchpad.net/bugs/1091759 fixed bzr revid: hbrunn@therp.nl-20121218170649-cbe91ycxmkv05jcm --- addons/web/static/src/js/chrome.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 4ad159e3ac5..5bd760486a3 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -461,7 +461,6 @@ instance.web.DatabaseManager = instance.web.Widget.extend({ params: { 'db': form_obj['db_name'], 'login': 'admin', - 'password': form_obj['create_admin_pwd'], 'login_successful': function() { self.do_action("reload"); }, From fec027e83203e6705f690469cd39101e4eba3b06 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 15 Jan 2013 11:40:15 +0100 Subject: [PATCH 02/72] [IMP] reorder modules menus bzr revid: chs@openerp.com-20130115104015-5ytx00t0b5230aaf --- openerp/addons/base/module/module_view.xml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/openerp/addons/base/module/module_view.xml b/openerp/addons/base/module/module_view.xml index 3a43a2591ba..3923c9de3bd 100644 --- a/openerp/addons/base/module/module_view.xml +++ b/openerp/addons/base/module/module_view.xml @@ -171,23 +171,18 @@ - - Modules ir.module.module form kanban,tree,form -

No module found!

You should try others search criteria.

- + @@ -195,20 +190,14 @@ Apps apps - - + Updates apps.updates {} - - + From 7e1a76cdd846a8c455d402fcd76d8baa58a9b2f8 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 15 Jan 2013 11:40:47 +0100 Subject: [PATCH 03/72] [FIX] setup.py: correct windows install bzr revid: chs@openerp.com-20130115104047-6hrl825bn5pkmoo6 --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index b144924d022..e4e6001d302 100755 --- a/setup.py +++ b/setup.py @@ -43,6 +43,12 @@ def data(): base = os.path.join('pytz', root[len(tzdir) + 1:]) r[base] = [os.path.join(root, f) for f in filenames] + import docutils + dudir = os.path.dirname(docutils.__file__) + for root, _, filenames in os.walk(dudir): + base = os.path.join('docutils', root[len(dudir) + 1:]) + r[base] = [os.path.join(root, f) for f in filenames if not f.endswith(('.py', '.pyc', '.pyo'))] + return r.items() def gen_manifest(): From a26b66dbf5420d14f9e5d90e2ff94ad0189acc26 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Tue, 15 Jan 2013 14:43:59 +0100 Subject: [PATCH 04/72] [FIX] mail_thread subclasses: message_new() should copy the author_id if one was identified bzr revid: odo@openerp.com-20130115134359-mczjs42f4gchrk7d --- addons/crm/crm_lead.py | 1 + addons/crm_claim/crm_claim.py | 1 + addons/crm_helpdesk/crm_helpdesk.py | 1 + addons/hr_recruitment/hr_recruitment.py | 1 + addons/project_issue/project_issue.py | 1 + 5 files changed, 5 insertions(+) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index 4455663ca9a..187dbe2523e 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -980,6 +980,7 @@ class crm_lead(base_stage, format_address, osv.osv): 'description': desc, 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), + 'partner_id': msg.get('author_id', False), 'user_id': False, } if msg.get('priority') in dict(crm.AVAILABLE_PRIORITIES): diff --git a/addons/crm_claim/crm_claim.py b/addons/crm_claim/crm_claim.py index a724579f1e8..275d9edaab4 100644 --- a/addons/crm_claim/crm_claim.py +++ b/addons/crm_claim/crm_claim.py @@ -195,6 +195,7 @@ class crm_claim(base_stage, osv.osv): 'description': desc, 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), + 'partner_id': msg.get('author_id', False), } if msg.get('priority'): defaults['priority'] = msg.get('priority') diff --git a/addons/crm_helpdesk/crm_helpdesk.py b/addons/crm_helpdesk/crm_helpdesk.py index 5ed1c040627..2d0383962b1 100644 --- a/addons/crm_helpdesk/crm_helpdesk.py +++ b/addons/crm_helpdesk/crm_helpdesk.py @@ -106,6 +106,7 @@ class crm_helpdesk(base_state, base_stage, osv.osv): 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), 'user_id': False, + 'partner_id': msg.get('author_id', False), } defaults.update(custom_values) return super(crm_helpdesk,self).message_new(cr, uid, msg, custom_values=defaults, context=context) diff --git a/addons/hr_recruitment/hr_recruitment.py b/addons/hr_recruitment/hr_recruitment.py index 44d8912c5f1..92465c1b84e 100644 --- a/addons/hr_recruitment/hr_recruitment.py +++ b/addons/hr_recruitment/hr_recruitment.py @@ -353,6 +353,7 @@ class hr_applicant(base_stage, osv.Model): 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), 'user_id': False, + 'partner_id': msg.get('author_id', False), } if msg.get('priority'): defaults['priority'] = msg.get('priority') diff --git a/addons/project_issue/project_issue.py b/addons/project_issue/project_issue.py index b0b7193b7aa..8eb7281cd24 100644 --- a/addons/project_issue/project_issue.py +++ b/addons/project_issue/project_issue.py @@ -501,6 +501,7 @@ class project_issue(base_stage, osv.osv): 'description': desc, 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), + 'partner_id': msg.get('author_id', False), 'user_id': False, } if msg.get('priority'): From 5880f9aa751bd58ac6c6488f425fe9b06b97acfb Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 16 Jan 2013 05:53:03 +0000 Subject: [PATCH 05/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130116055224-nyvhjk7xo4etfazv bzr revid: launchpad_translations_on_behalf_of_openerp-20130116055259-2hpcs7r52n0z59cy bzr revid: launchpad_translations_on_behalf_of_openerp-20130116055303-l47hpzm5yz18i8q7 --- addons/account/i18n/pt.po | 8 +- addons/account_followup/i18n/pt.po | 14 +- addons/account_voucher/i18n/ro.po | 90 +- addons/analytic/i18n/ro.po | 42 +- addons/base_import/i18n/pt.po | 30 +- addons/base_status/i18n/pt.po | 18 +- addons/decimal_precision/i18n/sl.po | 10 +- addons/google_docs/i18n/pt.po | 10 +- addons/hr_evaluation/i18n/sl.po | 910 +++++++++++++++++ addons/hr_recruitment/i18n/sl.po | 1259 ++++++++++++++++++++++++ addons/mail/i18n/ru.po | 229 +++-- addons/mrp/i18n/sl.po | 32 +- addons/mrp_byproduct/i18n/sl.po | 10 +- addons/mrp_operations/i18n/sl.po | 10 +- addons/portal_crm/i18n/pt.po | 9 +- addons/procurement/i18n/it.po | 14 +- addons/product/i18n/pt.po | 72 +- addons/product/i18n/sl.po | 26 +- addons/purchase_requisition/i18n/it.po | 83 +- addons/purchase_requisition/i18n/sl.po | 474 +++++++++ addons/sale/i18n/ru.po | 46 +- addons/stock/i18n/sl.po | 35 +- addons/survey/i18n/hr.po | 30 +- addons/web/i18n/pt.po | 10 +- openerp/addons/base/i18n/pt.po | 10 +- 25 files changed, 3148 insertions(+), 333 deletions(-) create mode 100644 addons/hr_evaluation/i18n/sl.po create mode 100644 addons/hr_recruitment/i18n/sl.po create mode 100644 addons/purchase_requisition/i18n/sl.po diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 17e48a0dc53..b502adfd6d4 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -8,14 +8,14 @@ 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-01-08 17:44+0000\n" +"PO-Revision-Date: 2013-01-15 10:50+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1251,7 +1251,7 @@ msgstr "Início do período" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Reembolsos" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 090aa907aa6..c5fc8ac200b 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 11:08+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -44,7 +44,7 @@ msgstr "Dar Seguimento" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(date)s" -msgstr "" +msgstr "%(date)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 @@ -302,7 +302,7 @@ msgstr "" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(partner_name)s" -msgstr "" +msgstr "%(partner_name)s" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level1 @@ -836,7 +836,7 @@ msgstr "" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 336b5f173fe..9164f77caac 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.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:04+0000\n" -"PO-Revision-Date: 2013-01-14 19:06+0000\n" +"PO-Revision-Date: 2013-01-15 19:03+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" "X-Generator: Launchpad (build 16420)\n" #. module: account_voucher @@ -586,12 +586,22 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a inregistra o plata noua. \n" +"

\n" +" Introduceti clientul si metoda de plata, iar apoi sau\n" +" creati manual o inregistrare a platii sau OpenERP va va " +"propune\n" +" automat reconcilierea acestei plati cu facturile\n" +" sau chitantele de vanzare deschise.\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "" +msgstr "Cont Pierderi la Cursul de Schimb Valutar" #. module: account_voucher #: view:account.voucher:0 @@ -625,6 +635,9 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Ar trebui sa configurati 'Contul de Pierderi la Cursul de Schimb Valutar' in " +"setarile contabile, pentru a gestion automat inregistrarile contabile " +"asociate diferentelor dintre cursurile de schimb." #. module: account_voucher #: view:account.voucher:0 @@ -634,7 +647,7 @@ msgstr "Linii de cheltuieli" #. module: account_voucher #: view:account.voucher:0 msgid "Sale voucher" -msgstr "" +msgstr "Voucher de vanzari" #. module: account_voucher #: help:account.voucher,is_multi_currency:0 @@ -648,7 +661,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Inregistreaza Plata" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -686,17 +699,17 @@ msgstr "Plati si Incasari" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "Plata Voucher" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Stare Voucher" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile this record?" -msgstr "" +msgstr "Sunteti sigur(a) ca doriti sa nu reconciliati aceasta inregistrare?" #. module: account_voucher #: field:account.voucher,company_id:0 @@ -720,7 +733,7 @@ msgstr "Reconciliati Plata Sold" #: code:addons/account_voucher/account_voucher.py:963 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Eroare de Configurare !" #. module: account_voucher #: view:account.voucher:0 @@ -737,14 +750,14 @@ msgstr "Total inclusiv taxe" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Voucher de Cumparaturi" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: account_voucher #: view:account.voucher:0 @@ -755,7 +768,7 @@ msgstr "Alocare" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "sau" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -765,7 +778,7 @@ msgstr "August" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Valideaza Plata" #. module: account_voucher #: help:account.voucher,audit:0 @@ -786,7 +799,7 @@ msgstr "Octombrie" #: code:addons/account_voucher/account_voucher.py:964 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Va rugam sa activati secventa registrului selectat !" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -808,12 +821,12 @@ msgstr "Platit(a)" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Chitante Vanzari" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -867,7 +880,7 @@ msgstr "Plati anterioare ?" #: code:addons/account_voucher/account_voucher.py:1098 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Factura pe care doriti sa o achitati nu mai este valabila." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -888,32 +901,32 @@ msgstr "Companii" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Activ(a)" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:968 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Va rugam sa definiti o secventa in registru." #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.act_pay_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Plati Client" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Analiza Chitantelor de Vanzari" #. module: account_voucher #: view:sale.receipt.report:0 @@ -970,7 +983,7 @@ msgstr "Extras de cont" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "schimbarea_valorii(valoare)" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1008,7 +1021,7 @@ msgstr "Anulati" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Deschide Meniul de Facturare" #. module: account_voucher #: selection:account.voucher,state:0 @@ -1028,6 +1041,7 @@ msgstr "Elementele Jurnalului" #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" +"Va rugam sa definiti conturile implicite de credit/debit in registrul \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -1071,6 +1085,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Din acest raport, puteti avea o privire generala asupra valorii " +"facturate\n" +" clientului dumneavoastra, precum si asupra intarzierilor de " +"plata. Unealta de cautare poate\n" +" de asemenea sa fie folosita pentru a va personaliza Rapoartele " +"facturilor si, astfel, sa potriviti\n" +" aceasta analiza nevoilor dumneavoastra.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -1100,7 +1124,7 @@ msgstr "Mai" #. module: account_voucher #: view:account.voucher:0 msgid "Sale Receipt" -msgstr "" +msgstr "Chitanta de Vanzare" #. module: account_voucher #: view:account.voucher:0 @@ -1187,7 +1211,7 @@ msgstr "An" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "" +msgstr "Cont Castig la Cursul de Schimb Valutar" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1213,7 +1237,7 @@ msgstr "Tip predefinit" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1237,12 +1261,13 @@ msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line." msgstr "" +"Valoarea voucher-ului trebuie sa fie acceasi ca si cea din linia extrasului." #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:867 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "" +msgstr "Nu pot fi sterse voucherele care sunt deja deschise sau platite." #. module: account_voucher #: help:account.voucher,date:0 @@ -1252,7 +1277,7 @@ msgstr "Data efectiva pentru inregistrarile contabile" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Schimbarea Starii" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1299,14 +1324,14 @@ msgstr "Sold la deschidere" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "Starea schimbata" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1000 #: code:addons/account_voucher/account_voucher.py:1004 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Configurare Insuficienta!" #. module: account_voucher #: help:account.voucher,active:0 @@ -1315,3 +1340,6 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" +"Implicit, reconcilierea voucherelor facuta in extrasele de cont ciorna este " +"setata ca inactiva, ceea ce permite ascunderea platii " +"clientului/furnizorului cat timp extrasul de cont nu este confirmat." diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index ea5bf5dc9c7..a54c435e893 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 19:11+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,13 +25,13 @@ msgstr "Sub-conturi" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "In desfasurare" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Contract: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -41,7 +41,7 @@ msgstr "Șablon" #. module: analytic #: view:account.analytic.account:0 msgid "End Date" -msgstr "" +msgstr "Data de sfarsit" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -65,6 +65,14 @@ msgid "" "The special type 'Template of Contract' allows you to define a template with " "default data that you can reuse easily." msgstr "" +"Daca selectati Tipul Vizualizare, inseamna ca nu veti permite crearea " +"inregistrarilor in registru folosind acel cont.\n" +"Tipul 'Cont analitic' reprezinta conturile obisnuite pen care le folositi " +"doar in contabilitate.\n" +"Daca selectati Contract sau Proiect, va ofera posibilitatea de a gestiona " +"valabilitatea si optiunile de facturare pentru acest cont.\n" +"Tipul special 'Sablon al Contractului' va permite sa definiti un sablon cu " +"date implicite pe care le puteti refolosi cu usurinta." #. module: analytic #: view:account.analytic.account:0 @@ -79,16 +87,26 @@ msgid "" "the\n" " customer." msgstr "" +"Odata ce data de sfarsit a contractului a\n" +" trecut sau numarul maxim de unitati " +"de\n" +" servicii (de exemplu contractul de " +"asistenta) este\n" +" atins, managerul contului este " +"instiintat \n" +" prin email sa reinnoiasca contractul " +"cu\n" +" clientul." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Contract sau Proiect" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Nume Cont/Contract" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -98,7 +116,7 @@ msgstr "Manager cont" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: analytic #: selection:account.analytic.account,state:0 @@ -108,7 +126,7 @@ msgstr "Inchis" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Contract de Reinnoit" #. module: analytic #: selection:account.analytic.account,state:0 @@ -118,7 +136,7 @@ msgstr "Nou(a)" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Managerul de proiect" #. module: analytic #: field:account.analytic.account,state:0 diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index 712b8af71db..64560953e51 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/i18n/pt.po @@ -8,28 +8,28 @@ 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-01-03 17:42+0000\n" +"PO-Revision-Date: 2013-01-15 10:47+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:420 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Buscar todos os valores possíveis" #. 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 "Precisa de importar dados de outra aplicação?" #. module: base_import #. openerp-web @@ -733,14 +733,14 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +msgstr "desconhecido" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:317 #, python-format msgid "person_2,Laurence,False,company_1" -msgstr "" +msgstr "person_2,Laurence,False,company_1" #. module: base_import #. openerp-web @@ -896,7 +896,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:319 #, python-format msgid "person_4,Ramsy,False,company_3" -msgstr "" +msgstr "person_4,Ramsy,False,company_3" #. module: base_import #. openerp-web @@ -918,7 +918,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: base_import #. openerp-web @@ -934,14 +934,14 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "Perguntas frequentes" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "company_3,Boum,True" #. module: base_import #. openerp-web @@ -1040,7 +1040,7 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "base_import.tests.models.m2o.related" #. module: base_import #: field:base_import.tests.models.preview,name:0 @@ -1059,7 +1059,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "person_3,Eric,False,company_2" #. module: base_import #: field:base_import.import,res_model:0 @@ -1107,12 +1107,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Separador:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Nome do ficheiro" #. module: base_import #. openerp-web diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 2f1df30e7b4..1be06363709 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 11:16+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -27,13 +27,13 @@ msgstr "Erro!" #: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." -msgstr "" +msgstr "%s foi aberto." #. module: base_status #: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." -msgstr "" +msgstr "%s foi renovado." #. module: base_status #: code:addons/base_status/base_stage.py:210 @@ -53,13 +53,13 @@ msgstr "" #: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." -msgstr "" +msgstr "%s agora está pendente." #. module: base_status #: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." -msgstr "" +msgstr "%s foi cancelado." #. module: base_status #: code:addons/base_status/base_stage.py:210 @@ -73,4 +73,4 @@ msgstr "" #: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." -msgstr "" +msgstr "%s foi fechado." diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index 2b84112d8b2..f8eb04d2457 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/i18n/sl.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 16:09+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -46,4 +46,4 @@ msgstr "" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision msgid "decimal.precision" -msgstr "" +msgstr "decimal.precision" diff --git a/addons/google_docs/i18n/pt.po b/addons/google_docs/i18n/pt.po index 8fd0d5a58b8..b4747bfcb3b 100644 --- a/addons/google_docs/i18n/pt.po +++ b/addons/google_docs/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 10:01+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 @@ -180,7 +180,7 @@ msgstr "" #. module: google_docs #: model:ir.model,name:google_docs.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: google_docs #: field:google.docs.config,name_template:0 diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po new file mode 100644 index 00000000000..559a58c508d --- /dev/null +++ b/addons/hr_evaluation/i18n/sl.po @@ -0,0 +1,910 @@ +# Slovenian 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-01-16 01:23+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_anonymous_manager:0 +msgid "Send an anonymous summary to the manager" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Start Appraisal" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: view:hr_evaluation.plan:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: hr_evaluation +#: field:hr.evaluation.interview,request_id:0 +#: field:hr.evaluation.report,request_id:0 +msgid "Request_id" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "March" +msgstr "Marec" + +#. module: hr_evaluation +#: field:hr.evaluation.report,delay_date:0 +msgid "Delay to Start" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Appraisal that are in waiting appreciation state" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,company_id:0 +#: field:hr_evaluation.plan.phase,company_id:0 +msgid "Company" +msgstr "Podjetje" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,evaluation_id:0 +#: field:hr_evaluation.plan.phase,survey_id:0 +msgid "Appraisal Form" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,day:0 +msgid "Day" +msgstr "Dan" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,phase_ids:0 +msgid "Appraisal Phases" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Send Request" +msgstr "Pošlji zahtevo" + +#. module: hr_evaluation +#: help:hr_evaluation.plan,month_first:0 +msgid "" +"This number of months will be used to schedule the first evaluation date of " +"the employee when selecting an evaluation plan. " +msgstr "" + +#. module: hr_evaluation +#: view:hr.employee:0 +#: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree +msgid "Appraisals" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(eval_name)s:Appraisal Name" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_ids:0 +#: field:hr_evaluation.evaluation,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Mail Body" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,wait:0 +msgid "Wait Previous Phases" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation +msgid "Employee Appraisal" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Cancelled" +msgstr "Preklicano" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Did not meet expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +#: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr +msgid "Appraisal" +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_unread:0 +#: help:hr_evaluation.evaluation,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Send to Managers" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,date_close:0 +msgid "Ending Date" +msgstr "Končni datum" + +#. module: hr_evaluation +#: help:hr_evaluation.evaluation,note_action:0 +msgid "" +"If the evaluation does not meet the expectations, you can proposean action " +"plan" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Send to Employees" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:84 +#, python-format +msgid "" +"\n" +"Date: %(date)s\n" +"\n" +"Dear %(employee_name)s,\n" +"\n" +"I am doing an evaluation regarding %(eval_name)s.\n" +"\n" +"Kindly submit your response.\n" +"\n" +"\n" +"Thanks,\n" +"--\n" +"%(user_signature)s\n" +"\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Appraisal that are in Plan In Progress state" +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_summary:0 +#: help:hr_evaluation.evaluation,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Reset to Draft" +msgstr "Vrni v Osnutek" + +#. module: hr_evaluation +#: field:hr.evaluation.report,deadline:0 +msgid "Deadline" +msgstr "Rok" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:235 +#: code:addons/hr_evaluation/hr_evaluation.py:320 +#, python-format +msgid "Warning!" +msgstr "Opozorilo!" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "In progress Evaluations" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_survey_request +msgid "survey.request" +msgstr "survey.request" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(date)s: Current Date" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview +msgid "Interviews" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:83 +#, python-format +msgid "Regarding " +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_follower_ids:0 +#: field:hr_evaluation.evaluation,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_unread:0 +#: field:hr_evaluation.evaluation,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,employee_id:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,employee_id:0 +#: model:ir.model,name:hr_evaluation.model_hr_employee +msgid "Employee" +msgstr "Zaposleni" + +#. module: hr_evaluation +#: selection:hr_evaluation.evaluation,state:0 +msgid "New" +msgstr "Novo" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,mail_body:0 +msgid "Email" +msgstr "Elektronska pošta" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Exceeds expectations" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,mail_feature:0 +msgid "" +"Check this box if you want to send mail to employees coming under this phase" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Creation Date" +msgstr "Ustvarjeno dne" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_answer_manager:0 +msgid "Send all answers to the manager" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Plan In Progress" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Public Notes" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Send Reminder Email" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr_evaluation.evaluation,rating:0 +msgid "Appreciation" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Print Interview" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,closed:0 +msgid "closed" +msgstr "zaprto" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Meet expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,nbr:0 +msgid "# of Requests" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "July" +msgstr "Julij" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,state:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,state:0 +msgid "Status" +msgstr "Status" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer +msgid "Review Appraisal Plans" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer +msgid "" +"

\n" +" Click to define a new appraisal plan.\n" +"

\n" +" You can define appraisal plans (ex: first interview after 6\n" +" months, then every year). Then, each employee can be linked " +"to\n" +" an appraisal plan so that OpenERP can automatically " +"generate\n" +" interview requests to managers and/or subordinates.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Action to Perform" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,note_action:0 +msgid "Action Plan" +msgstr "" + +#. module: hr_evaluation +#: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config +msgid "Periodic Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,month_next:0 +msgid "Periodicity of Appraisal (months)" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Significantly exceeds expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "In progress" +msgstr "V teku" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Interview Request" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,send_answer_employee:0 +#: field:hr_evaluation.plan.phase,send_answer_manager:0 +msgid "All Answers" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Answer Survey" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "September" +msgstr "September" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "December" +msgstr "December" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,month:0 +msgid "Month" +msgstr "Mesec" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Group by..." +msgstr "Grupiraj po..." + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Mail Settings" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders +msgid "Appraisal Reminders" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,wait:0 +msgid "" +"Check this box if you want to wait that all preceding phases are finished " +"before launching this phase." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Legend" +msgstr "Legenda" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,month_first:0 +msgid "First Appraisal in (months)" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +msgid "Draft" +msgstr "Osnutek" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,send_anonymous_employee:0 +#: field:hr_evaluation.plan.phase,send_anonymous_manager:0 +msgid "Anonymous Summary" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Pending" +msgstr "Na čakanju" + +#. module: hr_evaluation +#: field:hr.employee,evaluation_plan_id:0 +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,name:0 +#: field:hr_evaluation.plan.phase,plan_id:0 +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan +msgid "Appraisal Plan" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Print Survey" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "August" +msgstr "Avgust" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "June" +msgstr "Junij" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Significantly bellow expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Validate Appraisal" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid " (employee_name)s: Partner name" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_is_follower:0 +#: field:hr_evaluation.evaluation,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,plan_id:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,plan_id:0 +msgid "Plan" +msgstr "Plan" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "November" +msgstr "November" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Extended Filters..." +msgstr "Razširjeni filtri..." + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_anonymous_employee:0 +msgid "Send an anonymous summary to the employee" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase +msgid "Appraisal Plan Phase" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "January" +msgstr "Januar" + +#. module: hr_evaluation +#: view:hr.employee:0 +msgid "Appraisal Interviews" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_summary:0 +#: field:hr_evaluation.evaluation,message_summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Date" +msgstr "Datum" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Survey" +msgstr "Vprašalnik" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,action:0 +msgid "Action" +msgstr "Dejanje" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: selection:hr.evaluation.report,state:0 +msgid "Final Validation" +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.evaluation,state:0 +msgid "Waiting Appreciation" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_report_all +#: model:ir.ui.menu,name:hr_evaluation.menu_evaluation_report_all +msgid "Appraisal Analysis" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,date:0 +msgid "Appraisal Deadline" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,rating:0 +msgid "Overall Rating" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Interviewer" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_report +msgid "Evaluations Statistics" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Deadline Date" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.evaluation,rating:0 +msgid "This is the appreciation on which the evaluation is summarized." +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Top-Down Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "General" +msgstr "Splošno" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_answer_employee:0 +msgid "Send all answers to the employee" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: selection:hr.evaluation.report,state:0 +#: view:hr_evaluation.evaluation:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Done" +msgstr "Končano" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_plan_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_plan_tree +msgid "Appraisal Plans" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview +msgid "Appraisal Interview" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "In Progress" +msgstr "V teku" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "To Do" +msgstr "Opravila" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Final Validation Evaluations" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,mail_feature:0 +msgid "Send mail for this phase" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,email_subject:0 +msgid "char" +msgstr "znak" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "October" +msgstr "Oktober" + +#. module: hr_evaluation +#: help:hr.employee,evaluation_date:0 +msgid "" +"The date of the next appraisal is computed by the appraisal plan's dates " +"(first appraisal + periodicity)." +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,overpass_delay:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan,month_next:0 +msgid "" +"The number of month that depicts the delay between each evaluation of this " +"plan (after the first one)." +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Self Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,survey_request_ids:0 +msgid "Appraisal Forms" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "May" +msgstr "Maj" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.open_view_hr_evaluation_tree +msgid "" +"

\n" +" Click to create a new appraisal.\n" +"

\n" +" Each employee may be assigned an Appraisal Plan. Such a " +"plan\n" +" defines the frequency and the way you manage your periodic\n" +" personnel evaluation. You will be able to define steps and\n" +" attach interviews to each step. OpenERP manages all kinds " +"of\n" +" evaluations: bottom-up, top-down, self-evaluation and final\n" +" evaluation by the manager.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Internal Notes" +msgstr "Interni zaznamki" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Final Interview" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,name:0 +msgid "Phase" +msgstr "Faza" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Bottom-Up Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "February" +msgstr "Februar" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Interview Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:survey.request,is_evaluation:0 +msgid "Is Appraisal?" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:320 +#, python-format +msgid "You cannot start evaluation without Appraisal." +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,user_to_review_id:0 +msgid "Employee to Interview" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:235 +#, python-format +msgid "" +"You cannot change state, because some appraisal(s) are in waiting answer or " +"draft state." +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "April" +msgstr "April" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Appraisal Plan Phases" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree +msgid "" +"

\n" +" Click to create a new interview request related to a " +"personal evaluation. \n" +"

\n" +" Interview requests are usually generated automatically by\n" +" OpenERP according to an employee's appraisal plan. Each " +"user\n" +" receives automatic emails and requests to evaluate their\n" +" colleagues periodically.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_ids:0 +#: help:hr_evaluation.evaluation,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in zgodovina sporočil" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Search Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(user_signature)s: User name" +msgstr "" + +#. module: hr_evaluation +#: view:board.board:0 +#: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_board +#: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests +msgid "Interview Requests" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,create_date:0 +msgid "Create Date" +msgstr "Datum nastanka" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,year:0 +msgid "Year" +msgstr "Leto" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,note_summary:0 +msgid "Appraisal Summary" +msgstr "" + +#. module: hr_evaluation +#: field:hr.employee,evaluation_date:0 +msgid "Next Appraisal Date" +msgstr "" diff --git a/addons/hr_recruitment/i18n/sl.po b/addons/hr_recruitment/i18n/sl.po new file mode 100644 index 00000000000..86228091535 --- /dev/null +++ b/addons/hr_recruitment/i18n/sl.po @@ -0,0 +1,1259 @@ +# Slovenian 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-01-15 17:13+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: hr_recruitment +#: help:hr.applicant,active:0 +msgid "" +"If the active field is set to false, it will allow you to hide the case " +"without removing it." +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: field:hr.recruitment.stage,requirements:0 +msgid "Requirements" +msgstr "Zahteve" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Application Summary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Start Interview" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Mobile:" +msgstr "Mob:" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,fold:0 +msgid "" +"This stage is not visible, for example in status bar or kanban view, when " +"there are no records in that stage to display." +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate +msgid "Graduate" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Filter and view on next actions and date" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,department_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,department_id:0 +msgid "Department" +msgstr "Oddelek" + +#. module: hr_recruitment +#: field:hr.applicant,date_action:0 +msgid "Next Action Date" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_expected_extra:0 +msgid "Expected Salary Extra" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Jobs" +msgstr "Zaposlitve" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Pending Jobs" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: hr_recruitment +#: field:hr.applicant,company_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,company_id:0 +msgid "Company" +msgstr "Podjetje" + +#. module: hr_recruitment +#: view:hr.recruitment.source:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_source_action +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_source +msgid "Sources of Applicants" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:435 +#, python-format +msgid "You must define Applied Job for this applicant." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Job" +msgstr "Zaposlitev" + +#. module: hr_recruitment +#: field:hr.recruitment.partner.create,close:0 +msgid "Close job request" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.crm_case_categ0_act_job +msgid "" +"

\n" +" Click to add a new job applicant.\n" +"

\n" +" OpenERP helps you track applicants in the recruitment\n" +" process and follow up all operations: meetings, interviews, " +"etc.\n" +"

\n" +" If you setup the email gateway, applicants and their " +"attached\n" +" CV are created automatically when an email is sent to\n" +" jobs@yourcompany.com. If you install the document " +"management\n" +" modules, all resumes are indexed automatically, so that you " +"can\n" +" easily search through their content.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job +#: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job +msgid "Applications" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,emp_id:0 +msgid "employee" +msgstr "zaposleni" + +#. module: hr_recruitment +#: field:hr.config.settings,fetchmail_applicants:0 +msgid "Create applicants from an incoming email account" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,day:0 +msgid "Day" +msgstr "Dan" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create +msgid "Create Contact" +msgstr "Ustvari stik" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Refuse" +msgstr "Zavrni" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced +msgid "Master Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_mobile:0 +msgid "Mobile" +msgstr "Mobilni telefon" + +#. module: hr_recruitment +#: field:hr.applicant,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Next Actions" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:38 +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 +#, python-format +msgid "Error!" +msgstr "Napaka!" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 +msgid "Doctoral Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,job_id:0 +#: field:hr.recruitment.report,job_id:0 +msgid "Applied Job" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,department_id:0 +msgid "" +"Stages of the recruitment process may be different per department. If this " +"stage is common to all departments, keep this field empty." +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." + +#. module: hr_recruitment +#: field:hr.applicant,color:0 +msgid "Color Index" +msgstr "Barvvni index" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.act_hr_applicant_to_meeting +msgid "Meetings" +msgstr "Sestanki" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_applicants_status +msgid "Applicants Status" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "My Recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.job,survey_id:0 +msgid "Interview Form" +msgstr "" + +#. module: hr_recruitment +#: help:hr.job,survey_id:0 +msgid "" +"Choose an interview form for this job position and you will be able to " +"print/answer this interview from all applicants who apply for this job" +msgstr "" + +#. module: hr_recruitment +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_recruitment +msgid "Recruitment" +msgstr "Zaposlovanje" + +#. module: hr_recruitment +#: help:hr.applicant,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:435 +#, python-format +msgid "Warning!" +msgstr "Opozorilo!" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop:0 +msgid "Salary Proposed" +msgstr "Predlagano plačilo" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Avg Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,availability:0 +#: field:hr.recruitment.report,available:0 +msgid "Availability" +msgstr "Razpoložljivost" + +#. module: hr_recruitment +#: field:hr.applicant,salary_proposed:0 +#: view:hr.recruitment.report:0 +msgid "Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_source +msgid "Source of Applicants" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Convert To Partner" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_report +msgid "Recruitments Statistics" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Print interview report" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Hired employees" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_job +msgid "Job Description" +msgstr "Opis dela" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,source_id:0 +msgid "Source" +msgstr "Vir" + +#. module: hr_recruitment +#: field:hr.applicant,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_monster +msgid "Monster" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired +msgid "Applicant Hired" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,email_from:0 +msgid "Email" +msgstr "Elektronska pošta" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_job_stage_act +msgid "" +"

\n" +" Click to add a new stage in the recruitment process.\n" +"

\n" +" Define here your stages of the recruitment process, for " +"example:\n" +" qualification call, first interview, second interview, refused,\n" +" hired.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Available" +msgstr "Razpoložljivo" + +#. module: hr_recruitment +#: field:hr.applicant,title_action:0 +msgid "Next Action" +msgstr "" + +#. module: hr_recruitment +#: help:hr.job,alias_id:0 +msgid "" +"Email alias for this job position. New emails will automatically create new " +"applicants for this job position." +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Good" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "August" +msgstr "Avgust" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,create_date:0 +#: view:hr.recruitment.report:0 +msgid "Creation Date" +msgstr "Ustvarjeno dne" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_hired_employee +#: model:ir.model,name:hr_recruitment.model_hired_employee +msgid "Create Employee" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,priority:0 +#: field:hr.recruitment.report,priority:0 +msgid "Appreciation" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job1 +msgid "Initial Qualification" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Print Interview" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,stage_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,stage_id:0 +#: view:hr.recruitment.stage:0 +msgid "Stage" +msgstr "Stopnja" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job3 +msgid "Second Interview" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_job_stage_act +msgid "Recruitment / Applicants Stages" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_expected:0 +#: view:hr.recruitment.report:0 +msgid "Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "July" +msgstr "Julij" + +#. module: hr_recruitment +#: field:hr.applicant,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Applicants" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:351 +#, python-format +msgid "No Subject" +msgstr "Ni zadeve" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_exp:0 +msgid "Salary Expected" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_applicant +msgid "Applicant" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,sequence:0 +msgid "Gives the sequence order when displaying a list of stages." +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_id:0 +msgid "Contact" +msgstr "Stik" + +#. module: hr_recruitment +#: help:hr.applicant,salary_expected_extra:0 +msgid "Salary Expected by Applicant, extra advantages" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "March" +msgstr "Marec" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_act +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_stage +msgid "Stages" +msgstr "Faze" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Draft recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Delete" +msgstr "Izbriši" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "In progress" +msgstr "V teku" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Hire & Create Employee" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired +msgid "Applicant hired" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Jobs - Recruitment Form" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,probability:0 +msgid "Probability" +msgstr "Verjetnost" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "April" +msgstr "April" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "September" +msgstr "September" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "December" +msgstr "December" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:39 +#, python-format +msgid "A contact is already defined on this job request." +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,categ_ids:0 +msgid "Tags" +msgstr "Ključne besede" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_applicant_category +msgid "Category of applicant" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,month:0 +msgid "Month" +msgstr "Mesec" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Answer related job question" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 +msgid "First Interview" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,write_date:0 +msgid "Update Date" +msgstr "Datum posodobitve" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Yes" +msgstr "Da" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,name:0 +msgid "Subject" +msgstr "Zadeva" + +#. module: hr_recruitment +#: view:hired.employee:0 +#: view:hr.recruitment.partner.create:0 +msgid "or" +msgstr "ali" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused +msgid "Applicant Refused" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule Meeting" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_name:0 +msgid "Applicant's Name" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Very Good" +msgstr "Zelo dobro" + +#. module: hr_recruitment +#: field:hr.applicant,user_email:0 +msgid "User Email" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date_open:0 +msgid "Opened" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Group By ..." +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "No" +msgstr "Ne" + +#. module: hr_recruitment +#: help:hr.applicant,salary_expected:0 +msgid "Salary Expected by Applicant" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "All Initial Jobs" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: hr_recruitment +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_degree +msgid "Degrees" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date_closed:0 +#: field:hr.recruitment.report,date_closed:0 +msgid "Closed" +msgstr "Zaprto" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +msgid "Stage Definition" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_proposed:0 +msgid "Salary Proposed by the Organisation" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "Pending" +msgstr "Na čakanju" + +#. module: hr_recruitment +#: field:hr.applicant,state:0 +#: field:hr.recruitment.report,state:0 +#: field:hr.recruitment.stage,state:0 +msgid "Status" +msgstr "Status" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule interview with this applicant" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:397 +#, python-format +msgid "Applicant created" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,type_id:0 +#: view:hr.recruitment.degree:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,type_id:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_degree_action +msgid "Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_phone:0 +msgid "Phone" +msgstr "Telefon" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "June" +msgstr "Junij" + +#. module: hr_recruitment +#: field:hr.applicant,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: hr_recruitment +#: field:hr.recruitment.report,user_id:0 +msgid "User" +msgstr "Uporabnik" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Excellent" +msgstr "Odlično" + +#. module: hr_recruitment +#: field:hr.applicant,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,nbr:0 +msgid "# of Applications" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_act +msgid "" +"

\n" +" Click to add a new stage in the recruitment process.\n" +"

\n" +" Don't forget to specify the department if your recruitment " +"process\n" +" is different according to the job position.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,response:0 +msgid "Response" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "October" +msgstr "Oktober" + +#. module: hr_recruitment +#: field:hr.config.settings,module_document_ftp:0 +msgid "Allow the automatic indexation of resumes" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_proposed_extra:0 +msgid "Proposed Salary Extra" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "January" +msgstr "Januar" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 +#, python-format +msgid "A contact is already existing with the same name." +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer +msgid "Review Recruitment Stages" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contact:" +msgstr "Stik:" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Search Jobs" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date:0 +#: field:hr.recruitment.report,date:0 +msgid "Date" +msgstr "Datum" + +#. module: hr_recruitment +#: field:hr.applicant,survey:0 +msgid "Survey" +msgstr "Vprašalnik" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Would you like to create an employee ?" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Degree:" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Extended Filters..." +msgstr "Razširjeni filtri..." + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_form_installer +msgid "" +"Check if the following stages are matching your recruitment process. Don't " +"forget to specify the department if your recruitment process is different " +"according to the job position." +msgstr "" + +#. module: hr_recruitment +#: view:hr.config.settings:0 +msgid "Configure" +msgstr "Nastavitve" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 +msgid "Contract Proposed" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_website_company +msgid "Company Website" +msgstr "Spletna stran podjetja" + +#. module: hr_recruitment +#: sql_constraint:hr.recruitment.degree:0 +msgid "The name of the Degree of Recruitment must be unique!" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,year:0 +msgid "Year" +msgstr "Leto" + +#. module: hr_recruitment +#: view:hired.employee:0 +#: view:hr.recruitment.partner.create:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Are you sure you want to create a contact based on this job request ?" +msgstr "" + +#. module: hr_recruitment +#: help:hr.config.settings,fetchmail_applicants:0 +msgid "" +"Allow applicants to send their job application to an email address " +"(jobs@mycompany.com),\n" +" and create automatically application documents in the system." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "In Progress" +msgstr "V teku" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Subject / Applicant" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.degree,sequence:0 +msgid "Gives the sequence order when displaying a list of degrees." +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed +msgid "Stage changed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,user_id:0 +#: view:hr.recruitment.report:0 +msgid "Responsible" +msgstr "Odgovoren" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_report_all +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_report_all +msgid "Recruitment Analysis" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Create New Employee" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_linkedin +msgid "LinkedIn" +msgstr "LinkedIn" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant +msgid "New Applicant" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage +msgid "Stage of Recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Cases By Stage and Estimates" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "New" +msgstr "Novo" + +#. module: hr_recruitment +#: model:crm.meeting.type,name:hr_recruitment.categ_meet_interview +#: view:hr.job:0 +msgid "Interview" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.source,name:0 +msgid "Source Name" +msgstr "Ime vira" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Day(s)" +msgstr "Dan(Dni)" + +#. module: hr_recruitment +#: field:hr.applicant,description:0 +msgid "Description" +msgstr "Opis" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed +msgid "Stage Changed" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "May" +msgstr "Maj" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job5 +msgid "Contract Signed" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_word +msgid "Word of Mouth" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.stage,fold:0 +msgid "Hide in views if empty" +msgstr "" + +#. module: hr_recruitment +#: help:hr.config.settings,module_document_ftp:0 +msgid "" +"Manage your CV's and motivation letter related to all applicants.\n" +" This installs the module document_ftp. This will install the " +"knowledge management module in order to allow you to search using specific " +"keywords through the content of all documents (PDF, .DOCx...)" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,state:0 +#: selection:hr.recruitment.report,state:0 +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job6 +#: selection:hr.recruitment.stage,state:0 +msgid "Refused" +msgstr "Zavrnjeno" + +#. module: hr_recruitment +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "Hired" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,reference:0 +msgid "Referred By" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Departement:" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "On Average" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree +msgid "Degree of Recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop_avg:0 +msgid "Avg. Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Open Jobs" +msgstr "Odprte zaposlitve" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "February" +msgstr "Februar" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Not Good" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant_category,name:0 +#: field:hr.recruitment.degree,name:0 +#: field:hr.recruitment.stage,name:0 +msgid "Name" +msgstr "Ime" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "November" +msgstr "November" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_exp_avg:0 +msgid "Avg. Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Avg Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create +msgid "Create Partner from job application" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: hr_recruitment +#: field:hr.job,alias_id:0 +msgid "Alias" +msgstr "Vzdevek" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Pending recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contract" +msgstr "Pogodba" + +#. module: hr_recruitment +#: field:hr.applicant,message_summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: hr_recruitment +#: help:hr.applicant,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in zgodovina sporočil" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused +msgid "Applicant refused" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.stage,department_id:0 +msgid "Specific to a Department" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "In progress recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.degree,sequence:0 +#: field:hr.recruitment.stage,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_bachelor +msgid "Bachelor Degree" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Unassigned Recruitments" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_config_settings +msgid "hr.config.settings" +msgstr "hr.config.settings" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,state:0 +msgid "" +"The related status for the stage. The status of your document will " +"automatically change according to the selected stage. Example, a stage is " +"related to the status 'Close', when your document reach this stage, it will " +"be automatically closed." +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_proposed_extra:0 +msgid "Salary Proposed by the Organisation, extra advantages" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,state:0 +msgid "Open" +msgstr "Odprto" + +#. module: hr_recruitment +#: view:board.board:0 +msgid "Applications to be Processed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule Interview" +msgstr "" diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index ede0f2a407c..e0c56f90f88 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 09:54+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: mail #: view:mail.followers:0 @@ -25,7 +25,7 @@ msgstr "Форма подписчиков" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "" +msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 @@ -46,7 +46,7 @@ msgstr "Получатели сообщения" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Активируется по умолчанию при подписке." #. module: mail #: view:mail.message:0 @@ -71,6 +71,8 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Имя алиаса эл. почты, например, \"jobs\" если вы хотите перехватывать почту " +"для " #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -83,7 +85,7 @@ msgstr "Написать письмо" #: code:addons/mail/static/src/xml/mail.xml:132 #, python-format msgid "Add them into recipients and followers" -msgstr "" +msgstr "Добавить их к получателям и подписчикам" #. module: mail #: view:mail.group:0 @@ -125,12 +127,12 @@ msgstr "Мастер составления эл. почты" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Добавить других" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Источник" #. module: mail #: field:mail.group,message_unread:0 @@ -203,7 +205,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:194 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Ошибка выгрузки" #. module: mail #: model:mail.group,name:mail.group_support @@ -219,6 +221,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Запрошенная операция не может быть завершена из-за ограничений по " +"безопасности . Пожалуйста, обратитесь к вашему системному администратору.\n" +"\n" +"(Тип документа :%s, операция: %s)" #. module: mail #: view:mail.mail:0 @@ -243,12 +249,12 @@ msgstr "Открыть полноценный составитель письм #: code:addons/mail/static/src/xml/mail.xml:37 #, python-format msgid "ò" -msgstr "" +msgstr "ò" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "Алиас домена" #. module: mail #: field:mail.group,group_ids:0 @@ -285,7 +291,7 @@ msgstr "отправка данных" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "больше." #. module: mail #: help:mail.compose.message,type:0 @@ -400,6 +406,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 "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: mail #: help:mail.alias,alias_model_id:0 @@ -412,7 +420,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Относящееся поле" #. module: mail #: selection:mail.compose.message,type:0 @@ -429,7 +437,7 @@ msgstr "Партнёр" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Организатор" #. module: mail #: field:mail.compose.message,subject:0 @@ -463,7 +471,7 @@ msgstr "Сообщение эл. почты" #. module: mail #: model:ir.model,name:mail.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: mail #: view:mail.compose.message:0 @@ -550,7 +558,7 @@ msgstr "Комментарии и эл. почта" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Значения по умолчанию" #. module: mail #: code:addons/mail/res_users.py:100 @@ -580,7 +588,7 @@ msgstr "Получатели" #: code:addons/mail/static/src/xml/mail.xml:127 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #. openerp-web @@ -634,6 +642,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нет личных сообщений.\n" +"

\n" +" Это список сообщений отправленных вам лично.\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd @@ -645,7 +659,7 @@ msgstr "НИОКР" #: code:addons/mail/static/src/xml/mail.xml:61 #, python-format msgid "/web/binary/upload_attachment" -msgstr "" +msgstr "/web/binary/upload_attachment" #. module: mail #: model:ir.model,name:mail.model_mail_thread @@ -662,7 +676,7 @@ msgstr "Дополнительно" #: code:addons/mail/static/src/xml/mail.xml:226 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Переместить во входящие" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 @@ -690,7 +704,7 @@ msgstr "" #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Модель обсуждаемого ресурса" #. module: mail #. openerp-web @@ -730,7 +744,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 @@ -740,7 +754,7 @@ msgstr "Есть вложения" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "на" #. module: mail #: code:addons/mail/mail_message.py:916 @@ -762,7 +776,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Подтип сообщения" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -826,7 +840,7 @@ msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" "Невозможно отправить эл. почту, пожалуйста настройте адрес эл. почты " -"отправителя или псевдоним." +"отправителя или алиас." #. module: mail #: help:res.users,alias_id:0 @@ -855,7 +869,7 @@ msgstr "или" #: help:mail.compose.message,vote_user_ids:0 #: help:mail.message,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Пользователи, которые проголосовали за это сообщение" #. module: mail #: help:mail.group,alias_id:0 @@ -880,7 +894,7 @@ msgstr "Искать эл. почту" #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "Связанные сообщения" #. module: mail #: field:mail.alias,alias_user_id:0 @@ -917,7 +931,7 @@ msgstr "Содержание" #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "Псевдонимы" +msgstr "Алиасы" #. module: mail #: help:mail.message.subtype,description:0 @@ -942,6 +956,8 @@ msgstr "Группа" #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"Текущий пользователь имеет отмеченное уведомление, связанное с этим " +"сообщением" #. module: mail #: field:mail.group,public:0 @@ -958,7 +974,7 @@ msgstr "Уведомление" #: code:addons/mail/static/src/js/mail.js:585 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Пожалуйста дополните информацию о партнере" #. module: mail #: view:mail.wizard.invite:0 @@ -968,7 +984,7 @@ msgstr "Добавить подписчиков" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Подписчики выбранных пунктов и" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1040,7 +1056,7 @@ msgstr "Уведомления" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "Поиск псевдонима" +msgstr "Поиск алиаса" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1071,7 +1087,7 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "" +msgstr "по" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices @@ -1099,12 +1115,12 @@ msgstr "Пользователь" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Группы" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Поиск сообщений" #. module: mail #: field:mail.compose.message,date:0 @@ -1117,7 +1133,7 @@ msgstr "Дата" #: code:addons/mail/static/src/xml/mail.xml:34 #, python-format msgid "Post" -msgstr "" +msgstr "Послать" #. module: mail #: view:mail.mail:0 @@ -1129,38 +1145,38 @@ msgstr "Расширенные фильтры..." #: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "To:" -msgstr "" +msgstr "Кому:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:175 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Написать подписчикам" #. module: mail #: model:ir.model,name:mail.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Группы доступа" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "По умолчанию" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:260 #, python-format msgid "show more message" -msgstr "" +msgstr "показать больше сообщений" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:228 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Добавить в список задач" #. module: mail #: help:mail.message.subtype,parent_id:0 @@ -1177,7 +1193,7 @@ msgstr "Мастер приглашений" #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Описание" #. module: mail #: help:mail.message.subtype,res_model:0 @@ -1191,7 +1207,7 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Подтип" #. module: mail #: view:mail.group:0 @@ -1203,33 +1219,35 @@ msgstr "" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Отмеченные" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:262 #, python-format msgid "more messages" -msgstr "" +msgstr "больше сообщений" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Ошибка" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Подписан" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"К сожалению, это адрес электронной почты уже используется , выберите " +"уникальный" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1245,7 +1263,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "И" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1259,6 +1277,8 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Это поле содержит изображение, используемое в качестве фотографии для " +"группы, ограничен 1024x1024px ." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1281,7 +1301,7 @@ msgstr "Копия" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Отмеченное сообщение, которое попадает в список дел" #. module: mail #. openerp-web @@ -1289,7 +1309,7 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Подписчики" #. module: mail #: help:mail.mail,auto_delete:0 @@ -1299,36 +1319,36 @@ msgstr "Навсегда удалить это письмо после отпр #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Группа обсуждения" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:224 #, python-format msgid "Done" -msgstr "" +msgstr "Сделано" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Обсуждения" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Подписаться" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Название" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Вся компания" #. module: mail #. openerp-web @@ -1336,12 +1356,12 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "и" #. module: mail #: help:mail.mail,body_html:0 msgid "Rich-text/HTML message" -msgstr "" +msgstr "Текст с форматированием/HTML сообщение" #. module: mail #: view:mail.mail:0 @@ -1353,17 +1373,17 @@ msgstr "Месяц создания" #: code:addons/mail/static/src/xml/mail.xml:272 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Написать новое сообщение" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Связанное меню" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Содержание" #. module: mail #: field:mail.mail,email_to:0 @@ -1374,7 +1394,7 @@ msgstr "Кому" #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Уведомленные партнеры" #. module: mail #: help:mail.group,public:0 @@ -1400,7 +1420,7 @@ msgstr "" #. module: mail #: field:mail.alias,alias_model_id:0 msgid "Aliased Model" -msgstr "" +msgstr "Модель алиаса" #. module: mail #: help:mail.compose.message,message_id:0 @@ -1412,24 +1432,24 @@ msgstr "Уникальный идентификатор сообщения" #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Описание" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Подписчики документа" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Удалить подписчика" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Никогда" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1440,7 +1460,7 @@ msgstr "Сервер исходящей почты" #: code:addons/mail/mail_message.py:920 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "Эл. почта партнера не найдена" #. module: mail #: view:mail.mail:0 @@ -1458,6 +1478,8 @@ msgstr "Форматированное содержимое" #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"Текущий пользователь имеет непрочитанные уведомления, связанные с этим " +"сообщением" #. module: mail #: help:res.partner,notification_email_send:0 @@ -1469,7 +1491,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Присоединиться к группе" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1479,13 +1501,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нет сообщений в этой группе.\n" +"

\n" +" " #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:195 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Пожалуйста, подождите , пока файл загружается." #. module: mail #: view:mail.group:0 @@ -1495,20 +1521,23 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Эта группа видна всем,\n" +" включая ваших заказчиков, если вы\n" +" установили модуль портала." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:225 #, python-format msgid "Set back to Todo" -msgstr "" +msgstr "Вернуть в список задач" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:113 #, python-format msgid "this document" -msgstr "" +msgstr "этот документ" #. module: mail #: field:mail.compose.message,filter_id:0 @@ -1542,13 +1571,13 @@ msgstr "Сообщения" #: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "others..." -msgstr "" +msgstr "остальные..." #. module: mail #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Задачи" #. module: mail #: view:mail.alias:0 @@ -1556,12 +1585,12 @@ msgstr "" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Алиас" #. module: mail #: model:ir.model,name:mail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Исходящие письма" #. module: mail #: help:mail.compose.message,notification_ids:0 @@ -1575,18 +1604,18 @@ msgstr "" #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Сообщения" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Модель" #. module: mail #: view:mail.message:0 msgid "Unread" -msgstr "" +msgstr "Непрочитанное" #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1600,7 +1629,7 @@ msgstr "" #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: mail #: help:mail.mail,references:0 @@ -1610,7 +1639,7 @@ msgstr "Ссылки сообщения, такие как идентифика #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Режим составления" #. module: mail #: field:mail.compose.message,model:0 @@ -1625,7 +1654,7 @@ msgstr "Модель связанного документа" #: code:addons/mail/static/src/xml/mail.xml:287 #, python-format msgid "unlike" -msgstr "" +msgstr "не нравится" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1634,6 +1663,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Автор сообщения. Если не установлен, email_from может содержать адрес почты, " +"который не соответствует ни одному партнеру." #. module: mail #: help:mail.mail,email_cc:0 @@ -1643,18 +1674,18 @@ msgstr "Получатели скрытой копии сообщения" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Алиас домена" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Ошибка во время связи с сервером гарантии издателя." #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Личное" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1669,6 +1700,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нет списка дел.\n" +"

\n" +" При обработке входящих сообщений, можно поместить их\n" +" в список дел. Здесь вы можете работать со списком " +"дел.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1678,59 +1717,59 @@ msgstr "Доставка не удалась" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Дополнительные контакты" #. module: mail #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Первое сообщение цепочки." #. module: mail #: model:mail.group,name:mail.group_hr_policies msgid "HR Policies" -msgstr "" +msgstr "Политика СП" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Emails only" -msgstr "" +msgstr "Только эл. почта" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Входящие" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:58 #, python-format msgid "File" -msgstr "" +msgstr "Файл" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Пожалуйста заполните информацию партнера и эл. почту" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "" +msgstr "Подтипы" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Алиасы эл. почты" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Маленькое фото" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 544fa926d9d..0c40f306819 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-01 20:55+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-01-16 00:58+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -175,7 +175,8 @@ msgid "" "In case the Supply method of the product is Produce, the system creates a " "production order." msgstr "" -"V kolikor je način pridobitve izdelka Izdelaj, sistem ustvari delovni nalog" +"V kolikor je način oskrbe izdelka \"Proizvodnja\", sistem ustvari proizvodni " +"nalog." #. module: mrp #: field:change.production.qty,product_qty:0 @@ -445,7 +446,7 @@ msgid "" " When the production gets started then the status is set to " "'In Production'.\n" " When the production is over, the status is set to 'Done'." -msgstr "Delovni nalog je najprej v statusu \"Osnutek\"" +msgstr "Proizvodni nalog je najprej v statusu \"Osnutek\"" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_report_in_out_picking_tree @@ -857,7 +858,8 @@ msgstr "Pravilo nabave" msgid "" "Fill this only if you want automatic analytic accounting entries on " "production orders." -msgstr "Izpolnite , če želite samodejne analitične vknjižbe delovnih nalog" +msgstr "" +"Izpolnite , če želite samodejne analitične vknjižbe za proizvodni nalog" #. module: mrp #: view:mrp.production:0 @@ -1131,7 +1133,7 @@ msgstr "Ime" #. module: mrp #: report:mrp.production.order:0 msgid "Production Order N° :" -msgstr "Delovni nalog:" +msgstr "Proizvodni nalog:" #. module: mrp #: field:mrp.product.produce,mode:0 @@ -1769,8 +1771,8 @@ msgid "" "ordered quantities are produced." msgstr "" "'Samo poraba' vknjiži samo porabo materialov.\n" -"'Poraba&Proizvodnja' vknjiži porabo in zaključi delovni nalog , ko je " -"izdelana vsa naročena količina." +"'Poraba&Proizvodnja' vknjiži porabo in zaključi proizvodni nalog nalog , ko " +"je izdelana vsa naročena količina." #. module: mrp #: view:mrp.production:0 @@ -1855,7 +1857,7 @@ msgstr "Čas enega cikla (ure)" #: model:process.node,name:mrp.process_node_production0 #: model:process.node,name:mrp.process_node_productionorder0 msgid "Production Order" -msgstr "Delovni nalog" +msgstr "Proizvodni nalog" #. module: mrp #: model:process.node,note:mrp.process_node_productminimumstockrule0 @@ -2378,8 +2380,8 @@ msgid "" "Depending on the chosen method to supply the stockable products, the " "procurement order creates a RFQ, a production order, ... " msgstr "" -"Odvisno od načina oskrbe , bodo pripravljeni nabavni nalogi , delovni nalogi " -"... " +"Odvisno od načina oskrbe , bodo pripravljeni nabavni nalogi , proizvodni " +"nalogi ... " #. module: mrp #: help:mrp.workcenter,time_stop:0 @@ -2414,8 +2416,8 @@ msgid "" "production order creates as much procurement orders as components listed in " "the BOM, through a run of the schedulers (MRP)." msgstr "" -"Za potrebno oskrbo materialov , bo delovni nalog kreiral interne naloge za " -"oskrbo." +"Za potrebno oskrbo materialov , bo proizvodni nalog kreiral interne naloge " +"za oskrbo." #. module: mrp #: help:mrp.product_price,number:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index 80ee5152c2b..2a7e96a4048 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-05 17:18+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-01-16 01:01+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -29,7 +29,7 @@ msgid "" "manufactured product in the production order.)'" msgstr "" "Določite količino stranskih produktov. Fiksna količina je enaka , ne glede " -"na količino glavnega izdelka na delovnem nalogu. Variabilna je odvisna od " +"na količino glavnega izdelka na proizvodnem nalogu. Variabilna je odvisna od " "količine glavnega izdelka." #. module: mrp_byproduct diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index abf9b6f22d5..9f10e8ce12a 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -8,14 +8,14 @@ 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-30 09:45+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-01-16 00:59+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -118,7 +118,7 @@ msgstr "Prekliči nalog" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_productionorder0 msgid "Production Order" -msgstr "Nalog za izdelovo" +msgstr "Proizvodni nalog" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 diff --git a/addons/portal_crm/i18n/pt.po b/addons/portal_crm/i18n/pt.po index 4ba43cccd8b..23b4586126f 100644 --- a/addons/portal_crm/i18n/pt.po +++ b/addons/portal_crm/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 11:12+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 @@ -71,6 +71,7 @@ msgstr "" #: view:portal_crm.crm_contact_us:0 msgid "Thank you for your interest, we'll respond to your request shortly." msgstr "" +"Agradecemos o seu interesse. Iremos responder ao seu pedido brevemente." #. module: portal_crm #: selection:portal_crm.crm_contact_us,priority:0 diff --git a/addons/procurement/i18n/it.po b/addons/procurement/i18n/it.po index 846b019cd2f..b1e41986701 100644 --- a/addons/procurement/i18n/it.po +++ b/addons/procurement/i18n/it.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 22:38+0000\n" +"Last-Translator: Sergio Corato \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched @@ -141,6 +141,12 @@ msgid "" "will generate a procurement request to increase the stock up to the maximum " "quantity." msgstr "" +"È possibile definire le regole di scorta minima, così OpenERP creerà " +"automaticamente gli ordini di produzione o preventivi d'acquisto in " +"relazione al livello delle scorte. Una volta che il magazzino virtuale di un " +"prodotto (= magazzino effettivo meno tutti gli ordini confermati e " +"prenotazioni) è al di sotto della quantità minima, OpenERP genererà una " +"richiesta di acquisto per aumentare lo stock fino al quantitativo massimo." #. module: procurement #: field:procurement.order,message_ids:0 diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index 7872331924e..29fedb8af46 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 10:34+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: product #: field:product.packaging,rows:0 @@ -45,12 +45,12 @@ msgstr "A Receber" #. module: product #: view:product.product:0 msgid "Product Name" -msgstr "" +msgstr "Nome do artigo" #. module: product #: view:product.template:0 msgid "Second Unit of Measure" -msgstr "" +msgstr "Segunda unidade de medida" #. module: product #: help:res.partner,property_product_pricelist:0 @@ -74,7 +74,7 @@ msgstr "Fixo" #. module: product #: model:product.template,name:product.product_product_10_product_template msgid "Mouse, Optical" -msgstr "" +msgstr "Rato, Ótico" #. module: product #: view:product.template:0 @@ -109,7 +109,7 @@ msgstr "" #: code:addons/product/product.py:208 #, python-format msgid "Warning!" -msgstr "" +msgstr "Atenção!" #. module: product #: field:product.product,image_small:0 @@ -375,7 +375,7 @@ msgstr "O tamanho da embalagem" #. module: product #: field:product.product,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: product #: help:product.template,weight_net:0 @@ -627,12 +627,12 @@ msgstr "Quantidade Mínima" #. module: product #: model:product.template,name:product.product_product_12_product_template msgid "Mouse, Wireless" -msgstr "" +msgstr "Rato, Sem fios" #. module: product #: model:product.template,name:product.product_product_22_product_template msgid "Processor Core i5 2.70 Ghz" -msgstr "" +msgstr "Processador Core i5 2.70 Ghz" #. module: product #: model:ir.model,name:product.model_product_price_type @@ -761,7 +761,7 @@ msgstr "Fornecedor do artigo" #. module: product #: model:product.template,name:product.product_product_28_product_template msgid "External Hard disk" -msgstr "" +msgstr "Disco rígido externo" #. module: product #: help:product.template,standard_price:0 @@ -826,7 +826,7 @@ msgstr "Lista de Preços" #. module: product #: model:product.uom,name:product.product_uom_hour msgid "Hour(s)" -msgstr "" +msgstr "Hora(s)" #. module: product #: selection:product.template,state:0 @@ -923,7 +923,7 @@ msgstr "Tipo de Preço dos Artigos" #. module: product #: field:product.product,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um seguidor" #. module: product #: field:product.product,price_extra:0 @@ -1086,7 +1086,7 @@ msgstr "Ascendente á Direita" #. module: product #: field:product.product,price:0 msgid "Price" -msgstr "" +msgstr "Preço" #. module: product #: field:product.pricelist.item,price_surcharge:0 @@ -1102,7 +1102,7 @@ msgstr "Referência interna" #. module: product #: model:product.template,name:product.product_product_8_product_template msgid "USB Keyboard, QWERTY" -msgstr "" +msgstr "Teclado USB, QWERTY" #. module: product #: model:product.category,name:product.product_category_9 @@ -1134,7 +1134,7 @@ msgstr "Computadores" #. module: product #: help:product.product,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: product #: model:product.uom,name:product.product_uom_kgm @@ -1166,7 +1166,7 @@ msgstr "" #. module: product #: model:product.uom,name:product.product_uom_dozen msgid "Dozen(s)" -msgstr "" +msgstr "Dúzia(s)" #. module: product #: field:product.uom,factor:0 @@ -1403,7 +1403,7 @@ msgstr "Aquisição" #. module: product #: model:product.template,name:product.product_product_23_product_template msgid "Processor AMD 8-Core" -msgstr "" +msgstr "Processador AMD 8-Core" #. module: product #: view:product.product:0 @@ -1452,7 +1452,7 @@ msgstr "Data Inicial" #. module: product #: model:product.template,name:product.product_product_38_product_template msgid "Ink Cartridge" -msgstr "" +msgstr "Tinteiro" #. module: product #: model:product.uom,name:product.product_uom_cm @@ -1501,6 +1501,10 @@ msgid "" "Hi-Speed 234Q Processor\n" "QWERTY keyboard" msgstr "" +"Monitor 17\"\n" +"6GB RAM\n" +"Processador 234Q de alta velocidade\n" +"Teclado QWERTY" #. module: product #: field:product.uom,rounding:0 @@ -1515,7 +1519,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_21_product_template msgid "Motherboard A20Z7" -msgstr "" +msgstr "Placa-mãe A20Z7" #. module: product #: model:product.template,description:product.product_product_1_product_template @@ -1526,7 +1530,7 @@ msgstr "" #. module: product #: help:product.pricelist.version,date_end:0 msgid "Last valid date for the version." -msgstr "" +msgstr "Última data válida para a versão." #. module: product #: model:product.template,name:product.product_product_19_product_template @@ -1555,7 +1559,7 @@ msgstr "Nome da Lista de Preços" #. module: product #: model:product.category,name:product.product_category_1 msgid "Saleable" -msgstr "" +msgstr "Vendável" #. module: product #: sql_constraint:product.uom:0 @@ -1585,7 +1589,7 @@ msgstr "Peso da Embalagem Vazia" #. module: product #: model:product.template,name:product.product_product_41_product_template msgid "Windows Home Server 2011" -msgstr "" +msgstr "Windows Home Server 2011" #. module: product #: field:product.price.type,field:0 @@ -1712,7 +1716,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_9_product_template msgid "USB Keyboard, AZERTY" -msgstr "" +msgstr "Teclado USB, AZERTY" #. module: product #: help:product.supplierinfo,sequence:0 @@ -1775,7 +1779,7 @@ msgstr "Descrição interna" #. module: product #: model:product.template,name:product.product_product_48_product_template msgid "USB Adapter" -msgstr "" +msgstr "Adaptador USB" #. module: product #: help:product.template,uos_id:0 @@ -1813,7 +1817,7 @@ msgstr "Empresa" #. module: product #: model:product.template,name:product.product_product_26_product_template msgid "Laptop S3450" -msgstr "" +msgstr "Portátil S3450" #. module: product #: view:product.product:0 @@ -1849,7 +1853,7 @@ msgstr "Mensagens" #. module: product #: model:product.uom,name:product.product_uom_unit msgid "Unit(s)" -msgstr "" +msgstr "Unidade(s)" #. module: product #: code:addons/product/product.py:176 @@ -1881,7 +1885,7 @@ msgstr "Tipo de Lista de Preços" #. module: product #: model:product.category,name:product.product_category_6 msgid "External Devices" -msgstr "" +msgstr "Dispositivos externos" #. module: product #: field:product.product,color:0 @@ -1922,12 +1926,12 @@ msgstr "Matérias primas" #. module: product #: model:product.template,name:product.product_product_13_product_template msgid "RAM SR5" -msgstr "" +msgstr "RAM SR5" #. module: product #: model:product.template,name:product.product_product_14_product_template msgid "RAM SR2" -msgstr "" +msgstr "RAM SR2" #. module: product #: model:ir.actions.act_window,help:product.product_normal_action_puchased @@ -2356,7 +2360,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_40_product_template msgid "Windows 7 Professional" -msgstr "" +msgstr "Windows 7 Professional" #. module: product #: selection:product.uom,uom_type:0 @@ -2377,7 +2381,7 @@ msgstr "Variante do artigo" #. module: product #: model:product.template,name:product.product_product_6_product_template msgid "15” LCD Monitor" -msgstr "" +msgstr "Monitor LCD 15\"" #. module: product #: code:addons/product/pricelist.py:376 @@ -2440,7 +2444,7 @@ msgstr "Fim do Ciclo-de-vida" #. module: product #: model:product.template,name:product.product_product_15_product_template msgid "RAM SR3" -msgstr "" +msgstr "RAM SR3" #. module: product #: help:product.product,packaging:0 diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index e5163a0bab0..3760364fc06 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.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: 2013-01-14 18:37+0000\n" +"PO-Revision-Date: 2013-01-15 16:57+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" "X-Generator: Launchpad (build 16420)\n" #. module: product @@ -90,7 +90,7 @@ msgstr "Ime pravila" #: help:product.template,list_price:0 msgid "" "Base price to compute the customer price. Sometimes called the catalog price." -msgstr "" +msgstr "Osnovna cena za izračun cene za stranko.(Kataloška cena)" #. module: product #: model:product.template,name:product.product_product_3_product_template @@ -139,7 +139,7 @@ msgstr "Izrecno pravilo za to linijo cenika." #. module: product #: field:product.template,uos_coeff:0 msgid "Unit of Measure -> UOS Coeff" -msgstr "" +msgstr "Enota mere -> Prodajna enota mere (Koeficient)" #. module: product #: field:product.price_list,price_list:0 @@ -197,6 +197,8 @@ msgid "" "Error! You cannot define the decimal precision of 'Account' as greater than " "the rounding factor of the company's main currency" msgstr "" +"Napaka! Število decimalk za 'Account' ne more biti večje od faktorja " +"zaokroževanja za glavno valuto podjetja." #. module: product #: field:product.category,parent_id:0 @@ -224,6 +226,8 @@ msgid "" "Error! You cannot define a rounding factor for the company's main currency " "that is smaller than the decimal precision of 'Account'." msgstr "" +"Napaka! Število decimalk za 'Account' ne more biti večje od faktorja " +"zaokroževanja za glavno valuto podjetja." #. module: product #: help:product.product,outgoing_qty:0 @@ -343,6 +347,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nova vrsta pakiranja.\n" +"

\n" +" " #. module: product #: field:product.template,product_manager:0 @@ -948,7 +956,7 @@ msgid "" "How many times this Unit of Measure is bigger than the reference Unit of " "Measure in this category:\n" "1 * (this unit) = ratio * (reference unit)" -msgstr "" +msgstr "Kolikokrat je ta enota večja od referenčne enote mere." #. module: product #: view:product.template:0 @@ -971,7 +979,7 @@ msgstr "Določite minimalno količino , ki bo sprožila to pravilo." #. module: product #: help:product.pricelist.version,date_start:0 msgid "First valid date for the version." -msgstr "" +msgstr "Prvi veljavni datum za verzijo." #. module: product #: help:product.supplierinfo,delay:0 @@ -980,6 +988,8 @@ msgid "" "reception of the products in your warehouse. Used by the scheduler for " "automatic computation of the purchase order planning." msgstr "" +"Predvideni čas med potrditvijo naročila in prihodom izdelkov na vaše " +"skladišče." #. module: product #: model:product.template,description_sale:product.product_product_3_product_template @@ -1062,7 +1072,7 @@ msgid "" "The minimal quantity to purchase to this supplier, expressed in the supplier " "Product Unit of Measure if not empty, in the default unit of measure of the " "product otherwise." -msgstr "" +msgstr "Minimalna količina nabave za tega dobavitelja." #. module: product #: view:product.product:0 @@ -1290,7 +1300,7 @@ msgstr "Število slojev na paleti ali škatlji" #. module: product #: help:product.pricelist.item,price_min_margin:0 msgid "Specify the minimum amount of margin over the base price." -msgstr "" +msgstr "Minimalna razlika v ceni." #. module: product #: field:product.template,weight_net:0 diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po index 74fae67618e..ec4bbc7c2d3 100644 --- a/addons/purchase_requisition/i18n/it.po +++ b/addons/purchase_requisition/i18n/it.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 22:51+0000\n" +"Last-Translator: Sergio Corato \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -30,7 +30,7 @@ msgstr "Più richieste" #. module: purchase_requisition #: field:purchase.requisition.line,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unità di misura prodotto" #. module: purchase_requisition #: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition @@ -49,6 +49,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Fare clic per avviare un nuovo processo di richiesta d'acquisto. " +"\n" +"

\n" +" Una richiesta d'acquisto è il passo prima della richiesta di " +"preventivo.\n" +" In una richiesta di acquisto (o offerta di acquisto), è " +"possibile registrare i\n" +" prodotti necessari per acquistare e attivare la creazione di " +"Richieste D'Offerta\n" +" ai fornitori. Dopo la trattativa, dopo aver esaminato tutte le\n" +" offerte dei fornitori, è possibile convalidarne alcuni e " +"cancellarne altri.\n" +"

\n" +" " #. module: purchase_requisition #: view:purchase.requisition:0 @@ -60,12 +75,12 @@ msgstr "Responsabile" #: view:purchase.requisition:0 #: field:purchase.requisition,state:0 msgid "Status" -msgstr "" +msgstr "Stato" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Send to Suppliers" -msgstr "" +msgstr "Spedisci ai Fornitori" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -76,17 +91,17 @@ msgstr "Raggruppa per..." #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "Purchase Done" -msgstr "" +msgstr "Acquisto Completato" #. module: purchase_requisition #: field:purchase.requisition,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Followers" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Purchase Requisition in negociation" -msgstr "" +msgstr "Richieste D'acquisto in negoziazione" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -98,7 +113,7 @@ msgstr "Fornitore" #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "New" -msgstr "" +msgstr "Nuovo" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -136,7 +151,7 @@ msgstr "Linea di richiesta d'acquisto" #. module: purchase_requisition #: view:purchase.order:0 msgid "Purchase Orders with requisition" -msgstr "" +msgstr "Ordini D'acquisto con richiesta" #. module: purchase_requisition #: model:ir.model,name:purchase_requisition.model_product_product @@ -147,12 +162,12 @@ msgstr "Prodotto" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Quotations" -msgstr "Quotazioni" +msgstr "Preventivi" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Termini e Condizioni" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -163,7 +178,7 @@ msgstr "Descrizioni" #. module: purchase_requisition #: field:purchase.requisition,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Messaggi non letti" #. module: purchase_requisition #: field:purchase.requisition,company_id:0 @@ -179,7 +194,7 @@ msgstr "Crea preventivo" #. module: purchase_requisition #: help:purchase.requisition,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Storico messaggi e comunicazioni" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -189,7 +204,7 @@ msgstr "Approvato dal fornitore" #. module: purchase_requisition #: view:purchase.requisition.partner:0 msgid "or" -msgstr "" +msgstr "o" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -199,12 +214,12 @@ msgstr "Reimposta come bozza" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Current Purchase Requisition" -msgstr "" +msgstr "Richieste d'acquisto correnti" #. module: purchase_requisition #: model:res.groups,name:purchase_requisition.group_purchase_requisition_user msgid "User" -msgstr "" +msgstr "Utente" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -214,7 +229,7 @@ msgstr "Riferimento ordine" #. module: purchase_requisition #: field:purchase.requisition,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "E' un Follower" #. module: purchase_requisition #: field:purchase.requisition.line,product_qty:0 @@ -224,7 +239,7 @@ msgstr "Quantità" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Unassigned Requisition" -msgstr "" +msgstr "Richieste non assegnate" #. module: purchase_requisition #: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition @@ -244,6 +259,8 @@ msgid "" "You have already one %s purchase order for this partner, you must cancel " "this purchase order to create a new quotation." msgstr "" +"C'è già un %s ordine d'acquisto per questo partner, è necessario annullare " +"questo ordine di acquisto per creare un nuovo preventivo." #. module: purchase_requisition #: view:purchase.requisition:0 @@ -265,7 +282,7 @@ msgstr "Prodotti da acquistare" #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "Sent to Suppliers" -msgstr "" +msgstr "Spediti a Fornitori" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -276,7 +293,7 @@ msgstr "Cerca richieste d'acquisto" #: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 #, python-format msgid "No Product in Tender." -msgstr "" +msgstr "Nessun prodotto in negoziazione." #. module: purchase_requisition #: report:purchase.requisition:0 @@ -286,7 +303,7 @@ msgstr "Data ordine" #. module: purchase_requisition #: field:purchase.requisition,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messaggi" #. module: purchase_requisition #: help:purchase.requisition,exclusive:0 @@ -317,7 +334,7 @@ msgstr "Ordine di Acquisto" #. module: purchase_requisition #: field:purchase.requisition,origin:0 msgid "Source Document" -msgstr "" +msgstr "Documento di origine" #. module: purchase_requisition #: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 @@ -333,7 +350,7 @@ msgstr "Tipo richiesta" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "New Purchase Requisition" -msgstr "" +msgstr "Nuove richieste d'acquisto" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -358,7 +375,7 @@ msgstr "Partner richiesta ordine" #. module: purchase_requisition #: help:purchase.requisition,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se selezionato, nuovi messaggi richiedono la tua attenzione" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -378,7 +395,7 @@ msgstr "Termine richiesta" #. module: purchase_requisition #: field:purchase.requisition,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Riepilogo" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -394,7 +411,7 @@ msgstr "Approvvigionamento" #: report:purchase.requisition:0 #: view:purchase.requisition:0 msgid "Source" -msgstr "" +msgstr "Origine" #. module: purchase_requisition #: field:purchase.requisition,warehouse_id:0 @@ -409,7 +426,7 @@ msgstr "Ultima richiesta" #. module: purchase_requisition #: model:res.groups,name:purchase_requisition.group_purchase_requisition_manager msgid "Manager" -msgstr "" +msgstr "Responsabile" #. module: purchase_requisition #: selection:purchase.requisition,exclusive:0 @@ -422,6 +439,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 "" +"Gestisce il sommario (numero di messaggi, ...) di Chatter. Questo sommario è " +"direttamente in html così da poter essere inserito nelle viste kanban." #. module: purchase_requisition #: report:purchase.requisition:0 @@ -432,7 +451,7 @@ msgstr "UoM prodotto" #: code:addons/purchase_requisition/purchase_requisition.py:134 #, python-format msgid "Warning!" -msgstr "" +msgstr "Attenzione!" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -472,6 +491,8 @@ msgid "" "Check this box to generates purchase requisition instead of generating " "requests for quotation from procurement." msgstr "" +"Selezionare questa casella per generare richieste d'acquisto invece di " +"generare richieste di preventivo dagli approvvigionamenti." #. module: purchase_requisition #: field:purchase.requisition,purchase_ids:0 diff --git a/addons/purchase_requisition/i18n/sl.po b/addons/purchase_requisition/i18n/sl.po new file mode 100644 index 00000000000..7979679b232 --- /dev/null +++ b/addons/purchase_requisition/i18n/sl.po @@ -0,0 +1,474 @@ +# Slovenian 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:06+0000\n" +"PO-Revision-Date: 2013-01-15 16:44+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Request a Quotation" +msgstr "Zahteva za ponudbo" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Multiple Requisitions" +msgstr "Večkratna popraševanja" + +#. module: purchase_requisition +#: field:purchase.requisition.line,product_uom_id:0 +msgid "Product Unit of Measure" +msgstr "Enota mere izdelka" + +#. module: purchase_requisition +#: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition +msgid "" +"

\n" +" Click to start a new purchase requisition process. \n" +"

\n" +" A purchase requisition is the step before a request for " +"quotation.\n" +" In a purchase requisition (or purchase tender), you can record " +"the\n" +" products you need to buy and trigger the creation of RfQs to\n" +" suppliers. After the negotiation, once you have reviewed all " +"the\n" +" supplier's offers, you can validate some and cancel others.\n" +"

\n" +" " +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,user_id:0 +msgid "Responsible" +msgstr "Odgovoren" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,state:0 +msgid "Status" +msgstr "Status" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Send to Suppliers" +msgstr "Pošlji dobaviteljem" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Purchase Done" +msgstr "Nakup končan" + +#. module: purchase_requisition +#: field:purchase.requisition,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Purchase Requisition in negociation" +msgstr "Povpraševanja v fazi pogajanj" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition.partner,partner_id:0 +msgid "Supplier" +msgstr "Dobavitelj" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "New" +msgstr "Novo" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Product Detail" +msgstr "Podrobnosti itdelka" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Qty" +msgstr "Kol." + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Type" +msgstr "Vrsta" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition_partner +#: model:ir.actions.report.xml,name:purchase_requisition.report_purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition +#: model:ir.module.category,name:purchase_requisition.module_category_purchase_requisition +#: field:product.product,purchase_requisition:0 +#: field:purchase.order,requisition_id:0 +#: view:purchase.requisition:0 +#: field:purchase.requisition.line,requisition_id:0 +#: view:purchase.requisition.partner:0 +msgid "Purchase Requisition" +msgstr "Povpraševanje" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_line +msgid "Purchase Requisition Line" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.order:0 +msgid "Purchase Orders with requisition" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_product_product +#: field:purchase.requisition.line,product_id:0 +msgid "Product" +msgstr "Izdelek" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Quotations" +msgstr "Ponudbe" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Terms and Conditions" +msgstr "Pravila in pogoji" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,description:0 +msgid "Description" +msgstr "Opis" + +#. module: purchase_requisition +#: field:purchase.requisition,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: purchase_requisition +#: field:purchase.requisition,company_id:0 +#: field:purchase.requisition.line,company_id:0 +msgid "Company" +msgstr "Podjetje" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "Create Quotation" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in zgodovina sporočil" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Approved by Supplier" +msgstr "Odobril dobavitelj" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "or" +msgstr "ali" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reset to Draft" +msgstr "Vrni v Osnutek" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Current Purchase Requisition" +msgstr "Trenutno popraševanje" + +#. module: purchase_requisition +#: model:res.groups,name:purchase_requisition.group_purchase_requisition_user +msgid "User" +msgstr "Uporabnik" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Order Reference" +msgstr "Naročilo" + +#. module: purchase_requisition +#: field:purchase.requisition,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: purchase_requisition +#: field:purchase.requisition.line,product_qty:0 +msgid "Quantity" +msgstr "Količina" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Unassigned Requisition" +msgstr "Ne dodeljena popraševanja" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition +#: model:ir.ui.menu,name:purchase_requisition.menu_purchase_requisition_pro_mgt +msgid "Purchase Requisitions" +msgstr "Popraševanja" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Quotation Detail" +msgstr "Podrobnosti popraševanja" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/purchase_requisition.py:134 +#, python-format +msgid "" +"You have already one %s purchase order for this partner, you must cancel " +"this purchase order to create a new quotation." +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "End Date" +msgstr "Končni datum" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,name:0 +msgid "Requisition Reference" +msgstr "Sklic popraševanja" + +#. module: purchase_requisition +#: field:purchase.requisition,line_ids:0 +msgid "Products to Purchase" +msgstr "Izdelki" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Sent to Suppliers" +msgstr "Poslano dobaviteljem" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Search Purchase Requisition" +msgstr "Iskanje popraševanj" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 +#, python-format +msgid "No Product in Tender." +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Date Ordered" +msgstr "Datum naročila" + +#. module: purchase_requisition +#: field:purchase.requisition,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: purchase_requisition +#: help:purchase.requisition,exclusive:0 +msgid "" +"Purchase Requisition (exclusive): On the confirmation of a purchase order, " +"it cancels the remaining purchase order.\n" +"Purchase Requisition(Multiple): It allows to have multiple purchase " +"orders.On confirmation of a purchase order it does not cancel the remaining " +"orders" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Cancel Purchase Order" +msgstr "Prekliči nabavni nalog" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_order +#: view:purchase.requisition:0 +msgid "Purchase Order" +msgstr "Nabavni nalog" + +#. module: purchase_requisition +#: field:purchase.requisition,origin:0 +msgid "Source Document" +msgstr "Izvorni dokument" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 +#, python-format +msgid "Error!" +msgstr "Napaka!" + +#. module: purchase_requisition +#: field:purchase.requisition,exclusive:0 +msgid "Requisition Type" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "New Purchase Requisition" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Products" +msgstr "Izdelki" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Order Date" +msgstr "Datum naročila" + +#. module: purchase_requisition +#: selection:purchase.requisition,state:0 +msgid "Cancelled" +msgstr "Preklicano" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_partner +msgid "Purchase Requisition Partner" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Purchase for Requisitions" +msgstr "" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.act_res_partner_2_purchase_order +msgid "Purchase orders" +msgstr "Nabavni nalogi" + +#. module: purchase_requisition +#: field:purchase.requisition,date_end:0 +msgid "Requisition Deadline" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reference" +msgstr "Sklic" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_procurement_order +msgid "Procurement" +msgstr "Oskrba" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: view:purchase.requisition:0 +msgid "Source" +msgstr "Vir" + +#. module: purchase_requisition +#: field:purchase.requisition,warehouse_id:0 +msgid "Warehouse" +msgstr "Skladišče" + +#. module: purchase_requisition +#: field:procurement.order,requisition_id:0 +msgid "Latest Requisition" +msgstr "" + +#. module: purchase_requisition +#: model:res.groups,name:purchase_requisition.group_purchase_requisition_manager +msgid "Manager" +msgstr "Vodja" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Purchase Requisition (exclusive)" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "Povzetek (število sporočil,..)" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Product UoM" +msgstr "EM izdelka" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/purchase_requisition.py:134 +#, python-format +msgid "Warning!" +msgstr "Opozorilo!" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Confirm Purchase Order" +msgstr "Potrdi nabavni nalog" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: view:purchase.requisition.partner:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,date_start:0 +msgid "Requisition Date" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Start Date" +msgstr "Začetni datum" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Unassigned" +msgstr "Nedodeljeno" + +#. module: purchase_requisition +#: view:purchase.order:0 +msgid "Requisition" +msgstr "" + +#. module: purchase_requisition +#: help:product.product,purchase_requisition:0 +msgid "" +"Check this box to generates purchase requisition instead of generating " +"requests for quotation from procurement." +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,purchase_ids:0 +msgid "Purchase Orders" +msgstr "" diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index bcb47273e3d..181b7d15fcd 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.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:04+0000\n" -"PO-Revision-Date: 2013-01-11 09:08+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2013-01-15 09:52+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" "X-Generator: Launchpad (build 16420)\n" #. module: sale @@ -1855,6 +1855,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите, чтобы создать заявку, это первый шаг к новой " +"продаже.\n" +"

\n" +" OpenERP поможет вам эффективно обработать всю цепочку " +"продажи:\n" +" от заявки до заказа продаж, доставки, выставления счетов и " +"сбора платежей.\n" +"

\n" +" Функция социализации поможет вам вести дискуссии по каждому " +"заказу продаж,\n" +" и даст вашим клиентам возможность следить за " +"эволюционированием заказа продаж.\n" +"

\n" +" " #. module: sale #: view:res.partner:0 @@ -1920,6 +1935,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите, чтобы создать заявку которая может быть превращена " +"в заказ продаж.\n" +"

\n" +" OpenERP поможет вам эффективно обработать всю цепочку " +"продажи:\n" +" от заявки до заказа продаж, доставки, выставления счетов и " +"сбора платежей.\n" +"

\n" +" " #. module: sale #: field:sale.order,invoice_quantity:0 @@ -2008,6 +2033,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите, чтобы создать заявку или заказ продаж для этого " +"клиента.\n" +"

\n" +" OpenERP поможет вам эффективно обработать всю цепочку " +"продажи:\n" +" от заявки до заказа продаж, доставки, выставления счетов и " +"сбора платежей.\n" +"

\n" +" Функция социализации поможет вам вести дискуссии по каждому " +"заказу продаж,\n" +" и даст вашим клиентам возможность следить за " +"эволюционированием заказа продаж.\n" +"

\n" +" " #. module: sale #: field:sale.order,message_summary:0 diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 80ad3bfa37f..198cb4e97ef 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.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:04+0000\n" -"PO-Revision-Date: 2013-01-13 11:53+0000\n" +"PO-Revision-Date: 2013-01-16 01:14+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" "X-Generator: Launchpad (build 16420)\n" #. module: stock @@ -245,7 +245,7 @@ msgstr "Dobavnice za fakturiranje" #. module: stock #: view:stock.picking:0 msgid "Assigned Delivery Orders" -msgstr "" +msgstr "Povezani dostavni nalogi" #. module: stock #: code:addons/stock/wizard/stock_change_standard_price.py:107 @@ -287,7 +287,7 @@ msgstr "Prihajajoči proizvodi" #. module: stock #: view:report.stock.lines.date:0 msgid "Non Inv" -msgstr "" +msgstr "Ni fakt," #. module: stock #: code:addons/stock/wizard/stock_traceability.py:54 @@ -342,7 +342,7 @@ msgstr "_Potrditev" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "Povzetek (število sporočil,..)" #. module: stock #: code:addons/stock/stock.py:768 @@ -508,7 +508,7 @@ msgstr "Odpri meni skladišča" #. module: stock #: field:stock.warehouse,lot_output_id:0 msgid "Location Output" -msgstr "" +msgstr "Odprema" #. module: stock #: model:ir.actions.act_window,name:stock.split_into @@ -737,7 +737,7 @@ msgstr "" #. module: stock #: view:stock.partial.picking.line:0 msgid "Stock Picking Line" -msgstr "" +msgstr "Pozicije" #. module: stock #: field:stock.location,complete_name:0 @@ -896,7 +896,7 @@ msgstr "Čas" #: code:addons/stock/product.py:447 #, python-format msgid "Future Receptions" -msgstr "" +msgstr "Bodoče dobave" #. module: stock #: selection:stock.move,priority:0 @@ -985,7 +985,7 @@ msgstr "" #. module: stock #: field:stock.config.settings,decimal_precision:0 msgid "Decimal precision on weight" -msgstr "" +msgstr "Število decimalk za težo" #. module: stock #: view:stock.production.lot:0 @@ -1041,7 +1041,7 @@ msgstr "Podrobnosti" #. module: stock #: selection:stock.picking,state:0 msgid "Ready to Transfer" -msgstr "" +msgstr "Pripravljeno za dobavo" #. module: stock #: report:lot.stock.overview:0 @@ -1113,7 +1113,7 @@ msgstr "" #. module: stock #: model:ir.model,name:stock.model_stock_partial_move msgid "Partial Move Processing Wizard" -msgstr "" +msgstr "Čarovnik za delne premike" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_product_location_open @@ -1133,12 +1133,12 @@ msgstr "Izdelek -Sklopi" #. module: stock #: view:stock.picking:0 msgid "Reverse Transfer" -msgstr "" +msgstr "Vračilo" #. module: stock #: field:stock.config.settings,group_uos:0 msgid "Invoice products in a different unit of measure than the sales order" -msgstr "" +msgstr "Fakturiranje izdelkov v drugi enoti mere" #. module: stock #: help:stock.location,active:0 @@ -1181,7 +1181,7 @@ msgstr "Pogled" #. module: stock #: field:stock.location,parent_left:0 msgid "Left Parent" -msgstr "" +msgstr "Left Parent" #. module: stock #: field:product.category,property_stock_valuation_account_id:0 @@ -1263,7 +1263,7 @@ msgstr "" #. module: stock #: report:stock.picking.list:0 msgid "Internal Shipment :" -msgstr "" +msgstr "Interna pošiljka:" #. module: stock #: view:stock.inventory.line:0 @@ -1624,7 +1624,7 @@ msgstr "Datum kreiranja" #. module: stock #: field:report.stock.lines.date,id:0 msgid "Inventory Line Id" -msgstr "" +msgstr "Pozicija" #. module: stock #: help:stock.location,partner_id:0 @@ -1679,6 +1679,9 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Spoštovani,\n" +"\n" +"Naši podatki kažejo , da nam dolgujete spodaj navedeni znesek." #. module: stock #: help:stock.incoterms,active:0 diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index 7fdbd778dbb..9bc8dbe2e52 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/i18n/hr.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-15 17:45+0000\n" +"Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: survey #: view:survey.response.line:0 msgid "Single Textboxes" -msgstr "Single Textboxes" +msgstr "" #. module: survey #: code:addons/survey/survey.py:471 @@ -58,12 +58,12 @@ msgstr "Pozvani korisnik" #. module: survey #: model:survey.type,name:survey.survey_type1 msgid "Human Resources" -msgstr "Ljudski resursi" +msgstr "Ljudski potencijali" #. module: survey #: selection:survey.answer,type:0 msgid "Character" -msgstr "Character" +msgstr "Znak" #. module: survey #: model:ir.actions.act_window,name:survey.action_survey_form1 @@ -75,7 +75,7 @@ msgstr "Upitnici" #. module: survey #: field:survey.question,in_visible_answer_type:0 msgid "Is Answer Type Invisible?" -msgstr "Da li je Vrsta odgovora nevidljiv?" +msgstr "Da li je vrsta odgovora nevidljiva?" #. module: survey #: view:survey:0 @@ -376,7 +376,7 @@ msgstr "Edit Survey" #: code:addons/survey/wizard/survey_answer.py:961 #, python-format msgid "Please enter an integer value." -msgstr "" +msgstr "Upišite cjelobrojnu vrijednost." #. module: survey #: field:survey.question.column.heading,menu_choice:0 @@ -400,7 +400,7 @@ msgstr "At Most" #: view:survey:0 #: view:survey.request:0 msgid "My Survey(s)" -msgstr "" +msgstr "Moji upitnici" #. module: survey #: view:survey.response.line:0 @@ -629,7 +629,7 @@ msgstr "Page Nr" #. module: survey #: model:ir.ui.menu,name:survey.menu_print_survey_form msgid "Print Surveys" -msgstr "" +msgstr "Ispiši upitnike" #. module: survey #: field:survey.question.column.heading,in_visible_menu_choice:0 @@ -782,7 +782,7 @@ msgstr "Ručno" #. module: survey #: view:survey.send.invitation:0 msgid "_Send" -msgstr "" +msgstr "_Pošalji" #. module: survey #: help:survey,responsible_id:0 @@ -1478,7 +1478,7 @@ msgstr "Portrait(Vertical)" #: code:addons/survey/wizard/survey_send_invitation.py:68 #, python-format msgid "Invitation for %s" -msgstr "" +msgstr "Pozivnica za %s" #. module: survey #: selection:survey.question,comment_valid_type:0 @@ -1516,7 +1516,7 @@ msgstr "" #. module: survey #: view:survey:0 msgid "All Open Survey" -msgstr "" +msgstr "Svi otvoreni upitnici" #. module: survey #: model:ir.actions.report.xml,name:survey.survey_browse_response @@ -1717,7 +1717,7 @@ msgstr "Decimalni" #: view:survey.print.statistics:0 #: view:survey.send.invitation:0 msgid "or" -msgstr "" +msgstr "ili" #. module: survey #: field:survey,title:0 diff --git a/addons/web/i18n/pt.po b/addons/web/i18n/pt.po index 6a486604f5c..15a09e35522 100644 --- a/addons/web/i18n/pt.po +++ b/addons/web/i18n/pt.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-09 16:07+0000\n" -"Last-Translator: Rui Franco (multibase.pt) \n" +"PO-Revision-Date: 2013-01-15 10:10+0000\n" +"Last-Translator: António Sequeira \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:53+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: web #. openerp-web @@ -43,7 +43,7 @@ msgstr "Carregando...
Por favor, aguarde." #: code:addons/web/static/src/js/search.js:1832 #, python-format msgid "%(field)s %(operator)s \"%(value)s\"" -msgstr "" +msgstr "%(field)s %(operator)s \"%(value)s\"" #. module: web #. openerp-web diff --git a/openerp/addons/base/i18n/pt.po b/openerp/addons/base/i18n/pt.po index e191cab36f2..6c6e30c0570 100644 --- a/openerp/addons/base/i18n/pt.po +++ b/openerp/addons/base/i18n/pt.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-01 09:49+0000\n" -"Last-Translator: Virgílio Oliveira \n" +"PO-Revision-Date: 2013-01-15 10:00+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -15447,7 +15447,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_module_tree msgid "Installed Modules" -msgstr "" +msgstr "Módulos instalados" #. module: base #: code:addons/base/res/res_users.py:170 From 35223210cc33656a4abe546af4baf3cfe77547f9 Mon Sep 17 00:00:00 2001 From: Michael Telahun Makonnen Date: Wed, 16 Jan 2013 11:04:11 +0100 Subject: [PATCH 06/72] [ADD] Amharic (Ethiopia) date/time localization for DateJS, courtesy of Michael Telahun Makonnen. This is necessary in order for the web client to work properly when the user's locale is set to Amharic. Otherwise datejs will crash and the web client's loading will fail to complete. bzr revid: xmo@openerp.com-20130116100411-ew1383st1hr8yv3l --- .../static/lib/datejs/globalization/am-ET.js | 195 ++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 addons/web/static/lib/datejs/globalization/am-ET.js diff --git a/addons/web/static/lib/datejs/globalization/am-ET.js b/addons/web/static/lib/datejs/globalization/am-ET.js new file mode 100644 index 00000000000..8b75ccfd3a5 --- /dev/null +++ b/addons/web/static/lib/datejs/globalization/am-ET.js @@ -0,0 +1,195 @@ +Date.CultureInfo = { + /* Culture Name */ + name: "am-ET", + englishName: "Amharic (Ethiopia)", + nativeName: "አምሃርኛ (ኢትዮጵያ)", + + /* Day Name Strings */ + dayNames: ["እሁድ", "ሰኞ", "ማክሰኞ", "ረብዑ", "ሃሙስ", "ዓርብ", "ቅዳሜ"], + abbreviatedDayNames: ["እሁድ", "ሰኞ", "ማክሰ", "ረብዑ", "ሃሙስ", "ዓርብ", "ቅዳሜ"], + shortestDayNames: ["እሁ", "ሰኞ", "ማክ", "ረብ", "ሃሙ", "ዓር", "ቅዳ"], + firstLetterDayNames: ["እ", "ሰ", "ማ", "ረ", "ሃ", "ዓ", "ቅ"], + + /* Month Name Strings */ + monthNames: ["ጃንዋሪ", "ፌብሩዋሪ", "ማርች", "አፕሪል", "ሜይ", "ጁን", "ጁላይ", "ኦገስት", "ሴፕቴምበር", "ኦክቶበር", "ኖቬምበር", "ዲሴምበር"], + abbreviatedMonthNames: ["ጃንዋ", "ፌብሩ", "ማርች", "አፕሪ", "ሜይ", "ጁን", "ጁላይ", "ኦገስ", "ሴፕቴ", "ኦክቶ", "ኖቬም", "ዲሴም"], + + /* AM/PM Designators */ + amDesignator: "ከቀኑ", + pmDesignator: "ከለሊቱ", + + firstDayOfWeek: 1, + twoDigitYearMax: 2029, + + /** + * The dateElementOrder is based on the order of the + * format specifiers in the formatPatterns.DatePattern. + * + * Example: +
+     shortDatePattern    dateElementOrder
+     ------------------  ----------------
+     "M/d/yyyy"          "mdy"
+     "dd/MM/yyyy"        "dmy"
+     "yyyy-MM-dd"        "ymd"
+     
+ * + * The correct dateElementOrder is required by the parser to + * determine the expected order of the date elements in the + * string being parsed. + */ + dateElementOrder: "dmy", + + /* Standard date and time format patterns */ + formatPatterns: { + shortDate: "dd/MM/yyyy", + longDate: "dd MMMM yyyy", + shortTime: "HH:mm", + longTime: "HH:mm:ss", + fullDateTime: "dd MMMM yyyy HH:mm:ss", + sortableDateTime: "yyyy-MM-ddTHH:mm:ss", + universalSortableDateTime: "yyyy-MM-dd HH:mm:ssZ", + rfc1123: "ddd, dd MMM yyyy HH:mm:ss GMT", + monthDay: "dd MMMM", + yearMonth: "MMMM yyyy" + }, + + /** + * NOTE: If a string format is not parsing correctly, but + * you would expect it parse, the problem likely lies below. + * + * The following regex patterns control most of the string matching + * within the parser. + * + * The Month name and Day name patterns were automatically generated + * and in general should be (mostly) correct. + * + * Beyond the month and day name patterns are natural language strings. + * Example: "next", "today", "months" + * + * These natural language string may NOT be correct for this culture. + * If they are not correct, please translate and edit this file + * providing the correct regular expression pattern. + * + * If you modify this file, please post your revised CultureInfo file + * to the Datejs Forum located at http://www.datejs.com/forums/. + * + * Please mark the subject of the post with [CultureInfo]. Example: + * Subject: [CultureInfo] Translated "da-DK" Danish(Denmark) + * + * We will add the modified patterns to the master source files. + * + * As well, please review the list of "Future Strings" section below. + */ + regexPatterns: { + jan: /^jan(uary)?/i, + feb: /^feb(ruary)?/i, + mar: /^mar(ch)?/i, + apr: /^apr(il)?/i, + may: /^may/i, + jun: /^jun(e)?/i, + jul: /^jul(y)?/i, + aug: /^aug(ust)?/i, + sep: /^sep(t(ember)?)?/i, + oct: /^oct(ober)?/i, + nov: /^nov(ember)?/i, + dec: /^dec(ember)?/i, + + sun: /^su(n(day)?)?/i, + mon: /^mo(n(day)?)?/i, + tue: /^tu(e(s(day)?)?)?/i, + wed: /^we(d(nesday)?)?/i, + thu: /^th(u(r(s(day)?)?)?)?/i, + fri: /^fr(i(day)?)?/i, + sat: /^sa(t(urday)?)?/i, + + future: /^next/i, + past: /^last|past|prev(ious)?/i, + add: /^(\+|aft(er)?|from|hence)/i, + subtract: /^(\-|bef(ore)?|ago)/i, + + yesterday: /^yes(terday)?/i, + today: /^t(od(ay)?)?/i, + tomorrow: /^tom(orrow)?/i, + now: /^n(ow)?/i, + + millisecond: /^ms|milli(second)?s?/i, + second: /^sec(ond)?s?/i, + minute: /^mn|min(ute)?s?/i, + hour: /^h(our)?s?/i, + week: /^w(eek)?s?/i, + month: /^m(onth)?s?/i, + day: /^d(ay)?s?/i, + year: /^y(ear)?s?/i, + + shortMeridian: /^(a|p)/i, + longMeridian: /^(a\.?m?\.?|p\.?m?\.?)/i, + timezone: /^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\s*(\+|\-)\s*\d\d\d\d?)|gmt|utc)/i, + ordinalSuffix: /^\s*(st|nd|rd|th)/i, + timeContext: /^\s*(\:|a(?!u|p)|p)/i + }, + + timezones: [{name:"UTC", offset:"-000"}, {name:"GMT", offset:"-000"}, {name:"EST", offset:"-0500"}, {name:"EDT", offset:"-0400"}, {name:"CST", offset:"-0600"}, {name:"CDT", offset:"-0500"}, {name:"MST", offset:"-0700"}, {name:"MDT", offset:"-0600"}, {name:"PST", offset:"-0800"}, {name:"PDT", offset:"-0700"}] +}; + +/******************** + ** Future Strings ** + ******************** + * + * The following list of strings may not be currently being used, but + * may be incorporated into the Datejs library later. + * + * We would appreciate any help translating the strings below. + * + * If you modify this file, please post your revised CultureInfo file + * to the Datejs Forum located at http://www.datejs.com/forums/. + * + * Please mark the subject of the post with [CultureInfo]. Example: + * Subject: [CultureInfo] Translated "da-DK" Danish(Denmark)b + * + * English Name Translated + * ------------------ ----------------- + * about about + * ago ago + * date date + * time time + * calendar calendar + * show show + * hourly hourly + * daily daily + * weekly weekly + * bi-weekly bi-weekly + * fortnight fortnight + * monthly monthly + * bi-monthly bi-monthly + * quarter quarter + * quarterly quarterly + * yearly yearly + * annual annual + * annually annually + * annum annum + * again again + * between between + * after after + * from now from now + * repeat repeat + * times times + * per per + * min (abbrev minute) min + * morning morning + * noon noon + * night night + * midnight midnight + * mid-night mid-night + * evening evening + * final final + * future future + * spring spring + * summer summer + * fall fall + * winter winter + * end of end of + * end end + * long long + * short short + */ From a186503285911a264318c806baa2fe0c3ac1bc82 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 16 Jan 2013 15:54:51 +0100 Subject: [PATCH 07/72] [FIX] crm: fixed dependancies. The email_template module is auto installed by mail, but it's not a real dependancy and email_template could be uninstalled, what would lead to a crash in crm because it is using this feature (revno 8287.1.11, merged in v7 in revision 8382). To solve this issue, i just add the dependancy... even if it's a stable version, because we hope that the exception case explainde before cannot be found yet. bzr revid: qdp-launchpad@openerp.com-20130116145451-vmk17f4mmor6ulpy --- addons/crm/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/crm/__openerp__.py b/addons/crm/__openerp__.py index 4a792abc9ee..c9435956e39 100644 --- a/addons/crm/__openerp__.py +++ b/addons/crm/__openerp__.py @@ -54,6 +54,7 @@ Dashboard for CRM will include: 'base_status', 'process', 'mail', + 'email_template', 'base_calendar', 'resource', 'board', From c10d28e4e6fda20564565a2f2a0e71637f40e655 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 16 Jan 2013 17:40:25 +0100 Subject: [PATCH 08/72] [FIX] orm: SUPERUSER is not restricted by groups on fields bzr revid: chs@openerp.com-20130116164025-qns65cb78p8p57m1 --- openerp/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/osv/orm.py b/openerp/osv/orm.py index 6056e405b78..67d365ecf6f 100644 --- a/openerp/osv/orm.py +++ b/openerp/osv/orm.py @@ -3555,7 +3555,7 @@ class BaseModel(object): if field_name not in self._all_columns: return True field = self._all_columns[field_name].column - if field.groups: + if user != SUPERUSER_ID and field.groups: return self.user_has_groups(cr, user, groups=field.groups, context=context) else: return True From df69f4b08a517324b095a3af070eed7de0ebcea1 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 17 Jan 2013 02:23:12 +0100 Subject: [PATCH 09/72] [FIX] ir.module: installation from urls: better logging + fix mixing local and remote modules in one call (empty module URL means local module is available and should be installed) bzr revid: odo@openerp.com-20130117012312-kwr1iaf590ll4wm1 --- openerp/addons/base/module/module.py | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/openerp/addons/base/module/module.py b/openerp/addons/base/module/module.py index 47a4cfc8174..9e8b68451c5 100644 --- a/openerp/addons/base/module/module.py +++ b/openerp/addons/base/module/module.py @@ -254,9 +254,9 @@ class module(osv.osv): 'website': fields.char("Website", size=256, readonly=True), # attention: Incorrect field names !! - # installed_version refer the latest version (the one on disk) - # latest_version refer the installed version (the one in database) - # published_version refer the version available on the repository + # installed_version refers the latest version (the one on disk) + # latest_version refers the installed version (the one in database) + # published_version refers the version available on the repository 'installed_version': fields.function(_get_latest_version, string='Latest Version', type='char'), 'latest_version': fields.char('Installed Version', size=64, readonly=True), 'published_version': fields.char('Published Version', size=64, readonly=True), @@ -657,31 +657,35 @@ class module(osv.osv): OPENERP = 'openerp' tmp = tempfile.mkdtemp() try: + # 1. Download & unzip missing modules for module_name, url in urls.items(): if not url: continue # nothing to download, local version is already the last one try: + _logger.info('Downloading module `%s` from OpenERP Apps', module_name) content = urllib2.urlopen(url).read() - except Exception, e: - _logger.exception('ggr') - raise osv.except_osv('grrr', e) + except Exception: + _logger.exception('Failed to fetch module %s', module_name) + raise osv.except_osv(_('Module not found'), + _('The `%s` module appears to be unavailable at the moment, please try again later.') % module_name) else: zipfile.ZipFile(StringIO(content)).extractall(tmp) assert os.path.isdir(os.path.join(tmp, module_name)) - for module_name in urls: - if module_name == OPENERP: - continue # special case. handled below + # 2a. Copy/Replace module source in addons path + for module_name, url in urls.items(): + if module_name == OPENERP or not url: + continue # OPENERP is special case, handled below, and no URL means local module module_path = modules.get_module_path(module_name, downloaded=True, display_warning=False) bck = backup(module_path, False) shutil.move(os.path.join(tmp, module_name), module_path) if bck: shutil.rmtree(bck) + # 2b. Copy/Replace server+base module source if downloaded if urls.get(OPENERP, None): - # special case. it containt the server and the base module. + # special case. it contains the server and the base module. # extract path is not the same - base_path = os.path.dirname(modules.get_module_path('base')) # copy all modules in the SERVER/openerp/addons directory to the new "openerp" module (except base itself) From 12ba7aa6c5fbff26d25b50d36b7abcfdd6a3fdda Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 17 Jan 2013 05:54:10 +0000 Subject: [PATCH 10/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130117055410-zd43kjahjj8ei90n --- addons/anonymization/i18n/pt.po | 12 +- addons/auth_crypt/i18n/pt.po | 78 +-- addons/base_action_rule/i18n/pt.po | 18 +- addons/base_calendar/i18n/pt.po | 32 +- addons/base_gengo/i18n/pt.po | 16 +- addons/crm_claim/i18n/pt.po | 12 +- addons/hr/i18n/pt.po | 16 +- addons/hr_evaluation/i18n/sl.po | 4 +- addons/idea/i18n/pt.po | 12 +- addons/lunch/i18n/sl.po | 896 ++++++++++++++++++++++++++ addons/mrp/i18n/sl.po | 4 +- addons/mrp_byproduct/i18n/sl.po | 4 +- addons/mrp_operations/i18n/sl.po | 4 +- addons/note/i18n/sl.po | 282 +++++++++ addons/project_issue/i18n/sl.po | 984 +++++++++++++++++++++++++++++ addons/stock/i18n/sl.po | 4 +- 16 files changed, 2249 insertions(+), 129 deletions(-) create mode 100644 addons/lunch/i18n/sl.po create mode 100644 addons/note/i18n/sl.po create mode 100644 addons/project_issue/i18n/sl.po diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index 6069bf74488..2c644720830 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 12:54+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -89,7 +89,7 @@ msgstr "" #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -271,7 +271,7 @@ msgstr "" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Erro!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index faac741ea4b..84a887faa59 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -1,78 +1,28 @@ # Portuguese translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. +# 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: 2012-12-11 15:50+0000\n" -"Last-Translator: Rui Franco (multibase.pt) \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-16 11:12+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Senha encriptada" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users msgid "Users" msgstr "Utilizadores" - -#, python-format -#~ msgid "Error" -#~ msgstr "Erro" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Encriptação de senhas" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Por favor escolha uma senha !" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Este módulo substitui as senhas em texto puro na base de dados com um erro " -#~ "grave na senha,\n" -#~ "impedindo que qualquer pessoa leia a senha original.\n" -#~ "Para a sua base de utilizadores existentes, a remoção de senhas em texto " -#~ "plano ocorre pela primeira vez\n" -#~ "um utilizador conecta-se à base de dados, após a instalação do base_crypt.\n" -#~ "Depois de instalar este módulo não será possível recuperar uma senha " -#~ "esquecida para o\n" -#~ "utilizador, a única solução é um administrador definir uma nova senha.\n" -#~ "\n" -#~ "Nota: A instalação deste módulo não significa que pode ignorar as medidas " -#~ "básicas de segurança,\n" -#~ "como a senha ainda é transmitida não é encriptada na rede (pelo cliente),\n" -#~ "a menos que esteja a usar um protocolo seguro, como o XML-RPCS.\n" -#~ " " - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Não pode ter dois utilizadores com o mesmo registo!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "A empresa escolhida não está entre as permitidas para este utilizador" diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index f6128bf1a34..35c3423e4d4 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 12:59+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Em progresso" #. module: base_action_rule #: view:base.action.rule:0 @@ -71,7 +71,7 @@ msgstr "" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -96,12 +96,12 @@ msgstr "Condições" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Pendente" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 @@ -289,7 +289,7 @@ msgstr "Data de criação" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Última ação" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index e6c50f5a24d..e734735e5b8 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 11:24+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -638,7 +638,7 @@ msgstr "Público para funcionários" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "horas" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -699,7 +699,7 @@ msgstr "Terça-Feira" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiquetas" #. module: base_calendar #: view:calendar.event:0 @@ -733,7 +733,7 @@ msgstr "Deixe que o evento repita automaticamente nesse intervalo de" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Calendário" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -851,7 +851,7 @@ msgstr "Número de repetições" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Reunião interna" #. module: base_calendar #: view:calendar.event:0 @@ -930,7 +930,7 @@ msgstr "Data do evento" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Convites" #. module: base_calendar #: view:calendar.event:0 @@ -1152,7 +1152,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Dia do mês" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1169,7 +1169,7 @@ msgstr "Repetir todos (Dias/semana/Mês/Ano)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "ao" #. module: base_calendar #: view:calendar.event:0 @@ -1292,7 +1292,7 @@ msgstr "Mês" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Dia(s)" #. module: base_calendar #: view:calendar.event:0 @@ -1351,7 +1351,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Tipo de reunião" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1381,7 +1381,7 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Não confirmado" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1433,7 +1433,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Mensagem" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1458,7 +1458,7 @@ msgstr "Abril" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "Endereços de email não encontrados" #. module: base_calendar #: view:calendar.event:0 diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index edee1b8ed1a..9c957a48861 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 12:51+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 @@ -91,6 +91,10 @@ msgid "" "--\n" " Commented on %s by %s." msgstr "" +"%s\n" +"\n" +"--\n" +" Comentado em %s por %s." #. module: base_gengo #: field:ir.translation,gengo_translation:0 @@ -189,11 +193,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"A ligação Gengo falhou com esta mensagem:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Parametros Gengo" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/crm_claim/i18n/pt.po b/addons/crm_claim/i18n/pt.po index 99a150e50b4..38cecf4b2a1 100644 --- a/addons/crm_claim/i18n/pt.po +++ b/addons/crm_claim/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 13:02+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -159,7 +159,7 @@ msgstr "Data de encerramento" #. module: crm_claim #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Falso" #. module: crm_claim #: field:crm.claim,ref:0 @@ -384,7 +384,7 @@ msgstr "Relatório da reclamação CRM" #. module: crm_claim #: view:sale.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: crm_claim #: model:crm.case.resource.type,name:crm_claim.type_claim1 diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index f7497c93a4f..744bbfd2754 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 12:46+0000\n" +"Last-Translator: Alien Group Lda \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -434,6 +434,8 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 @@ -689,7 +691,7 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Instala o módulo hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 @@ -782,7 +784,7 @@ msgstr "Em Posição" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "Instala o módulo hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 @@ -944,7 +946,7 @@ msgstr "O nome do trabalho deve ser único por empresa!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Instala o módulo hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index 559a58c508d..a5bb1d5317c 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/idea/i18n/pt.po b/addons/idea/i18n/pt.po index 3e157e91478..9925575e87e 100644 --- a/addons/idea/i18n/pt.po +++ b/addons/idea/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-16 11:09+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 @@ -135,7 +135,7 @@ msgstr "Recusar" #. module: idea #: field:idea.idea,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: idea #: view:idea.idea:0 @@ -211,7 +211,7 @@ msgstr "" #. module: idea #: view:idea.idea:0 msgid "By Creators" -msgstr "" +msgstr "Por criadores" #. module: idea #: field:idea.idea,message_follower_ids:0 diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po new file mode 100644 index 00000000000..778c68812d2 --- /dev/null +++ b/addons/lunch/i18n/sl.po @@ -0,0 +1,896 @@ +# Slovenian 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-01-16 19:30+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: lunch +#: field:lunch.product,category_id:0 +#: field:lunch.product.category,name:0 +msgid "Category" +msgstr "Kategorija" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_order_by_supplier_form +msgid "Today's Orders by Supplier" +msgstr "" + +#. module: lunch +#: view:lunch.order:0 +msgid "My Orders" +msgstr "" + +#. module: lunch +#: selection:lunch.order,state:0 +msgid "Partially Confirmed" +msgstr "" + +#. module: lunch +#: view:lunch.cashmove:0 +#: view:lunch.order.line:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: lunch +#: field:lunch.alert,sunday:0 +msgid "Sunday" +msgstr "Nedelja" + +#. module: lunch +#: field:lunch.order.line,supplier:0 +#: field:lunch.product,supplier:0 +msgid "Supplier" +msgstr "Dobavitelj" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "Today" +msgstr "Danes" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "March" +msgstr "Marec" + +#. module: lunch +#: view:lunch.cashmove:0 +msgid "By Employee" +msgstr "" + +#. module: lunch +#: field:lunch.alert,friday:0 +msgid "Friday" +msgstr "Petek" + +#. module: lunch +#: view:lunch.validation:0 +msgid "validate order lines" +msgstr "" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "Order lines Tree" +msgstr "" + +#. module: lunch +#: field:lunch.alert,specific_day:0 +#: field:report.lunch.order.line,day:0 +msgid "Day" +msgstr "Dan" + +#. module: lunch +#: view:lunch.order.line:0 +#: selection:lunch.order.line,state:0 +msgid "Received" +msgstr "Prejeto" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "By Supplier" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_order_tree +msgid "" +"

\n" +" Click to create a lunch order. \n" +"

\n" +"

\n" +" A lunch order is defined by its user, date and order lines.\n" +" Each order line corresponds to a product, an additional note " +"and a price.\n" +" Before selecting your order lines, don't forget to read the " +"warnings displayed in the reddish area.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "Not Received" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_order_by_supplier_form +#: model:ir.ui.menu,name:lunch.menu_lunch_control_suppliers +msgid "Orders by Supplier" +msgstr "" + +#. module: lunch +#: view:lunch.validation:0 +msgid "Receive Meals" +msgstr "" + +#. module: lunch +#: view:lunch.cashmove:0 +msgid "cashmove form" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_cashmove_form +msgid "" +"

\n" +" Here you can see your cash moves.
A cash moves can be " +"either an expense or a payment.\n" +" An expense is automatically created when an order is " +"received while a payment is a reimbursement to the company encoded by the " +"manager.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: field:lunch.cashmove,amount:0 +msgid "Amount" +msgstr "Znesek" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_products +#: model:ir.ui.menu,name:lunch.menu_lunch_products +#: field:lunch.order,order_line_ids:0 +msgid "Products" +msgstr "Izdelki" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "By Date" +msgstr "Po datumu" + +#. module: lunch +#: selection:lunch.order,state:0 +#: view:lunch.order.line:0 +#: selection:lunch.order.line,state:0 +msgid "Cancelled" +msgstr "Preklicano" + +#. module: lunch +#: view:lunch.cashmove:0 +msgid "lunch employee payment" +msgstr "" + +#. module: lunch +#: view:lunch.alert:0 +msgid "alert tree" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_report_lunch_order_line +msgid "Lunch Orders Statistics" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_alert +msgid "Lunch Alert" +msgstr "" + +#. module: lunch +#: code:addons/lunch/lunch.py:183 +#, python-format +msgid "Select a product and put your order comments on the note." +msgstr "" + +#. module: lunch +#: selection:lunch.alert,alter_type:0 +msgid "Every Week" +msgstr "Vsak teden" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_cashmove +msgid "Register Cash Moves" +msgstr "" + +#. module: lunch +#: selection:lunch.order,state:0 +msgid "Confirmed" +msgstr "Potrjeno" + +#. module: lunch +#: view:lunch.order:0 +msgid "lunch orders" +msgstr "" + +#. module: lunch +#: view:lunch.order.line:0 +msgid "Confirm" +msgstr "Potrdi" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_cashmove_form +msgid "Your Account" +msgstr "" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form +msgid "Your Lunch Account" +msgstr "" + +#. module: lunch +#: field:lunch.alert,active_from:0 +msgid "Between" +msgstr "Med" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_order_order +msgid "Wizard to order a meal" +msgstr "" + +#. module: lunch +#: selection:lunch.order,state:0 +#: selection:lunch.order.line,state:0 +msgid "New" +msgstr "Novo" + +#. module: lunch +#: code:addons/lunch/lunch.py:180 +#, python-format +msgid "This is the first time you order a meal" +msgstr "" + +#. module: lunch +#: field:report.lunch.order.line,price_total:0 +msgid "Total Price" +msgstr "Skupna cena" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_validation +msgid "lunch validation for order" +msgstr "" + +#. module: lunch +#: report:lunch.order.line:0 +msgid "Name/Date" +msgstr "" + +#. module: lunch +#: report:lunch.order.line:0 +msgid "Total :" +msgstr "Skupaj:" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "July" +msgstr "Julij" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_config +msgid "Configuration" +msgstr "Prilagoditev" + +#. module: lunch +#: field:lunch.order,state:0 +#: field:lunch.order.line,state:0 +msgid "Status" +msgstr "Status" + +#. module: lunch +#: view:lunch.order.order:0 +msgid "" +"Order a meal doesn't mean that we have to pay it.\n" +" A meal should be paid when it is received." +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts +#: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts +msgid "Control Accounts" +msgstr "" + +#. module: lunch +#: selection:lunch.alert,alter_type:0 +msgid "Every Day" +msgstr "Vsak dan" + +#. module: lunch +#: field:lunch.order.line,cashmove:0 +msgid "Cash Move" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.order_order_lines +msgid "Order meals" +msgstr "" + +#. module: lunch +#: view:lunch.alert:0 +msgid "Schedule Hour" +msgstr "" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "September" +msgstr "September" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_control_suppliers +msgid "" +"

\n" +" Here you can see every orders grouped by suppliers and by " +"date.\n" +"

\n" +"

\n" +" - Click on the to announce " +"that the order is ordered
\n" +" - Click on the to announce that " +"the order is received
\n" +" - Click on the red X to announce " +"that the order isn't available\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: field:lunch.alert,tuesday:0 +msgid "Tuesday" +msgstr "Torek" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_order_tree +msgid "Your Orders" +msgstr "Vaša naročila" + +#. module: lunch +#: field:report.lunch.order.line,month:0 +msgid "Month" +msgstr "Mesec" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_products +msgid "" +"

\n" +" Click to create a product for lunch. \n" +"

\n" +"

\n" +" A product is defined by its name, category, price and " +"supplier.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: view:lunch.alert:0 +#: field:lunch.alert,message:0 +msgid "Message" +msgstr "Sporočilo" + +#. module: lunch +#: view:lunch.order.order:0 +msgid "Order Meals" +msgstr "" + +#. module: lunch +#: view:lunch.cancel:0 +#: view:lunch.order.order:0 +#: view:lunch.validation:0 +msgid "or" +msgstr "ali" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_product_categories +msgid "" +"

\n" +" Click to create a lunch category. \n" +"

\n" +"

\n" +" Here you can find every lunch categories for products.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: view:lunch.order.order:0 +msgid "Order meal" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_product_categories +#: model:ir.ui.menu,name:lunch.menu_lunch_product_categories +msgid "Product Categories" +msgstr "Skupine izdelkov" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_control_suppliers +msgid "Control Suppliers" +msgstr "" + +#. module: lunch +#: view:lunch.alert:0 +msgid "Schedule Date" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_alert +#: model:ir.ui.menu,name:lunch.menu_lunch_alert +#: field:lunch.order,alerts:0 +msgid "Alerts" +msgstr "Opozorila" + +#. module: lunch +#: field:lunch.order.line,note:0 +#: field:report.lunch.order.line,note:0 +msgid "Note" +msgstr "Zapisek" + +#. module: lunch +#: code:addons/lunch/lunch.py:250 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: lunch +#: view:lunch.product:0 +#: view:lunch.product.category:0 +msgid "Products Form" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.cancel_order_lines +msgid "Cancel meals" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_cashmove +#: view:lunch.cashmove:0 +msgid "lunch cashmove" +msgstr "" + +#. module: lunch +#: view:lunch.cancel:0 +msgid "Are you sure you want to cancel these meals?" +msgstr "" + +#. module: lunch +#: view:lunch.cashmove:0 +msgid "My Account" +msgstr "Moj račun" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "August" +msgstr "Avgust" + +#. module: lunch +#: field:lunch.alert,monday:0 +msgid "Monday" +msgstr "Ponedeljek" + +#. module: lunch +#: field:lunch.order.line,name:0 +msgid "unknown" +msgstr "neznano" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.validate_order_lines +msgid "Receive meals" +msgstr "" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "June" +msgstr "Junij" + +#. module: lunch +#: field:lunch.cashmove,user_id:0 +#: field:lunch.order,user_id:0 +#: field:report.lunch.order.line,user_id:0 +msgid "User Name" +msgstr "Uporabniško ime" + +#. module: lunch +#: model:ir.module.category,name:lunch.module_lunch_category +#: model:ir.ui.menu,name:lunch.menu_lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_title +msgid "Lunch" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_order_line +msgid "lunch order line" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_product +msgid "lunch product" +msgstr "" + +#. module: lunch +#: field:lunch.order.line,user_id:0 +#: model:res.groups,name:lunch.group_lunch_user +msgid "User" +msgstr "Uporabnik" + +#. module: lunch +#: field:lunch.cashmove,date:0 +#: field:lunch.order,date:0 +#: field:lunch.order.line,date:0 +msgid "Date" +msgstr "Datum" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "November" +msgstr "November" + +#. module: lunch +#: view:lunch.order:0 +msgid "Orders Tree" +msgstr "" + +#. module: lunch +#: view:lunch.order:0 +msgid "Orders Form" +msgstr "" + +#. module: lunch +#: view:lunch.alert:0 +#: view:lunch.order.line:0 +msgid "Search" +msgstr "Iskanje" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "October" +msgstr "Oktober" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_order_by_supplier_form +msgid "" +"

\n" +" Here you can see today's orders grouped by suppliers.\n" +"

\n" +"

\n" +" - Click on the to announce " +"that the order is ordered
\n" +" - Click on the to announce that " +"the order is received
\n" +" - Click on the to announce that " +"the order isn't available\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "January" +msgstr "Januar" + +#. module: lunch +#: selection:lunch.alert,alter_type:0 +msgid "Specific Day" +msgstr "" + +#. module: lunch +#: field:lunch.alert,wednesday:0 +msgid "Wednesday" +msgstr "Sreda" + +#. module: lunch +#: view:lunch.product.category:0 +msgid "Product Category: " +msgstr "" + +#. module: lunch +#: field:lunch.alert,active_to:0 +msgid "And" +msgstr "In" + +#. module: lunch +#: selection:lunch.order.line,state:0 +msgid "Ordered" +msgstr "Naročeno" + +#. module: lunch +#: field:report.lunch.order.line,date:0 +msgid "Date Order" +msgstr "Datum naročila" + +#. module: lunch +#: view:lunch.cancel:0 +msgid "Cancel Orders" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_alert +msgid "" +"

\n" +" Click to create a lunch alert. \n" +"

\n" +"

\n" +" Alerts are used to warn employee from possible issues " +"concerning the lunch orders.\n" +" To create a lunch alert you have to define its recurrency, " +"the time interval during which the alert should be executed and the message " +"to display.\n" +"

\n" +"

\n" +" Example:
\n" +" - Recurency: Everyday
\n" +" - Time interval: from 00h00 am to 11h59 pm
\n" +" - Message: \"You must order before 10h30 am\"\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: view:lunch.cancel:0 +msgid "A cancelled meal should not be paid by employees." +msgstr "" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_cash +msgid "Administrate Cash Moves" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_cancel +msgid "cancel lunch order" +msgstr "" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "December" +msgstr "December" + +#. module: lunch +#: view:lunch.cancel:0 +#: view:lunch.order.line:0 +#: view:lunch.order.order:0 +#: view:lunch.validation:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_cashmove +msgid "" +"

\n" +" Click to create a payment. \n" +"

\n" +"

\n" +" Here you can see the employees' payment. A payment is a cash " +"move from the employee to the company.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: code:addons/lunch/lunch.py:186 +#, python-format +msgid "Your favorite meals will be created based on your last orders." +msgstr "" + +#. module: lunch +#: model:ir.module.category,description:lunch.module_lunch_category +msgid "" +"Helps you handle your lunch needs, if you are a manager you will be able to " +"create new products, cashmoves and to confirm or cancel orders." +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,help:lunch.action_lunch_control_accounts +msgid "" +"

\n" +" Click to create a new payment. \n" +"

\n" +"

\n" +" A cashmove can either be an expense or a payment.
\n" +" An expense is automatically created at the order " +"receipt.
\n" +" A payment represents the employee reimbursement to the " +"company.\n" +"

\n" +" " +msgstr "" + +#. module: lunch +#: field:lunch.alert,alter_type:0 +msgid "Recurrency" +msgstr "" + +#. module: lunch +#: code:addons/lunch/lunch.py:189 +#, python-format +msgid "Don't forget the alerts displayed in the reddish area" +msgstr "" + +#. module: lunch +#: field:lunch.alert,thursday:0 +msgid "Thursday" +msgstr "Četrtek" + +#. module: lunch +#: report:lunch.order.line:0 +msgid "Unit Price" +msgstr "Cena enote" + +#. module: lunch +#: field:lunch.order.line,product_id:0 +#: field:lunch.product,name:0 +msgid "Product" +msgstr "Izdelek" + +#. module: lunch +#: field:lunch.cashmove,description:0 +#: report:lunch.order.line:0 +#: field:lunch.product,description:0 +msgid "Description" +msgstr "Opis" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "May" +msgstr "Maj" + +#. module: lunch +#: field:lunch.order.line,price:0 +#: field:lunch.product,price:0 +msgid "Price" +msgstr "Cena" + +#. module: lunch +#: field:lunch.cashmove,state:0 +msgid "Is an order or a Payment" +msgstr "" + +#. module: lunch +#: model:ir.actions.act_window,name:lunch.action_lunch_order_form +#: model:ir.ui.menu,name:lunch.menu_lunch_order_form +msgid "New Order" +msgstr "Novo naročilo" + +#. module: lunch +#: view:lunch.cashmove:0 +msgid "cashmove tree" +msgstr "" + +#. module: lunch +#: view:lunch.cancel:0 +msgid "Cancel a meal means that we didn't receive it from the supplier." +msgstr "" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_cashmove +msgid "Employee Payments" +msgstr "" + +#. module: lunch +#: view:lunch.cashmove:0 +#: selection:lunch.cashmove,state:0 +msgid "Payment" +msgstr "Plačilo" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "February" +msgstr "Februar" + +#. module: lunch +#: field:report.lunch.order.line,year:0 +msgid "Year" +msgstr "Leto" + +#. module: lunch +#: view:lunch.order:0 +msgid "List" +msgstr "Seznam" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_admin +msgid "Administrate Orders" +msgstr "" + +#. module: lunch +#: selection:report.lunch.order.line,month:0 +msgid "April" +msgstr "April" + +#. module: lunch +#: view:lunch.order:0 +msgid "Select your order" +msgstr "" + +#. module: lunch +#: field:lunch.cashmove,order_id:0 +#: selection:lunch.cashmove,state:0 +#: report:lunch.order.line:0 +#: view:lunch.order.line:0 +#: field:lunch.order.line,order_id:0 +msgid "Order" +msgstr "Naročilo" + +#. module: lunch +#: model:ir.actions.report.xml,name:lunch.report_lunch_order +#: model:ir.model,name:lunch.model_lunch_order +#: report:lunch.order.line:0 +msgid "Lunch Order" +msgstr "" + +#. module: lunch +#: view:lunch.order.order:0 +msgid "Are you sure you want to order these meals?" +msgstr "" + +#. module: lunch +#: view:lunch.cancel:0 +msgid "cancel order lines" +msgstr "" + +#. module: lunch +#: model:ir.model,name:lunch.model_lunch_product_category +msgid "lunch product category" +msgstr "" + +#. module: lunch +#: field:lunch.alert,saturday:0 +msgid "Saturday" +msgstr "Sobota" + +#. module: lunch +#: model:res.groups,name:lunch.group_lunch_manager +msgid "Manager" +msgstr "Vodja" + +#. module: lunch +#: view:lunch.validation:0 +msgid "Did your received these meals?" +msgstr "" + +#. module: lunch +#: view:lunch.validation:0 +msgid "Once a meal is received a new cash move is created for the employee." +msgstr "" + +#. module: lunch +#: view:lunch.product:0 +msgid "Products Tree" +msgstr "" + +#. module: lunch +#: view:lunch.cashmove:0 +#: view:lunch.order:0 +#: field:lunch.order,total:0 +#: view:lunch.order.line:0 +msgid "Total" +msgstr "Skupaj" + +#. module: lunch +#: model:ir.ui.menu,name:lunch.menu_lunch_order_tree +msgid "Previous Orders" +msgstr "Prejšnja naročila" diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 0c40f306819..9458f991658 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index 2a7e96a4048..4da39064810 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index 9f10e8ce12a..868e9d67c93 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po new file mode 100644 index 00000000000..4ed4dc97b1c --- /dev/null +++ b/addons/note/i18n/sl.po @@ -0,0 +1,282 @@ +# Slovenian 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-01-16 19:36+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: note +#: field:note.note,memo:0 +msgid "Note Content" +msgstr "" + +#. module: note +#: view:note.stage:0 +msgid "Stages of Notes" +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_04 +#: model:note.stage,name:note.note_stage_02 +msgid "This Week" +msgstr "Ta teden" + +#. module: note +#: model:ir.model,name:note.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: note +#: model:ir.model,name:note.model_note_tag +msgid "Note Tag" +msgstr "" + +#. module: note +#: model:res.groups,name:note.group_note_fancy +msgid "Notes / Fancy mode" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_note_note +#: view:note.note:0 +msgid "Note" +msgstr "Zapisek" + +#. module: note +#: view:note.note:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: note +#: field:note.note,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: note +#: model:ir.actions.act_window,help:note.action_note_note +msgid "" +"

\n" +" Click to add a personal note.\n" +"

\n" +" Use notes to organize personal tasks or notes. All\n" +" notes are private; no one else will be able to see them. " +"However\n" +" you can share some notes with other people by inviting " +"followers\n" +" on the note. (Useful for meeting minutes, especially if\n" +" you activate the pad feature for collaborative writings).\n" +"

\n" +" You can customize how you process your notes/tasks by adding,\n" +" removing or modifying columns.\n" +"

\n" +" " +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_01 +#: model:note.stage,name:note.note_stage_01 +msgid "Today" +msgstr "Danes" + +#. module: note +#: model:ir.model,name:note.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: note +#: view:note.note:0 +msgid "í" +msgstr "í" + +#. module: note +#: view:note.stage:0 +msgid "Stage of Notes" +msgstr "" + +#. module: note +#: field:note.note,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: note +#: field:note.note,current_partner_id:0 +msgid "unknown" +msgstr "neznano" + +#. module: note +#: view:note.note:0 +msgid "By sticky note Category" +msgstr "" + +#. module: note +#: help:note.note,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." + +#. module: note +#: field:note.stage,name:0 +msgid "Stage Name" +msgstr "Ime faze" + +#. module: note +#: field:note.note,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_02 +msgid "Tomorrow" +msgstr "Jutri" + +#. module: note +#: view:note.note:0 +#: field:note.note,open:0 +msgid "Active" +msgstr "Aktivno" + +#. module: note +#: help:note.stage,user_id:0 +msgid "Owner of the note stage." +msgstr "" + +#. module: note +#: model:ir.ui.menu,name:note.menu_notes_stage +msgid "Categories" +msgstr "Skupine" + +#. module: note +#: view:note.note:0 +#: field:note.note,stage_id:0 +msgid "Stage" +msgstr "Faza" + +#. module: note +#: field:note.tag,name:0 +msgid "Tag Name" +msgstr "" + +#. module: note +#: field:note.note,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: note +#: view:base.config.settings:0 +#: model:ir.actions.act_window,name:note.action_note_note +#: model:ir.ui.menu,name:note.menu_note_notes +#: view:note.note:0 +#: model:note.stage,name:note.note_stage_04 +msgid "Notes" +msgstr "Zapiski" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_03 +#: model:note.stage,name:note.note_stage_03 +msgid "Later" +msgstr "Pozneje" + +#. module: note +#: model:ir.model,name:note.model_note_stage +msgid "Note Stage" +msgstr "Faza zapiska" + +#. module: note +#: field:note.note,message_summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: note +#: field:note.note,stage_ids:0 +msgid "Stages of Users" +msgstr "" + +#. module: note +#: field:note.note,name:0 +msgid "Note Summary" +msgstr "" + +#. module: note +#: model:ir.actions.act_window,name:note.action_note_stage +#: view:note.note:0 +msgid "Stages" +msgstr "Faze" + +#. module: note +#: help:note.note,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in zgodovina sporočil" + +#. module: note +#: view:note.note:0 +msgid "Delete" +msgstr "Izbriši" + +#. module: note +#: field:note.note,color:0 +msgid "Color Index" +msgstr "Barvvni index" + +#. module: note +#: field:note.note,sequence:0 +#: field:note.stage,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: note +#: field:note.note,tag_ids:0 +msgid "Tags" +msgstr "Ključne besede" + +#. module: note +#: view:note.note:0 +msgid "Archive" +msgstr "Arhiviraj" + +#. module: note +#: field:base.config.settings,module_note_pad:0 +msgid "Use collaborative pads (etherpad)" +msgstr "" + +#. module: note +#: help:note.note,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: note +#: field:base.config.settings,group_note_fancy:0 +msgid "Use fancy layouts for notes" +msgstr "" + +#. module: note +#: field:note.stage,user_id:0 +msgid "Owner" +msgstr "" + +#. module: note +#: help:note.stage,sequence:0 +msgid "Used to order the note stages" +msgstr "" + +#. module: note +#: field:note.note,date_done:0 +msgid "Date done" +msgstr "" + +#. module: note +#: field:note.stage,fold:0 +msgid "Folded by Default" +msgstr "" diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po new file mode 100644 index 00000000000..4e71595be88 --- /dev/null +++ b/addons/project_issue/i18n/sl.po @@ -0,0 +1,984 @@ +# Slovenian 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-01-16 19:50+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_03 +msgid "Deadly bug" +msgstr "" + +#. module: project_issue +#: help:project.config.settings,fetchmail_issue:0 +msgid "" +"Allows you to configure your incoming mail server, and create issues from " +"incoming emails." +msgstr "" + +#. module: project_issue +#: field:project.issue.report,delay_open:0 +msgid "Avg. Delay to Open" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: project_issue +#: field:project.issue,working_hours_open:0 +msgid "Working Hours to Open the Issue" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_started +msgid "Issue started" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_open:0 +msgid "Opened" +msgstr "Odprto" + +#. module: project_issue +#: field:project.issue.report,opening_date:0 +msgid "Date of Opening" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "March" +msgstr "Marec" + +#. module: project_issue +#: field:project.issue,progress:0 +msgid "Progress (%)" +msgstr "Potek (%)" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: project_issue +#: field:project.issue,company_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,company_id:0 +msgid "Company" +msgstr "Podjetje" + +#. module: project_issue +#: field:project.issue,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: project_issue +#: help:project.issue,kanban_state:0 +msgid "" +"A Issue's kanban state indicates special situations affecting it:\n" +" * Normal is the default situation\n" +" * Blocked indicates something is preventing the progress of this issue\n" +" * Ready for next stage indicates the issue is ready to be pulled to the " +"next stage" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." + +#. module: project_issue +#: help:account.analytic.account,use_issues:0 +msgid "Check this field if this project manages issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:465 +#, python-format +msgid "" +"You cannot escalate this issue.\n" +"The relevant Project has not configured the Escalation Project!" +msgstr "" + +#. module: project_issue +#: constraint:project.project:0 +msgid "Error! You cannot assign escalation to the same project!" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Highest" +msgstr "Najvišja" + +#. module: project_issue +#: help:project.issue,inactivity_days:0 +msgid "Difference in days between last action and current date" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,day:0 +msgid "Day" +msgstr "Dan" + +#. module: project_issue +#: field:project.issue,days_since_creation:0 +msgid "Days since creation date" +msgstr "" + +#. module: project_issue +#: field:project.issue,task_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,task_id:0 +msgid "Task" +msgstr "Naloga" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_project_issue_stage +msgid "Issue Stage Changed" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: project_issue +#: field:project.issue,inactivity_days:0 +msgid "Days since last action" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_project +#: view:project.issue:0 +#: field:project.issue,project_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,project_id:0 +msgid "Project" +msgstr "Projekt" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 +msgid "" +"

\n" +" Click to report a new issue.\n" +"

\n" +" The OpenERP issues tacker allows you to efficiantly manage " +"things\n" +" like internal requests, software development bugs, customer\n" +" complaints, project troubles, material breakdowns, etc.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: selection:project.issue.report,state:0 +msgid "Cancelled" +msgstr "Preklicano" + +#. module: project_issue +#: field:project.issue,description:0 +msgid "Private Note" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,date_closed:0 +msgid "Date of Closing" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Search" +msgstr "" + +#. module: project_issue +#: field:project.issue,color:0 +msgid "Color Index" +msgstr "Barvvni index" + +#. module: project_issue +#: field:project.issue.report,working_hours_open:0 +msgid "Avg. Working Hours to Open" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_account_analytic_account +msgid "Analytic Account" +msgstr "Analitični konto" + +#. module: project_issue +#: help:project.issue,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: project_issue +#: help:project.project,project_escalation_id:0 +msgid "" +"If any issue is escalated from the current Project, it will be listed under " +"the project selected here." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Extra Info" +msgstr "Dodatne informacije" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Edit..." +msgstr "Urejanje ..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Responsible" +msgstr "Odgovoren" + +#. module: project_issue +#: view:project.issue:0 +msgid "Statistics" +msgstr "Statistike" + +#. module: project_issue +#: field:project.issue,kanban_state:0 +msgid "Kanban State" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:360 +#, python-format +msgid "Project issue converted to task." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,priority:0 +#: view:project.issue.report:0 +#: field:project.issue.report,priority:0 +msgid "Priority" +msgstr "Prioriteta" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,version_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,version_id:0 +msgid "Version" +msgstr "Različica" + +#. module: project_issue +#: field:project.issue,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "New" +msgstr "Novo" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action +msgid "Issue Categories" +msgstr "" + +#. module: project_issue +#: field:project.issue,email_from:0 +msgid "Email" +msgstr "Elektronska pošta" + +#. module: project_issue +#: field:project.issue,channel_id:0 +#: field:project.issue.report,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Lowest" +msgstr "Najnižja" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:382 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopija)" + +#. module: project_issue +#: view:project.issue:0 +msgid "Unassigned Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,create_date:0 +#: view:project.issue.report:0 +#: field:project.issue.report,creation_date:0 +msgid "Creation Date" +msgstr "Ustvarjeno dne" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_version_action +#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act +msgid "Versions" +msgstr "Različice" + +#. module: project_issue +#: view:project.issue:0 +msgid "To Do Issues" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_version +msgid "project.issue.version" +msgstr "project.issue.version" + +#. module: project_issue +#: field:project.config.settings,fetchmail_issue:0 +msgid "Create issues from an incoming email account " +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "Done" +msgstr "Končano" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "July" +msgstr "Julij" + +#. module: project_issue +#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act +msgid "Categories" +msgstr "Skupine" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,stage_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,stage_id:0 +msgid "Stage" +msgstr "Faza" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_project_issue_report +#: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree +#: view:project.issue.report:0 +msgid "Issues Analysis" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:485 +#, python-format +msgid "No Subject" +msgstr "Ni zadeve" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree +msgid "My Project Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,partner_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,partner_id:0 +msgid "Contact" +msgstr "Stik" + +#. module: project_issue +#: view:project.issue:0 +msgid "Delete" +msgstr "Briši" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:365 +#, python-format +msgid "Tasks" +msgstr "Naloge" + +#. module: project_issue +#: field:project.issue.report,nbr:0 +msgid "# of Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "September" +msgstr "September" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "December" +msgstr "December" + +#. module: project_issue +#: field:project.issue,categ_ids:0 +msgid "Tags" +msgstr "Ključne besede" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Tree" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_01 +msgid "Little problem" +msgstr "" + +#. module: project_issue +#: view:project.project:0 +msgid "creates" +msgstr "" + +#. module: project_issue +#: model:crm.case.categ,name:project_issue.feature_request_categ +msgid "Feature Requests" +msgstr "" + +#. module: project_issue +#: field:project.issue,write_date:0 +msgid "Update Date" +msgstr "Datum posodobitve" + +#. module: project_issue +#: view:project.issue:0 +msgid "Project:" +msgstr "Projekt:" + +#. module: project_issue +#: view:project.issue:0 +msgid "Open Features" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_action_next:0 +msgid "Next Action" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Blocked" +msgstr "Blokirano" + +#. module: project_issue +#: field:project.issue,user_email:0 +msgid "User Email" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Number of Project Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue,channel_id:0 +msgid "Communication channel." +msgstr "" + +#. module: project_issue +#: help:project.issue,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: project_issue +#: model:crm.case.categ,name:project_issue.bug_categ +msgid "Maintenance" +msgstr "Vzdrževanje" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Draft" +msgstr "Osnutek" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Low" +msgstr "Nizka" + +#. module: project_issue +#: field:project.issue,date_closed:0 +#: selection:project.issue.report,state:0 +msgid "Closed" +msgstr "Zaprto" + +#. module: project_issue +#: field:project.issue.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +#: selection:project.issue.report,state:0 +msgid "Pending" +msgstr "Na čakanju" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,state:0 +#: field:project.issue.report,state:0 +msgid "Status" +msgstr "Status" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Project Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "August" +msgstr "Avgust" + +#. module: project_issue +#: selection:project.issue,kanban_state:0 +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Normal" +msgstr "Običajno" + +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "unknown" +msgstr "neznano" + +#. module: project_issue +#: view:project.issue:0 +msgid "Category:" +msgstr "Skupina:" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "June" +msgstr "Junij" + +#. module: project_issue +#: help:project.issue,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in zgodovina sporočil" + +#. module: project_issue +#: view:project.issue:0 +msgid "New Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: project_issue +#: help:project.issue,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: project_issue +#: field:project.issue,active:0 +#: field:project.issue.version,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "November" +msgstr "November" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:465 +#, python-format +msgid "Warning!" +msgstr "Opozorilo!" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "Search" +msgstr "Iskanje" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" + +#. module: project_issue +#: help:project.issue,days_since_creation:0 +msgid "Difference in days between creation date and current date" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "January" +msgstr "Januar" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Tree" +msgstr "" + +#. module: project_issue +#: help:project.issue,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: project_issue +#: field:project.issue,message_summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: project_issue +#: field:project.issue,date:0 +msgid "Date" +msgstr "Datum" + +#. module: project_issue +#: field:project.issue,user_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,user_id:0 +msgid "Assigned to" +msgstr "Dodeljeno k" + +#. module: project_issue +#: view:project.config.settings:0 +msgid "Configure" +msgstr "Nastavitve" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_closed +msgid "Issue closed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Current Features" +msgstr "" + +#. module: project_issue +#: view:project.issue.version:0 +msgid "Issue Version" +msgstr "" + +#. module: project_issue +#: field:project.issue.version,name:0 +msgid "Version Number" +msgstr "Številka različice" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Open" +msgstr "Odprto" + +#. module: project_issue +#: field:account.analytic.account,use_issues:0 +#: model:ir.actions.act_window,name:project_issue.act_project_project_2_project_issue_all +#: model:ir.actions.act_window,name:project_issue.project_issue_categ_act0 +#: model:ir.ui.menu,name:project_issue.menu_project_confi +#: model:ir.ui.menu,name:project_issue.menu_project_issue_track +#: view:project.issue:0 +#: view:project.project:0 +msgid "Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +msgid "In Progress" +msgstr "V teku" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "To Do" +msgstr "Opravila" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue +#: view:project.issue.report:0 +msgid "Project Issue" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" + +#. module: project_issue +#: help:project.issue,progress:0 +msgid "Computed as: Time Spent / Total Time." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Ready for next stage" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,section_id:0 +msgid "Sale Team" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +#: field:project.issue.report,month:0 +msgid "Month" +msgstr "Mesec" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,name:0 +#: view:project.project:0 +msgid "Issue" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_02 +msgid "PBCK" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Search" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Description" +msgstr "Opis" + +#. module: project_issue +#: field:project.issue,section_id:0 +msgid "Sales Team" +msgstr "Prodajna ekipa" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "May" +msgstr "Maj" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_config_settings +msgid "project.config.settings" +msgstr "project.config.settings" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_closed +#: model:mail.message.subtype,name:project_issue.mt_project_issue_closed +msgid "Issue Closed" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_new +#: model:mail.message.subtype,name:project_issue.mt_project_issue_new +msgid "Issue Created" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "February" +msgstr "Februar" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_stage +#: model:mail.message.subtype,description:project_issue.mt_project_issue_stage +msgid "Stage changed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature description" +msgstr "" + +#. module: project_issue +#: field:project.project,project_escalation_id:0 +msgid "Project Escalation" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_version_action +msgid "" +"

\n" +" Click to add a new version.\n" +"

\n" +" Define here the different versions of your products on " +"which\n" +" you can work on issues.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: help:project.issue,section_id:0 +msgid "" +"Sales team to which Case belongs to. Define " +"Responsible user and Email account for mail gateway." +msgstr "" + +#. module: project_issue +#: view:board.board:0 +msgid "My Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue.report,delay_open:0 +msgid "Number of Days to open the project issue." +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "April" +msgstr "April" + +#. module: project_issue +#: view:project.issue:0 +msgid "⇒ Escalate" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "References" +msgstr "Reference" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_new +msgid "Issue created" +msgstr "" + +#. module: project_issue +#: field:project.issue,working_hours_close:0 +msgid "Working Hours to Close the Issue" +msgstr "" + +#. module: project_issue +#: field:project.issue,id:0 +msgid "ID" +msgstr "ID" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_blocked +msgid "Issue blocked" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_report +msgid "project.issue.report" +msgstr "project.issue.report" + +#. module: project_issue +#: help:project.issue.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,working_hours_close:0 +msgid "Avg. Working Hours to Close" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_stage +msgid "Stage Changed" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "High" +msgstr "Visoka" + +#. module: project_issue +#: field:project.issue,date_deadline:0 +msgid "Deadline" +msgstr "Rok" + +#. module: project_issue +#: field:project.issue,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,name:0 +msgid "Year" +msgstr "Leto" + +#. module: project_issue +#: field:project.issue,duration:0 +msgid "Duration" +msgstr "Trajanje" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_started +#: model:mail.message.subtype,name:project_issue.mt_project_issue_started +msgid "Issue Started" +msgstr "" diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 198cb4e97ef..065a18adda4 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 From e2639618f666605e385befb578db3f889a8c035f Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Thu, 17 Jan 2013 10:27:22 +0100 Subject: [PATCH 11/72] [DOC] remove openerpdev intersphinx, add ref to module doc bzr revid: xmo@openerp.com-20130117092722-6rfhkcu4igrgeo06 --- addons/web/doc/conf.py | 1 - addons/web/doc/module.rst | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/web/doc/conf.py b/addons/web/doc/conf.py index 54434190707..7fe38022ab1 100644 --- a/addons/web/doc/conf.py +++ b/addons/web/doc/conf.py @@ -253,6 +253,5 @@ todo_include_todos = True intersphinx_mapping = { 'python': ('http://docs.python.org/', None), 'openerpserver': ('http://doc.openerp.com/trunk/developers/server', None), - 'openerpdev': ('http://doc.openerp.com/trunk/developers', None), 'openerpcommand': ('http://doc.openerp.com/trunk/developers/command', None), } diff --git a/addons/web/doc/module.rst b/addons/web/doc/module.rst index 1bdb7c14799..8306e885f65 100644 --- a/addons/web/doc/module.rst +++ b/addons/web/doc/module.rst @@ -1,3 +1,5 @@ +.. _module: + Building an OpenERP Web module ============================== From 3574038ffdf78e8c63430ecc92a4f2d916207fda Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 17 Jan 2013 14:29:24 +0100 Subject: [PATCH 12/72] [FIX] apps: install_from_url: fix install condition + better logging bzr revid: chs@openerp.com-20130117132924-ejzbkh5przqi6hwf --- openerp/addons/base/module/module.py | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/openerp/addons/base/module/module.py b/openerp/addons/base/module/module.py index 9e8b68451c5..123bf4124ed 100644 --- a/openerp/addons/base/module/module.py +++ b/openerp/addons/base/module/module.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2012 OpenERP S.A. (). +# Copyright (C) 2004-2013 OpenERP S.A. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -656,6 +656,7 @@ class module(osv.osv): def install_from_urls(self, cr, uid, urls, context=None): OPENERP = 'openerp' tmp = tempfile.mkdtemp() + _logger.debug('Install from url: %r', urls) try: # 1. Download & unzip missing modules for module_name, url in urls.items(): @@ -672,12 +673,13 @@ class module(osv.osv): zipfile.ZipFile(StringIO(content)).extractall(tmp) assert os.path.isdir(os.path.join(tmp, module_name)) - # 2a. Copy/Replace module source in addons path + # 2a. Copy/Replace module source in addons path for module_name, url in urls.items(): if module_name == OPENERP or not url: continue # OPENERP is special case, handled below, and no URL means local module module_path = modules.get_module_path(module_name, downloaded=True, display_warning=False) bck = backup(module_path, False) + _logger.info('Copy downloaded module `%s` to `%s`', module_name, module_path) shutil.move(os.path.join(tmp, module_name), module_path) if bck: shutil.rmtree(bck) @@ -697,15 +699,22 @@ class module(osv.osv): # then replace the server by the new "base" module server_dir = openerp.tools.config['root_path'] # XXX or dirname() bck = backup(server_dir) + _logger.info('Copy downloaded module `openerp` to `%s`', server_dir) shutil.move(os.path.join(tmp, OPENERP), server_dir) #if bck: # shutil.rmtree(bck) self.update_list(cr, uid, context=context) - ids = self.search(cr, uid, [('name', 'in', urls.keys())], context=context) - if self.search_count(cr, uid, [('id', 'in', ids), ('state', '=', 'installed')], context=context): - # if any to update + with_urls = [m for m, u in urls.items() if u] + downloaded_ids = self.search(cr, uid, [('name', 'in', with_urls)], context=context) + already_installed = self.search(cr, uid, [('id', 'in', downloaded_ids), ('state', '=', 'installed')], context=context) + + to_install_ids = self.search(cr, uid, [('name', 'in', urls.keys()), ('state', '=', 'uninstalled')], context=context) + post_install_action = self.button_immediate_install(cr, uid, to_install_ids, context=context) + + if already_installed: + # in this case, force server restart to reload python code... cr.commit() openerp.service.restart_server() return { @@ -713,7 +722,7 @@ class module(osv.osv): 'tag': 'home', 'params': {'wait': True}, } - return self.button_immediate_install(cr, uid, ids, context=context) + return post_install_action finally: shutil.rmtree(tmp) From 4857a8a020d81ebd375122fb478726103c3f2393 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 17 Jan 2013 14:51:08 +0100 Subject: [PATCH 13/72] [FIX] module loading: call adapt_version() instead of computing it ourself bzr revid: chs@openerp.com-20130117135108-a4wt4wtbtfdwiui3 --- openerp/modules/loading.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/openerp/modules/loading.py b/openerp/modules/loading.py index fb68642f137..638a40c9fa8 100644 --- a/openerp/modules/loading.py +++ b/openerp/modules/loading.py @@ -3,7 +3,7 @@ # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). -# Copyright (C) 2010-2012 OpenERP s.a. (). +# Copyright (C) 2010-2013 OpenERP s.a. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -36,14 +36,12 @@ import openerp.modules.graph import openerp.modules.migration import openerp.osv as osv import openerp.pooler as pooler -import openerp.release as release import openerp.tools as tools from openerp import SUPERUSER_ID -from openerp import SUPERUSER_ID from openerp.tools.translate import _ from openerp.modules.module import initialize_sys_path, \ - load_openerp_module, init_module_models + load_openerp_module, init_module_models, adapt_version _logger = logging.getLogger(__name__) @@ -213,7 +211,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, skip_modules= migrations.migrate_module(package, 'post') - ver = release.major_version + '.' + package.data['version'] + ver = adapt_version(package.data['version']) # Set new modules and dependencies modobj.write(cr, SUPERUSER_ID, [module_id], {'state': 'installed', 'latest_version': ver}) # Update translations for all installed languages From 3e3edf0ce3ed514c57f700780464d1850e0e4acd Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 17 Jan 2013 18:58:09 +0100 Subject: [PATCH 15/72] [FIX] web_analytics: track pageview bzr revid: chs@openerp.com-20130117175809-ztptqe9y756hx8kk --- addons/web_analytics/static/src/js/web_analytics.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/web_analytics/static/src/js/web_analytics.js b/addons/web_analytics/static/src/js/web_analytics.js index 26171cb32aa..6e977c5465b 100644 --- a/addons/web_analytics/static/src/js/web_analytics.js +++ b/addons/web_analytics/static/src/js/web_analytics.js @@ -142,6 +142,7 @@ openerp.web_analytics = function(instance) { 'action': state.view_type, 'label': url, }); + this._push_pageview(url); } }, /* @@ -187,6 +188,7 @@ openerp.web_analytics = function(instance) { 'action': action.name || action.tag, 'label': url, }); + t._push_pageview(url); return this._super.apply(this, arguments); }, }); From 399386ead1f5d49a3b89e67441abe12a9b326dad Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Thu, 17 Jan 2013 18:40:27 +0100 Subject: [PATCH 17/72] [FIX] pad: don't throw a traceback if the pad server isn't set on the company (Returned value of pad_generate_url() is a dict not a string). bzr revid: qdp-launchpad@openerp.com-20130117174027-ryt95jzs06cuabn2 --- addons/pad/pad.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/pad/pad.py b/addons/pad/pad.py index 12fa8254d00..90f5354054c 100644 --- a/addons/pad/pad.py +++ b/addons/pad/pad.py @@ -24,7 +24,7 @@ class pad_common(osv.osv_memory): # make sure pad server in the form of http://hostname if not pad["server"]: - return '' + return pad if not pad["server"].startswith('http'): pad["server"] = 'http://' + pad["server"] pad["server"] = pad["server"].rstrip('/') @@ -96,7 +96,7 @@ class pad_common(osv.osv_memory): field = v.column if hasattr(field,'pad_content_field'): pad = self.pad_generate_url(cr, uid, context) - default[k] = pad['url'] + default[k] = pad.get('url') return super(pad_common, self).copy(cr, uid, id, default, context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From ba65ad242262e688b5b478db4e8848c3658bcc29 Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Sat, 29 Dec 2012 05:42:48 +0100 Subject: [PATCH 18/72] [FIX] contract show date_start bzr revid: al@openerp.com-20121229044248-psypv1fhsg5rfash --- addons/account/project/project_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/project/project_view.xml b/addons/account/project/project_view.xml index 1a596a4a7a9..393c447eed0 100644 --- a/addons/account/project/project_view.xml +++ b/addons/account/project/project_view.xml @@ -12,7 +12,7 @@ - + From 515e6f5cf01714086e8f1996baa704a438d256ac Mon Sep 17 00:00:00 2001 From: "Bhumi Thakkar (Open ERP)" Date: Tue, 15 Jan 2013 15:51:41 +0530 Subject: [PATCH 19/72] [FIX] hit box of menu items is large and can sometimes overflow the page content on its right.--fixes:lp1098574 bzr revid: bth@tinyerp.com-20130115102141-wnu6rd323laxwhco --- addons/web/static/src/css/base.css | 2 -- addons/web/static/src/css/base.sass | 2 -- 2 files changed, 4 deletions(-) diff --git a/addons/web/static/src/css/base.css b/addons/web/static/src/css/base.css index 638f446c5ba..6cfee50d6a4 100644 --- a/addons/web/static/src/css/base.css +++ b/addons/web/static/src/css/base.css @@ -1242,8 +1242,6 @@ .openerp .oe_secondary_submenu { padding: 2px 0 8px 0; margin: 0; - width: 220px; - display: inline-block; } .openerp .oe_secondary_submenu li { position: relative; diff --git a/addons/web/static/src/css/base.sass b/addons/web/static/src/css/base.sass index 42ade77ccbb..b4665808caf 100644 --- a/addons/web/static/src/css/base.sass +++ b/addons/web/static/src/css/base.sass @@ -1009,8 +1009,6 @@ $sheet-padding: 16px .oe_secondary_submenu padding: 2px 0 8px 0 margin: 0 - width: 220px - display: inline-block li position: relative margin: 0 From 8370a777a228170f716efb98535695d0ce3b7072 Mon Sep 17 00:00:00 2001 From: Niels Huylebroeck Date: Wed, 16 Jan 2013 14:18:56 +0100 Subject: [PATCH 20/72] [FIX] membership: use correct invoice form view after generating the invoices. lp bug: https://launchpad.net/bugs/1100271 fixed bzr revid: nh@agaplan.eu-20130116131856-ry3orovgztkoi00i --- addons/membership/wizard/membership_invoice.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/membership/wizard/membership_invoice.py b/addons/membership/wizard/membership_invoice.py index 85a9cc0c85b..2198f15d4bf 100644 --- a/addons/membership/wizard/membership_invoice.py +++ b/addons/membership/wizard/membership_invoice.py @@ -54,7 +54,8 @@ class membership_invoice(osv.osv_memory): invoice_list = partner_obj.create_membership_invoice(cr, uid, context.get('active_ids', []), datas=datas, context=context) res = mod_obj.get_object_reference(cr, uid, 'account', 'view_account_invoice_filter') - + form_view_id = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_form') + return { 'domain': [('id', 'in', invoice_list)], 'name': 'Membership Invoices', @@ -62,6 +63,7 @@ class membership_invoice(osv.osv_memory): 'view_mode': 'tree,form', 'res_model': 'account.invoice', 'type': 'ir.actions.act_window', + 'views': [(False, 'tree'), (form_view_id and form_view_id[1] or False, 'form')], 'search_view_id': res and res[1] or False } From ef020d05c2010f6fb7506b1e3b4ba474b3fa0b2b Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Thu, 17 Jan 2013 23:28:54 +0100 Subject: [PATCH 22/72] [FIX] web_analytics, better url and events bzr revid: al@openerp.com-20130117222854-3qgslzgn43kamr6l --- .../static/src/js/web_analytics.js | 44 ++++++++----------- 1 file changed, 18 insertions(+), 26 deletions(-) diff --git a/addons/web_analytics/static/src/js/web_analytics.js b/addons/web_analytics/static/src/js/web_analytics.js index 6e977c5465b..ec35663a7b5 100644 --- a/addons/web_analytics/static/src/js/web_analytics.js +++ b/addons/web_analytics/static/src/js/web_analytics.js @@ -158,19 +158,19 @@ openerp.web_analytics = function(instance) { this._super.apply(this, arguments); var self = this; this.on('record_created', self, function(r) { - var url = instance.web_analytics.generateUrl({'model': r.model, 'view_type': 'form'}); + var url = instance.web_analytics.generateUrl({'model': self.model, 'view_type': 'form'}); t._push_event({ - 'category': r.model, - 'action': 'form', + 'category': self.model, + 'action': 'create', 'label': url, 'noninteraction': true, }); }); this.on('record_saved', self, function(r) { - var url = instance.web_analytics.generateUrl({'model': r.model, 'view_type': 'form'}); + var url = instance.web_analytics.generateUrl({'model': self.model, 'view_type': 'form'}); t._push_event({ - 'category': r.model, - 'action': 'form', + 'category': self.model, + 'action': 'save', 'label': url, 'noninteraction': true, }); @@ -182,10 +182,9 @@ openerp.web_analytics = function(instance) { instance.web.ActionManager.include({ ir_actions_client: function (action, options) { var url = instance.web_analytics.generateUrl({'action': action.tag}); - var category = action.res_model || action.type; t._push_event({ - 'category': action.res_model || action.type, - 'action': action.name || action.tag, + 'category': action.type, + 'action': action.tag, 'label': url, }); t._push_pageview(url); @@ -226,21 +225,12 @@ openerp.web_analytics = function(instance) { options = {'action': params.action}; } var url = instance.web_analytics.generateUrl(options); - if (error.code) { - t._push_event({ - 'category': error.message, - 'action': error.data.fault_code, - 'label': url, - 'noninteraction': true, - }); - } else { - t._push_event({ - 'category': error.type, - 'action': error.data.debug, - 'label': url, - 'noninteraction': true, - }); - } + t._push_event({ + 'category': options.model || "ir.actions.client", + 'action': "error " + (error.code ? error.message + error.data.fault_code : error.type + error.data.debug), + 'label': url, + 'noninteraction': true, + }); this._super.apply(this, arguments); }, }); @@ -253,8 +243,10 @@ openerp.web_analytics = function(instance) { instance.web_analytics.generateUrl = function(options) { var url = ''; - _.each(options, function(value, key) { - url += '/' + key + '=' + value; + var keys = _.keys(options); + var keys = _.sortBy(keys, function(i) { return i;}); + _.each(keys, function(key) { + url += '/' + key + '/' + options[key]; }); return url; }; From 7a49719d46a5685079de8da1b8317700231bff86 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 18 Jan 2013 07:10:51 +0000 Subject: [PATCH 23/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130118071051-e8wytix67wlb17yd --- addons/account/i18n/ar.po | 4 +- addons/account/i18n/bg.po | 4 +- addons/account/i18n/br.po | 4 +- addons/account/i18n/bs.po | 4 +- addons/account/i18n/ca.po | 4 +- addons/account/i18n/cs.po | 4 +- addons/account/i18n/da.po | 4 +- addons/account/i18n/de.po | 4 +- addons/account/i18n/el.po | 4 +- addons/account/i18n/en_GB.po | 4 +- addons/account/i18n/en_US.po | 4 +- addons/account/i18n/es.po | 159 +- addons/account/i18n/es_AR.po | 4 +- addons/account/i18n/es_CL.po | 4 +- addons/account/i18n/es_CR.po | 4 +- addons/account/i18n/es_DO.po | 4 +- addons/account/i18n/es_EC.po | 4 +- addons/account/i18n/es_MX.po | 4 +- addons/account/i18n/es_PY.po | 4 +- addons/account/i18n/es_UY.po | 4 +- addons/account/i18n/es_VE.po | 4 +- addons/account/i18n/et.po | 4 +- addons/account/i18n/eu.po | 4 +- addons/account/i18n/fa.po | 4 +- addons/account/i18n/fa_AF.po | 4 +- addons/account/i18n/fi.po | 4 +- addons/account/i18n/fr.po | 4 +- addons/account/i18n/fr_BE.po | 4 +- addons/account/i18n/gl.po | 4 +- addons/account/i18n/gu.po | 4 +- addons/account/i18n/he.po | 4 +- addons/account/i18n/hi.po | 4 +- addons/account/i18n/hr.po | 4 +- addons/account/i18n/hu.po | 33 +- addons/account/i18n/id.po | 4 +- addons/account/i18n/it.po | 85 +- addons/account/i18n/ja.po | 4 +- addons/account/i18n/kab.po | 4 +- addons/account/i18n/kk.po | 4 +- addons/account/i18n/ko.po | 4 +- addons/account/i18n/lo.po | 4 +- addons/account/i18n/lt.po | 86 +- addons/account/i18n/lv.po | 4 +- addons/account/i18n/mk.po | 4 +- addons/account/i18n/mn.po | 4 +- addons/account/i18n/nb.po | 4 +- addons/account/i18n/nl.po | 4 +- addons/account/i18n/nl_BE.po | 4 +- addons/account/i18n/oc.po | 4 +- addons/account/i18n/pl.po | 4 +- addons/account/i18n/pt.po | 6 +- addons/account/i18n/pt_BR.po | 1194 +++++++--- addons/account/i18n/ro.po | 4 +- addons/account/i18n/ru.po | 271 +-- addons/account/i18n/si.po | 4 +- addons/account/i18n/sk.po | 4 +- addons/account/i18n/sl.po | 4 +- addons/account/i18n/sq.po | 4 +- addons/account/i18n/sr.po | 4 +- addons/account/i18n/sr@latin.po | 4 +- addons/account/i18n/sv.po | 4 +- addons/account/i18n/ta.po | 4 +- addons/account/i18n/te.po | 4 +- addons/account/i18n/th.po | 4 +- addons/account/i18n/tlh.po | 4 +- addons/account/i18n/tr.po | 4 +- addons/account/i18n/ug.po | 4 +- addons/account/i18n/uk.po | 4 +- addons/account/i18n/ur.po | 4 +- addons/account/i18n/vi.po | 4 +- addons/account/i18n/zh_CN.po | 4 +- addons/account/i18n/zh_HK.po | 4 +- addons/account/i18n/zh_TW.po | 4 +- addons/account_accountant/i18n/ar.po | 4 +- addons/account_accountant/i18n/az.po | 4 +- addons/account_accountant/i18n/bg.po | 4 +- addons/account_accountant/i18n/bn.po | 4 +- addons/account_accountant/i18n/bs.po | 4 +- addons/account_accountant/i18n/ca.po | 4 +- addons/account_accountant/i18n/cs.po | 6 +- addons/account_accountant/i18n/da.po | 4 +- addons/account_accountant/i18n/de.po | 4 +- addons/account_accountant/i18n/el.po | 4 +- addons/account_accountant/i18n/en_GB.po | 4 +- addons/account_accountant/i18n/es.po | 4 +- addons/account_accountant/i18n/es_CR.po | 4 +- addons/account_accountant/i18n/es_DO.po | 4 +- addons/account_accountant/i18n/es_EC.po | 4 +- addons/account_accountant/i18n/es_MX.po | 4 +- addons/account_accountant/i18n/es_PY.po | 4 +- addons/account_accountant/i18n/et.po | 4 +- addons/account_accountant/i18n/fa.po | 4 +- addons/account_accountant/i18n/fi.po | 4 +- addons/account_accountant/i18n/fr.po | 4 +- addons/account_accountant/i18n/gl.po | 4 +- addons/account_accountant/i18n/he.po | 4 +- addons/account_accountant/i18n/hi.po | 4 +- addons/account_accountant/i18n/hr.po | 4 +- addons/account_accountant/i18n/hu.po | 4 +- addons/account_accountant/i18n/id.po | 4 +- addons/account_accountant/i18n/it.po | 4 +- addons/account_accountant/i18n/ja.po | 4 +- addons/account_accountant/i18n/ko.po | 4 +- addons/account_accountant/i18n/lo.po | 4 +- addons/account_accountant/i18n/lt.po | 4 +- addons/account_accountant/i18n/lv.po | 4 +- addons/account_accountant/i18n/mk.po | 4 +- addons/account_accountant/i18n/mn.po | 4 +- addons/account_accountant/i18n/nb.po | 4 +- addons/account_accountant/i18n/nl.po | 4 +- addons/account_accountant/i18n/nl_BE.po | 4 +- addons/account_accountant/i18n/oc.po | 4 +- addons/account_accountant/i18n/pl.po | 4 +- addons/account_accountant/i18n/pt.po | 4 +- addons/account_accountant/i18n/pt_BR.po | 4 +- addons/account_accountant/i18n/ro.po | 4 +- addons/account_accountant/i18n/ru.po | 6 +- addons/account_accountant/i18n/sk.po | 4 +- addons/account_accountant/i18n/sl.po | 4 +- addons/account_accountant/i18n/sq.po | 4 +- addons/account_accountant/i18n/sr.po | 4 +- addons/account_accountant/i18n/sr@latin.po | 4 +- addons/account_accountant/i18n/sv.po | 10 +- addons/account_accountant/i18n/ta.po | 4 +- addons/account_accountant/i18n/th.po | 4 +- addons/account_accountant/i18n/tr.po | 4 +- addons/account_accountant/i18n/uk.po | 4 +- addons/account_accountant/i18n/vi.po | 4 +- addons/account_accountant/i18n/zh_CN.po | 4 +- addons/account_accountant/i18n/zh_TW.po | 4 +- addons/account_analytic_analysis/i18n/ar.po | 4 +- addons/account_analytic_analysis/i18n/bg.po | 4 +- addons/account_analytic_analysis/i18n/bs.po | 4 +- addons/account_analytic_analysis/i18n/ca.po | 4 +- addons/account_analytic_analysis/i18n/cs.po | 4 +- addons/account_analytic_analysis/i18n/da.po | 4 +- addons/account_analytic_analysis/i18n/de.po | 4 +- addons/account_analytic_analysis/i18n/el.po | 4 +- .../account_analytic_analysis/i18n/en_GB.po | 4 +- addons/account_analytic_analysis/i18n/es.po | 16 +- .../account_analytic_analysis/i18n/es_AR.po | 4 +- .../account_analytic_analysis/i18n/es_CR.po | 4 +- .../account_analytic_analysis/i18n/es_EC.po | 4 +- .../account_analytic_analysis/i18n/es_MX.po | 4 +- .../account_analytic_analysis/i18n/es_PY.po | 4 +- addons/account_analytic_analysis/i18n/et.po | 4 +- addons/account_analytic_analysis/i18n/fa.po | 4 +- addons/account_analytic_analysis/i18n/fi.po | 4 +- addons/account_analytic_analysis/i18n/fr.po | 4 +- addons/account_analytic_analysis/i18n/gl.po | 4 +- addons/account_analytic_analysis/i18n/gu.po | 4 +- addons/account_analytic_analysis/i18n/hr.po | 4 +- addons/account_analytic_analysis/i18n/hu.po | 4 +- addons/account_analytic_analysis/i18n/id.po | 4 +- addons/account_analytic_analysis/i18n/it.po | 16 +- addons/account_analytic_analysis/i18n/ja.po | 4 +- addons/account_analytic_analysis/i18n/ko.po | 4 +- addons/account_analytic_analysis/i18n/lt.po | 4 +- addons/account_analytic_analysis/i18n/lv.po | 4 +- addons/account_analytic_analysis/i18n/mk.po | 4 +- addons/account_analytic_analysis/i18n/mn.po | 4 +- addons/account_analytic_analysis/i18n/nb.po | 4 +- addons/account_analytic_analysis/i18n/nl.po | 4 +- .../account_analytic_analysis/i18n/nl_BE.po | 4 +- addons/account_analytic_analysis/i18n/oc.po | 4 +- addons/account_analytic_analysis/i18n/pl.po | 4 +- addons/account_analytic_analysis/i18n/pt.po | 4 +- .../account_analytic_analysis/i18n/pt_BR.po | 4 +- addons/account_analytic_analysis/i18n/ro.po | 4 +- addons/account_analytic_analysis/i18n/ru.po | 4 +- addons/account_analytic_analysis/i18n/sl.po | 4 +- addons/account_analytic_analysis/i18n/sq.po | 4 +- addons/account_analytic_analysis/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/account_analytic_analysis/i18n/sv.po | 4 +- addons/account_analytic_analysis/i18n/tlh.po | 4 +- addons/account_analytic_analysis/i18n/tr.po | 4 +- addons/account_analytic_analysis/i18n/uk.po | 4 +- addons/account_analytic_analysis/i18n/vi.po | 4 +- .../account_analytic_analysis/i18n/zh_CN.po | 4 +- .../account_analytic_analysis/i18n/zh_TW.po | 4 +- addons/account_analytic_default/i18n/ar.po | 4 +- addons/account_analytic_default/i18n/bg.po | 4 +- addons/account_analytic_default/i18n/bs.po | 4 +- addons/account_analytic_default/i18n/ca.po | 4 +- addons/account_analytic_default/i18n/cs.po | 4 +- addons/account_analytic_default/i18n/da.po | 4 +- addons/account_analytic_default/i18n/de.po | 4 +- addons/account_analytic_default/i18n/el.po | 4 +- addons/account_analytic_default/i18n/es.po | 16 +- addons/account_analytic_default/i18n/es_AR.po | 4 +- addons/account_analytic_default/i18n/es_CR.po | 4 +- addons/account_analytic_default/i18n/es_EC.po | 4 +- addons/account_analytic_default/i18n/es_MX.po | 4 +- addons/account_analytic_default/i18n/es_PY.po | 4 +- addons/account_analytic_default/i18n/et.po | 4 +- addons/account_analytic_default/i18n/fa.po | 4 +- addons/account_analytic_default/i18n/fi.po | 4 +- addons/account_analytic_default/i18n/fr.po | 4 +- addons/account_analytic_default/i18n/gl.po | 4 +- addons/account_analytic_default/i18n/gu.po | 4 +- addons/account_analytic_default/i18n/hr.po | 4 +- addons/account_analytic_default/i18n/hu.po | 4 +- addons/account_analytic_default/i18n/id.po | 4 +- addons/account_analytic_default/i18n/it.po | 16 +- addons/account_analytic_default/i18n/ja.po | 4 +- addons/account_analytic_default/i18n/ko.po | 4 +- addons/account_analytic_default/i18n/lt.po | 4 +- addons/account_analytic_default/i18n/lv.po | 4 +- addons/account_analytic_default/i18n/mn.po | 4 +- addons/account_analytic_default/i18n/nb.po | 4 +- addons/account_analytic_default/i18n/nl.po | 4 +- addons/account_analytic_default/i18n/nl_BE.po | 4 +- addons/account_analytic_default/i18n/oc.po | 4 +- addons/account_analytic_default/i18n/pl.po | 4 +- addons/account_analytic_default/i18n/pt.po | 4 +- addons/account_analytic_default/i18n/pt_BR.po | 4 +- addons/account_analytic_default/i18n/ro.po | 4 +- addons/account_analytic_default/i18n/ru.po | 4 +- addons/account_analytic_default/i18n/sk.po | 4 +- addons/account_analytic_default/i18n/sl.po | 6 +- addons/account_analytic_default/i18n/sq.po | 4 +- addons/account_analytic_default/i18n/sr.po | 4 +- .../account_analytic_default/i18n/sr@latin.po | 4 +- addons/account_analytic_default/i18n/sv.po | 4 +- addons/account_analytic_default/i18n/tlh.po | 4 +- addons/account_analytic_default/i18n/tr.po | 4 +- addons/account_analytic_default/i18n/uk.po | 4 +- addons/account_analytic_default/i18n/vi.po | 4 +- addons/account_analytic_default/i18n/zh_CN.po | 4 +- addons/account_analytic_default/i18n/zh_TW.po | 4 +- addons/account_analytic_plans/i18n/ar.po | 4 +- addons/account_analytic_plans/i18n/bg.po | 4 +- addons/account_analytic_plans/i18n/bs.po | 4 +- addons/account_analytic_plans/i18n/ca.po | 4 +- addons/account_analytic_plans/i18n/cs.po | 4 +- addons/account_analytic_plans/i18n/da.po | 4 +- addons/account_analytic_plans/i18n/de.po | 4 +- addons/account_analytic_plans/i18n/el.po | 4 +- addons/account_analytic_plans/i18n/es.po | 4 +- addons/account_analytic_plans/i18n/es_AR.po | 4 +- addons/account_analytic_plans/i18n/es_CR.po | 4 +- addons/account_analytic_plans/i18n/es_EC.po | 4 +- addons/account_analytic_plans/i18n/es_MX.po | 4 +- addons/account_analytic_plans/i18n/es_PY.po | 4 +- addons/account_analytic_plans/i18n/et.po | 4 +- addons/account_analytic_plans/i18n/fa.po | 4 +- addons/account_analytic_plans/i18n/fi.po | 4 +- addons/account_analytic_plans/i18n/fr.po | 4 +- addons/account_analytic_plans/i18n/gl.po | 4 +- addons/account_analytic_plans/i18n/gu.po | 4 +- addons/account_analytic_plans/i18n/hr.po | 4 +- addons/account_analytic_plans/i18n/hu.po | 4 +- addons/account_analytic_plans/i18n/id.po | 4 +- addons/account_analytic_plans/i18n/it.po | 4 +- addons/account_analytic_plans/i18n/ja.po | 4 +- addons/account_analytic_plans/i18n/ko.po | 4 +- addons/account_analytic_plans/i18n/lt.po | 4 +- addons/account_analytic_plans/i18n/lv.po | 4 +- addons/account_analytic_plans/i18n/mn.po | 4 +- addons/account_analytic_plans/i18n/nb.po | 4 +- addons/account_analytic_plans/i18n/nl.po | 6 +- addons/account_analytic_plans/i18n/nl_BE.po | 4 +- addons/account_analytic_plans/i18n/oc.po | 4 +- addons/account_analytic_plans/i18n/pl.po | 4 +- addons/account_analytic_plans/i18n/pt.po | 4 +- addons/account_analytic_plans/i18n/pt_BR.po | 4 +- addons/account_analytic_plans/i18n/ro.po | 4 +- addons/account_analytic_plans/i18n/ru.po | 10 +- addons/account_analytic_plans/i18n/sl.po | 6 +- addons/account_analytic_plans/i18n/sq.po | 4 +- addons/account_analytic_plans/i18n/sr.po | 4 +- .../account_analytic_plans/i18n/sr@latin.po | 4 +- addons/account_analytic_plans/i18n/sv.po | 4 +- addons/account_analytic_plans/i18n/tlh.po | 4 +- addons/account_analytic_plans/i18n/tr.po | 4 +- addons/account_analytic_plans/i18n/uk.po | 4 +- addons/account_analytic_plans/i18n/vi.po | 4 +- addons/account_analytic_plans/i18n/zh_CN.po | 4 +- addons/account_analytic_plans/i18n/zh_TW.po | 4 +- addons/account_anglo_saxon/i18n/ar.po | 4 +- addons/account_anglo_saxon/i18n/bg.po | 4 +- addons/account_anglo_saxon/i18n/ca.po | 4 +- addons/account_anglo_saxon/i18n/cs.po | 6 +- addons/account_anglo_saxon/i18n/da.po | 4 +- addons/account_anglo_saxon/i18n/de.po | 4 +- addons/account_anglo_saxon/i18n/el.po | 4 +- addons/account_anglo_saxon/i18n/en_GB.po | 4 +- addons/account_anglo_saxon/i18n/es.po | 4 +- addons/account_anglo_saxon/i18n/es_CR.po | 4 +- addons/account_anglo_saxon/i18n/es_EC.po | 4 +- addons/account_anglo_saxon/i18n/es_MX.po | 4 +- addons/account_anglo_saxon/i18n/es_PY.po | 4 +- addons/account_anglo_saxon/i18n/et.po | 4 +- addons/account_anglo_saxon/i18n/fa.po | 4 +- addons/account_anglo_saxon/i18n/fi.po | 4 +- addons/account_anglo_saxon/i18n/fr.po | 4 +- addons/account_anglo_saxon/i18n/gl.po | 4 +- addons/account_anglo_saxon/i18n/gu.po | 4 +- addons/account_anglo_saxon/i18n/hi.po | 4 +- addons/account_anglo_saxon/i18n/hr.po | 4 +- addons/account_anglo_saxon/i18n/hu.po | 4 +- addons/account_anglo_saxon/i18n/id.po | 4 +- addons/account_anglo_saxon/i18n/it.po | 4 +- addons/account_anglo_saxon/i18n/ja.po | 4 +- addons/account_anglo_saxon/i18n/lv.po | 4 +- addons/account_anglo_saxon/i18n/mn.po | 4 +- addons/account_anglo_saxon/i18n/nb.po | 4 +- addons/account_anglo_saxon/i18n/nl.po | 4 +- addons/account_anglo_saxon/i18n/nl_BE.po | 4 +- addons/account_anglo_saxon/i18n/oc.po | 4 +- addons/account_anglo_saxon/i18n/pl.po | 4 +- addons/account_anglo_saxon/i18n/pt.po | 4 +- addons/account_anglo_saxon/i18n/pt_BR.po | 4 +- addons/account_anglo_saxon/i18n/ro.po | 4 +- addons/account_anglo_saxon/i18n/ru.po | 4 +- addons/account_anglo_saxon/i18n/sl.po | 4 +- addons/account_anglo_saxon/i18n/sq.po | 4 +- addons/account_anglo_saxon/i18n/sr@latin.po | 4 +- addons/account_anglo_saxon/i18n/sv.po | 4 +- addons/account_anglo_saxon/i18n/ta.po | 4 +- addons/account_anglo_saxon/i18n/tr.po | 4 +- addons/account_anglo_saxon/i18n/zh_CN.po | 4 +- addons/account_anglo_saxon/i18n/zh_TW.po | 4 +- addons/account_asset/i18n/ar.po | 4 +- addons/account_asset/i18n/ca.po | 4 +- addons/account_asset/i18n/cs.po | 4 +- addons/account_asset/i18n/da.po | 4 +- addons/account_asset/i18n/de.po | 4 +- addons/account_asset/i18n/es.po | 18 +- addons/account_asset/i18n/es_AR.po | 4 +- addons/account_asset/i18n/es_CR.po | 4 +- addons/account_asset/i18n/es_EC.po | 4 +- addons/account_asset/i18n/es_MX.po | 4 +- addons/account_asset/i18n/et.po | 4 +- addons/account_asset/i18n/fi.po | 4 +- addons/account_asset/i18n/fr.po | 4 +- addons/account_asset/i18n/gu.po | 4 +- addons/account_asset/i18n/hr.po | 4 +- addons/account_asset/i18n/id.po | 4 +- addons/account_asset/i18n/it.po | 4 +- addons/account_asset/i18n/ja.po | 4 +- addons/account_asset/i18n/lt.po | 4 +- addons/account_asset/i18n/mn.po | 4 +- addons/account_asset/i18n/nb.po | 4 +- addons/account_asset/i18n/nl.po | 4 +- addons/account_asset/i18n/nl_BE.po | 4 +- addons/account_asset/i18n/pl.po | 4 +- addons/account_asset/i18n/pt.po | 4 +- addons/account_asset/i18n/pt_BR.po | 4 +- addons/account_asset/i18n/ro.po | 4 +- addons/account_asset/i18n/ru.po | 4 +- addons/account_asset/i18n/sl.po | 6 +- addons/account_asset/i18n/sr@latin.po | 4 +- addons/account_asset/i18n/sv.po | 4 +- addons/account_asset/i18n/tr.po | 4 +- addons/account_asset/i18n/vi.po | 4 +- addons/account_asset/i18n/zh_CN.po | 4 +- addons/account_asset/i18n/zh_TW.po | 4 +- .../i18n/ar.po | 4 +- .../i18n/de.po | 4 +- .../i18n/es.po | 8 +- .../i18n/es_CR.po | 4 +- .../i18n/es_EC.po | 4 +- .../i18n/es_MX.po | 4 +- .../i18n/fi.po | 4 +- .../i18n/fr.po | 4 +- .../i18n/gu.po | 4 +- .../i18n/hr.po | 4 +- .../i18n/it.po | 4 +- .../i18n/ja.po | 4 +- .../i18n/mn.po | 4 +- .../i18n/nb.po | 4 +- .../i18n/nl.po | 8 +- .../i18n/pl.po | 4 +- .../i18n/pt.po | 4 +- .../i18n/pt_BR.po | 4 +- .../i18n/ro.po | 4 +- .../i18n/sl.po | 6 +- .../i18n/sr@latin.po | 4 +- .../i18n/sv.po | 4 +- .../i18n/tr.po | 4 +- .../i18n/zh_CN.po | 4 +- .../i18n/zh_TW.po | 4 +- addons/account_budget/i18n/ar.po | 4 +- addons/account_budget/i18n/bg.po | 4 +- addons/account_budget/i18n/bs.po | 4 +- addons/account_budget/i18n/ca.po | 4 +- addons/account_budget/i18n/cs.po | 4 +- addons/account_budget/i18n/da.po | 4 +- addons/account_budget/i18n/de.po | 4 +- addons/account_budget/i18n/el.po | 4 +- addons/account_budget/i18n/en_GB.po | 4 +- addons/account_budget/i18n/es.po | 4 +- addons/account_budget/i18n/es_AR.po | 4 +- addons/account_budget/i18n/es_CR.po | 4 +- addons/account_budget/i18n/es_EC.po | 4 +- addons/account_budget/i18n/es_MX.po | 4 +- addons/account_budget/i18n/es_PY.po | 4 +- addons/account_budget/i18n/et.po | 4 +- addons/account_budget/i18n/fa.po | 4 +- addons/account_budget/i18n/fi.po | 4 +- addons/account_budget/i18n/fr.po | 4 +- addons/account_budget/i18n/gl.po | 4 +- addons/account_budget/i18n/gu.po | 4 +- addons/account_budget/i18n/he.po | 4 +- addons/account_budget/i18n/hi.po | 4 +- addons/account_budget/i18n/hr.po | 4 +- addons/account_budget/i18n/hu.po | 4 +- addons/account_budget/i18n/id.po | 4 +- addons/account_budget/i18n/it.po | 4 +- addons/account_budget/i18n/ja.po | 4 +- addons/account_budget/i18n/ko.po | 4 +- addons/account_budget/i18n/lo.po | 4 +- addons/account_budget/i18n/lt.po | 4 +- addons/account_budget/i18n/lv.po | 4 +- addons/account_budget/i18n/mn.po | 4 +- addons/account_budget/i18n/nb.po | 4 +- addons/account_budget/i18n/nl.po | 4 +- addons/account_budget/i18n/nl_BE.po | 4 +- addons/account_budget/i18n/oc.po | 4 +- addons/account_budget/i18n/pl.po | 4 +- addons/account_budget/i18n/pt.po | 4 +- addons/account_budget/i18n/pt_BR.po | 4 +- addons/account_budget/i18n/ro.po | 4 +- addons/account_budget/i18n/ru.po | 4 +- addons/account_budget/i18n/sl.po | 4 +- addons/account_budget/i18n/sq.po | 4 +- addons/account_budget/i18n/sr.po | 4 +- addons/account_budget/i18n/sr@latin.po | 4 +- addons/account_budget/i18n/sv.po | 4 +- addons/account_budget/i18n/tlh.po | 4 +- addons/account_budget/i18n/tr.po | 4 +- addons/account_budget/i18n/uk.po | 4 +- addons/account_budget/i18n/vi.po | 4 +- addons/account_budget/i18n/zh_CN.po | 4 +- addons/account_budget/i18n/zh_TW.po | 4 +- addons/account_cancel/i18n/ar.po | 4 +- addons/account_cancel/i18n/bg.po | 4 +- addons/account_cancel/i18n/bn.po | 4 +- addons/account_cancel/i18n/br.po | 4 +- addons/account_cancel/i18n/bs.po | 4 +- addons/account_cancel/i18n/ca.po | 4 +- addons/account_cancel/i18n/cs.po | 4 +- addons/account_cancel/i18n/da.po | 4 +- addons/account_cancel/i18n/de.po | 4 +- addons/account_cancel/i18n/el.po | 4 +- addons/account_cancel/i18n/en_GB.po | 4 +- addons/account_cancel/i18n/es.po | 4 +- addons/account_cancel/i18n/es_CL.po | 4 +- addons/account_cancel/i18n/es_CR.po | 4 +- addons/account_cancel/i18n/es_EC.po | 4 +- addons/account_cancel/i18n/es_MX.po | 4 +- addons/account_cancel/i18n/es_PY.po | 4 +- addons/account_cancel/i18n/fa.po | 4 +- addons/account_cancel/i18n/fi.po | 4 +- addons/account_cancel/i18n/fr.po | 4 +- addons/account_cancel/i18n/gl.po | 4 +- addons/account_cancel/i18n/gu.po | 4 +- addons/account_cancel/i18n/hi.po | 4 +- addons/account_cancel/i18n/hr.po | 4 +- addons/account_cancel/i18n/hu.po | 4 +- addons/account_cancel/i18n/id.po | 4 +- addons/account_cancel/i18n/it.po | 4 +- addons/account_cancel/i18n/ja.po | 4 +- addons/account_cancel/i18n/kk.po | 4 +- addons/account_cancel/i18n/lo.po | 4 +- addons/account_cancel/i18n/lt.po | 4 +- addons/account_cancel/i18n/lv.po | 4 +- addons/account_cancel/i18n/mk.po | 4 +- addons/account_cancel/i18n/mn.po | 4 +- addons/account_cancel/i18n/nb.po | 4 +- addons/account_cancel/i18n/nl.po | 4 +- addons/account_cancel/i18n/nl_BE.po | 4 +- addons/account_cancel/i18n/oc.po | 4 +- addons/account_cancel/i18n/pl.po | 4 +- addons/account_cancel/i18n/pt.po | 4 +- addons/account_cancel/i18n/pt_BR.po | 4 +- addons/account_cancel/i18n/ro.po | 4 +- addons/account_cancel/i18n/ru.po | 4 +- addons/account_cancel/i18n/sl.po | 4 +- addons/account_cancel/i18n/sq.po | 4 +- addons/account_cancel/i18n/sr.po | 4 +- addons/account_cancel/i18n/sr@latin.po | 4 +- addons/account_cancel/i18n/sv.po | 4 +- addons/account_cancel/i18n/ta.po | 4 +- addons/account_cancel/i18n/tr.po | 4 +- addons/account_cancel/i18n/vi.po | 4 +- addons/account_cancel/i18n/zh_CN.po | 4 +- addons/account_cancel/i18n/zh_TW.po | 4 +- addons/account_chart/i18n/ar.po | 4 +- addons/account_chart/i18n/bg.po | 4 +- addons/account_chart/i18n/bs.po | 4 +- addons/account_chart/i18n/ca.po | 4 +- addons/account_chart/i18n/cs.po | 4 +- addons/account_chart/i18n/da.po | 4 +- addons/account_chart/i18n/de.po | 4 +- addons/account_chart/i18n/el.po | 4 +- addons/account_chart/i18n/en_GB.po | 4 +- addons/account_chart/i18n/es.po | 4 +- addons/account_chart/i18n/es_AR.po | 4 +- addons/account_chart/i18n/es_CL.po | 4 +- addons/account_chart/i18n/es_CR.po | 4 +- addons/account_chart/i18n/es_EC.po | 4 +- addons/account_chart/i18n/es_MX.po | 4 +- addons/account_chart/i18n/es_PY.po | 4 +- addons/account_chart/i18n/et.po | 4 +- addons/account_chart/i18n/eu.po | 6 +- addons/account_chart/i18n/fa.po | 4 +- addons/account_chart/i18n/fi.po | 4 +- addons/account_chart/i18n/fr.po | 4 +- addons/account_chart/i18n/gl.po | 4 +- addons/account_chart/i18n/gu.po | 4 +- addons/account_chart/i18n/hi.po | 4 +- addons/account_chart/i18n/hr.po | 4 +- addons/account_chart/i18n/hu.po | 4 +- addons/account_chart/i18n/id.po | 4 +- addons/account_chart/i18n/it.po | 4 +- addons/account_chart/i18n/ja.po | 4 +- addons/account_chart/i18n/ko.po | 4 +- addons/account_chart/i18n/lo.po | 4 +- addons/account_chart/i18n/lt.po | 4 +- addons/account_chart/i18n/lv.po | 4 +- addons/account_chart/i18n/mk.po | 4 +- addons/account_chart/i18n/mn.po | 4 +- addons/account_chart/i18n/nb.po | 4 +- addons/account_chart/i18n/nl.po | 4 +- addons/account_chart/i18n/nl_BE.po | 4 +- addons/account_chart/i18n/oc.po | 4 +- addons/account_chart/i18n/pl.po | 4 +- addons/account_chart/i18n/pt.po | 4 +- addons/account_chart/i18n/pt_BR.po | 4 +- addons/account_chart/i18n/ro.po | 4 +- addons/account_chart/i18n/ru.po | 4 +- addons/account_chart/i18n/sk.po | 4 +- addons/account_chart/i18n/sl.po | 4 +- addons/account_chart/i18n/sq.po | 4 +- addons/account_chart/i18n/sr.po | 4 +- addons/account_chart/i18n/sr@latin.po | 4 +- addons/account_chart/i18n/sv.po | 4 +- addons/account_chart/i18n/ta.po | 4 +- addons/account_chart/i18n/th.po | 4 +- addons/account_chart/i18n/tr.po | 4 +- addons/account_chart/i18n/uk.po | 4 +- addons/account_chart/i18n/vi.po | 4 +- addons/account_chart/i18n/zh_CN.po | 4 +- addons/account_chart/i18n/zh_TW.po | 4 +- addons/account_check_writing/i18n/ar.po | 4 +- addons/account_check_writing/i18n/de.po | 4 +- addons/account_check_writing/i18n/es.po | 24 +- addons/account_check_writing/i18n/es_CR.po | 4 +- addons/account_check_writing/i18n/es_EC.po | 4 +- addons/account_check_writing/i18n/es_MX.po | 4 +- addons/account_check_writing/i18n/fi.po | 4 +- addons/account_check_writing/i18n/fr.po | 4 +- addons/account_check_writing/i18n/gu.po | 4 +- addons/account_check_writing/i18n/hr.po | 4 +- addons/account_check_writing/i18n/ja.po | 4 +- addons/account_check_writing/i18n/lt.po | 4 +- addons/account_check_writing/i18n/mn.po | 4 +- addons/account_check_writing/i18n/nb.po | 4 +- addons/account_check_writing/i18n/nl.po | 4 +- addons/account_check_writing/i18n/pl.po | 4 +- addons/account_check_writing/i18n/pt.po | 4 +- addons/account_check_writing/i18n/pt_BR.po | 4 +- addons/account_check_writing/i18n/ro.po | 4 +- addons/account_check_writing/i18n/ru.po | 4 +- addons/account_check_writing/i18n/sl.po | 4 +- addons/account_check_writing/i18n/sr@latin.po | 4 +- addons/account_check_writing/i18n/sv.po | 4 +- addons/account_check_writing/i18n/tr.po | 4 +- addons/account_check_writing/i18n/zh_CN.po | 4 +- addons/account_check_writing/i18n/zh_TW.po | 4 +- addons/account_followup/i18n/ar.po | 4 +- addons/account_followup/i18n/bg.po | 4 +- addons/account_followup/i18n/bs.po | 4 +- addons/account_followup/i18n/ca.po | 4 +- addons/account_followup/i18n/cs.po | 4 +- addons/account_followup/i18n/da.po | 4 +- addons/account_followup/i18n/de.po | 4 +- addons/account_followup/i18n/el.po | 4 +- addons/account_followup/i18n/es.po | 231 +- addons/account_followup/i18n/es_AR.po | 4 +- addons/account_followup/i18n/es_CR.po | 4 +- addons/account_followup/i18n/es_EC.po | 4 +- addons/account_followup/i18n/es_PY.po | 4 +- addons/account_followup/i18n/et.po | 4 +- addons/account_followup/i18n/fa.po | 4 +- addons/account_followup/i18n/fi.po | 4 +- addons/account_followup/i18n/fr.po | 4 +- addons/account_followup/i18n/gl.po | 4 +- addons/account_followup/i18n/hr.po | 4 +- addons/account_followup/i18n/hu.po | 4 +- addons/account_followup/i18n/id.po | 4 +- addons/account_followup/i18n/it.po | 64 +- addons/account_followup/i18n/ja.po | 4 +- addons/account_followup/i18n/ko.po | 4 +- addons/account_followup/i18n/lt.po | 4 +- addons/account_followup/i18n/mn.po | 4 +- addons/account_followup/i18n/nb.po | 4 +- addons/account_followup/i18n/nl.po | 4 +- addons/account_followup/i18n/nl_BE.po | 4 +- addons/account_followup/i18n/oc.po | 4 +- addons/account_followup/i18n/pl.po | 4 +- addons/account_followup/i18n/pt.po | 4 +- addons/account_followup/i18n/pt_BR.po | 4 +- addons/account_followup/i18n/ro.po | 4 +- addons/account_followup/i18n/ru.po | 4 +- addons/account_followup/i18n/sl.po | 6 +- addons/account_followup/i18n/sq.po | 4 +- addons/account_followup/i18n/sr.po | 4 +- addons/account_followup/i18n/sr@latin.po | 4 +- addons/account_followup/i18n/sv.po | 4 +- addons/account_followup/i18n/tlh.po | 4 +- addons/account_followup/i18n/tr.po | 4 +- addons/account_followup/i18n/uk.po | 4 +- addons/account_followup/i18n/vi.po | 4 +- addons/account_followup/i18n/zh_CN.po | 10 +- addons/account_followup/i18n/zh_TW.po | 4 +- addons/account_payment/i18n/am.po | 4 +- addons/account_payment/i18n/ar.po | 4 +- addons/account_payment/i18n/bg.po | 4 +- addons/account_payment/i18n/bs.po | 4 +- addons/account_payment/i18n/ca.po | 4 +- addons/account_payment/i18n/cs.po | 4 +- addons/account_payment/i18n/da.po | 4 +- addons/account_payment/i18n/de.po | 4 +- addons/account_payment/i18n/el.po | 4 +- addons/account_payment/i18n/es.po | 4 +- addons/account_payment/i18n/es_AR.po | 4 +- addons/account_payment/i18n/es_CL.po | 4 +- addons/account_payment/i18n/es_CR.po | 4 +- addons/account_payment/i18n/es_EC.po | 4 +- addons/account_payment/i18n/es_PY.po | 4 +- addons/account_payment/i18n/et.po | 4 +- addons/account_payment/i18n/fa.po | 4 +- addons/account_payment/i18n/fi.po | 4 +- addons/account_payment/i18n/fr.po | 4 +- addons/account_payment/i18n/gl.po | 4 +- addons/account_payment/i18n/hi.po | 4 +- addons/account_payment/i18n/hr.po | 4 +- addons/account_payment/i18n/hu.po | 4 +- addons/account_payment/i18n/id.po | 4 +- addons/account_payment/i18n/it.po | 4 +- addons/account_payment/i18n/ja.po | 4 +- addons/account_payment/i18n/ko.po | 4 +- addons/account_payment/i18n/lt.po | 4 +- addons/account_payment/i18n/lv.po | 4 +- addons/account_payment/i18n/mn.po | 4 +- addons/account_payment/i18n/nb.po | 4 +- addons/account_payment/i18n/nl.po | 4 +- addons/account_payment/i18n/nl_BE.po | 4 +- addons/account_payment/i18n/oc.po | 4 +- addons/account_payment/i18n/pl.po | 4 +- addons/account_payment/i18n/pt.po | 4 +- addons/account_payment/i18n/pt_BR.po | 4 +- addons/account_payment/i18n/ro.po | 4 +- addons/account_payment/i18n/ru.po | 30 +- addons/account_payment/i18n/sl.po | 6 +- addons/account_payment/i18n/sq.po | 4 +- addons/account_payment/i18n/sr.po | 4 +- addons/account_payment/i18n/sr@latin.po | 4 +- addons/account_payment/i18n/sv.po | 4 +- addons/account_payment/i18n/tlh.po | 4 +- addons/account_payment/i18n/tr.po | 4 +- addons/account_payment/i18n/uk.po | 4 +- addons/account_payment/i18n/vi.po | 4 +- addons/account_payment/i18n/zh_CN.po | 4 +- addons/account_payment/i18n/zh_TW.po | 4 +- addons/account_sequence/i18n/ar.po | 4 +- addons/account_sequence/i18n/bg.po | 4 +- addons/account_sequence/i18n/ca.po | 4 +- addons/account_sequence/i18n/da.po | 4 +- addons/account_sequence/i18n/de.po | 4 +- addons/account_sequence/i18n/el.po | 4 +- addons/account_sequence/i18n/es.po | 4 +- addons/account_sequence/i18n/es_CR.po | 4 +- addons/account_sequence/i18n/es_EC.po | 4 +- addons/account_sequence/i18n/es_PY.po | 4 +- addons/account_sequence/i18n/fa.po | 4 +- addons/account_sequence/i18n/fr.po | 4 +- addons/account_sequence/i18n/gl.po | 4 +- addons/account_sequence/i18n/hr.po | 4 +- addons/account_sequence/i18n/hu.po | 4 +- addons/account_sequence/i18n/id.po | 4 +- addons/account_sequence/i18n/it.po | 4 +- addons/account_sequence/i18n/ja.po | 4 +- addons/account_sequence/i18n/lv.po | 4 +- addons/account_sequence/i18n/nb.po | 4 +- addons/account_sequence/i18n/nl.po | 4 +- addons/account_sequence/i18n/nl_BE.po | 4 +- addons/account_sequence/i18n/pl.po | 4 +- addons/account_sequence/i18n/pt.po | 4 +- addons/account_sequence/i18n/pt_BR.po | 4 +- addons/account_sequence/i18n/ro.po | 4 +- addons/account_sequence/i18n/ru.po | 4 +- addons/account_sequence/i18n/sl.po | 6 +- addons/account_sequence/i18n/sq.po | 4 +- addons/account_sequence/i18n/sr@latin.po | 4 +- addons/account_sequence/i18n/sv.po | 4 +- addons/account_sequence/i18n/tr.po | 4 +- addons/account_sequence/i18n/vi.po | 4 +- addons/account_sequence/i18n/zh_CN.po | 4 +- addons/account_sequence/i18n/zh_TW.po | 4 +- addons/account_test/i18n/es.po | 4 +- addons/account_test/i18n/fr.po | 4 +- addons/account_test/i18n/it.po | 4 +- addons/account_test/i18n/nb.po | 4 +- addons/account_test/i18n/nl.po | 4 +- addons/account_test/i18n/pt.po | 4 +- addons/account_test/i18n/ro.po | 4 +- addons/account_test/i18n/sl.po | 6 +- addons/account_voucher/i18n/ar.po | 4 +- addons/account_voucher/i18n/bg.po | 4 +- addons/account_voucher/i18n/bs.po | 4 +- addons/account_voucher/i18n/ca.po | 4 +- addons/account_voucher/i18n/cs.po | 4 +- addons/account_voucher/i18n/da.po | 4 +- addons/account_voucher/i18n/de.po | 4 +- addons/account_voucher/i18n/el.po | 4 +- addons/account_voucher/i18n/es.po | 29 +- addons/account_voucher/i18n/es_AR.po | 4 +- addons/account_voucher/i18n/es_CR.po | 4 +- addons/account_voucher/i18n/es_EC.po | 4 +- addons/account_voucher/i18n/es_PY.po | 4 +- addons/account_voucher/i18n/et.po | 4 +- addons/account_voucher/i18n/fa.po | 4 +- addons/account_voucher/i18n/fr.po | 4 +- addons/account_voucher/i18n/gl.po | 4 +- addons/account_voucher/i18n/gu.po | 4 +- addons/account_voucher/i18n/hi.po | 4 +- addons/account_voucher/i18n/hr.po | 4 +- addons/account_voucher/i18n/hu.po | 6 +- addons/account_voucher/i18n/id.po | 4 +- addons/account_voucher/i18n/it.po | 4 +- addons/account_voucher/i18n/ja.po | 4 +- addons/account_voucher/i18n/ko.po | 4 +- addons/account_voucher/i18n/lt.po | 4 +- addons/account_voucher/i18n/mn.po | 4 +- addons/account_voucher/i18n/nb.po | 4 +- addons/account_voucher/i18n/nl.po | 4 +- addons/account_voucher/i18n/nl_BE.po | 4 +- addons/account_voucher/i18n/oc.po | 4 +- addons/account_voucher/i18n/pl.po | 76 +- addons/account_voucher/i18n/pt.po | 4 +- addons/account_voucher/i18n/pt_BR.po | 4 +- addons/account_voucher/i18n/ro.po | 4 +- addons/account_voucher/i18n/ru.po | 4 +- addons/account_voucher/i18n/sl.po | 6 +- addons/account_voucher/i18n/sq.po | 4 +- addons/account_voucher/i18n/sr.po | 4 +- addons/account_voucher/i18n/sr@latin.po | 4 +- addons/account_voucher/i18n/sv.po | 4 +- addons/account_voucher/i18n/tlh.po | 4 +- addons/account_voucher/i18n/tr.po | 4 +- addons/account_voucher/i18n/uk.po | 4 +- addons/account_voucher/i18n/vi.po | 4 +- addons/account_voucher/i18n/zh_CN.po | 4 +- addons/account_voucher/i18n/zh_TW.po | 4 +- addons/analytic/i18n/ar.po | 4 +- addons/analytic/i18n/bg.po | 4 +- addons/analytic/i18n/bs.po | 4 +- addons/analytic/i18n/ca.po | 4 +- addons/analytic/i18n/cs.po | 4 +- addons/analytic/i18n/da.po | 4 +- addons/analytic/i18n/de.po | 4 +- addons/analytic/i18n/el.po | 4 +- addons/analytic/i18n/es.po | 16 +- addons/analytic/i18n/es_CR.po | 4 +- addons/analytic/i18n/es_EC.po | 4 +- addons/analytic/i18n/es_PY.po | 4 +- addons/analytic/i18n/et.po | 4 +- addons/analytic/i18n/fa.po | 4 +- addons/analytic/i18n/fi.po | 4 +- addons/analytic/i18n/fr.po | 4 +- addons/analytic/i18n/gl.po | 4 +- addons/analytic/i18n/hr.po | 4 +- addons/analytic/i18n/hu.po | 4 +- addons/analytic/i18n/it.po | 4 +- addons/analytic/i18n/ja.po | 4 +- addons/analytic/i18n/lv.po | 4 +- addons/analytic/i18n/mn.po | 4 +- addons/analytic/i18n/nb.po | 4 +- addons/analytic/i18n/nl.po | 4 +- addons/analytic/i18n/nl_BE.po | 4 +- addons/analytic/i18n/pl.po | 4 +- addons/analytic/i18n/pt.po | 4 +- addons/analytic/i18n/pt_BR.po | 4 +- addons/analytic/i18n/ro.po | 64 +- addons/analytic/i18n/ru.po | 4 +- addons/analytic/i18n/sl.po | 6 +- addons/analytic/i18n/sq.po | 4 +- addons/analytic/i18n/sr.po | 4 +- addons/analytic/i18n/sr@latin.po | 4 +- addons/analytic/i18n/sv.po | 4 +- addons/analytic/i18n/tr.po | 4 +- addons/analytic/i18n/vi.po | 4 +- addons/analytic/i18n/zh_CN.po | 4 +- addons/analytic/i18n/zh_TW.po | 4 +- .../analytic_contract_hr_expense/i18n/ar.po | 4 +- .../analytic_contract_hr_expense/i18n/de.po | 4 +- .../analytic_contract_hr_expense/i18n/es.po | 4 +- .../analytic_contract_hr_expense/i18n/fr.po | 4 +- .../analytic_contract_hr_expense/i18n/hr.po | 4 +- .../analytic_contract_hr_expense/i18n/it.po | 4 +- .../analytic_contract_hr_expense/i18n/nb.po | 4 +- .../analytic_contract_hr_expense/i18n/nl.po | 4 +- .../analytic_contract_hr_expense/i18n/pl.po | 4 +- .../analytic_contract_hr_expense/i18n/pt.po | 4 +- .../i18n/pt_BR.po | 4 +- .../analytic_contract_hr_expense/i18n/sl.po | 6 +- .../i18n/zh_CN.po | 4 +- addons/analytic_user_function/i18n/ar.po | 4 +- addons/analytic_user_function/i18n/bg.po | 4 +- addons/analytic_user_function/i18n/bs.po | 4 +- addons/analytic_user_function/i18n/ca.po | 4 +- addons/analytic_user_function/i18n/cs.po | 4 +- addons/analytic_user_function/i18n/da.po | 4 +- addons/analytic_user_function/i18n/de.po | 4 +- addons/analytic_user_function/i18n/el.po | 4 +- addons/analytic_user_function/i18n/en_GB.po | 4 +- addons/analytic_user_function/i18n/es.po | 4 +- addons/analytic_user_function/i18n/es_AR.po | 4 +- addons/analytic_user_function/i18n/es_CR.po | 4 +- addons/analytic_user_function/i18n/es_EC.po | 4 +- addons/analytic_user_function/i18n/es_PY.po | 4 +- addons/analytic_user_function/i18n/et.po | 4 +- addons/analytic_user_function/i18n/fa.po | 4 +- addons/analytic_user_function/i18n/fi.po | 4 +- addons/analytic_user_function/i18n/fr.po | 4 +- addons/analytic_user_function/i18n/gl.po | 4 +- addons/analytic_user_function/i18n/gu.po | 4 +- addons/analytic_user_function/i18n/hr.po | 4 +- addons/analytic_user_function/i18n/hu.po | 4 +- addons/analytic_user_function/i18n/id.po | 4 +- addons/analytic_user_function/i18n/it.po | 4 +- addons/analytic_user_function/i18n/ja.po | 4 +- addons/analytic_user_function/i18n/ko.po | 4 +- addons/analytic_user_function/i18n/lt.po | 4 +- addons/analytic_user_function/i18n/mk.po | 4 +- addons/analytic_user_function/i18n/mn.po | 4 +- addons/analytic_user_function/i18n/nb.po | 4 +- addons/analytic_user_function/i18n/nl.po | 4 +- addons/analytic_user_function/i18n/nl_BE.po | 4 +- addons/analytic_user_function/i18n/oc.po | 4 +- addons/analytic_user_function/i18n/pl.po | 4 +- addons/analytic_user_function/i18n/pt.po | 4 +- addons/analytic_user_function/i18n/pt_BR.po | 4 +- addons/analytic_user_function/i18n/ro.po | 4 +- addons/analytic_user_function/i18n/ru.po | 4 +- addons/analytic_user_function/i18n/sk.po | 4 +- addons/analytic_user_function/i18n/sl.po | 4 +- addons/analytic_user_function/i18n/sq.po | 4 +- addons/analytic_user_function/i18n/sr.po | 4 +- .../analytic_user_function/i18n/sr@latin.po | 4 +- addons/analytic_user_function/i18n/sv.po | 4 +- addons/analytic_user_function/i18n/tlh.po | 4 +- addons/analytic_user_function/i18n/tr.po | 4 +- addons/analytic_user_function/i18n/uk.po | 4 +- addons/analytic_user_function/i18n/vi.po | 4 +- addons/analytic_user_function/i18n/zh_CN.po | 4 +- addons/analytic_user_function/i18n/zh_TW.po | 4 +- addons/anonymization/i18n/ar.po | 4 +- addons/anonymization/i18n/bg.po | 4 +- addons/anonymization/i18n/ca.po | 4 +- addons/anonymization/i18n/da.po | 4 +- addons/anonymization/i18n/de.po | 4 +- addons/anonymization/i18n/es.po | 26 +- addons/anonymization/i18n/es_CR.po | 4 +- addons/anonymization/i18n/es_EC.po | 4 +- addons/anonymization/i18n/es_PY.po | 4 +- addons/anonymization/i18n/et.po | 4 +- addons/anonymization/i18n/fa.po | 4 +- addons/anonymization/i18n/fi.po | 4 +- addons/anonymization/i18n/fr.po | 4 +- addons/anonymization/i18n/gl.po | 4 +- addons/anonymization/i18n/hr.po | 4 +- addons/anonymization/i18n/it.po | 6 +- addons/anonymization/i18n/ja.po | 4 +- addons/anonymization/i18n/lv.po | 4 +- addons/anonymization/i18n/mn.po | 4 +- addons/anonymization/i18n/nb.po | 4 +- addons/anonymization/i18n/nl.po | 4 +- addons/anonymization/i18n/pl.po | 4 +- addons/anonymization/i18n/pt.po | 2 +- addons/anonymization/i18n/pt_BR.po | 28 +- addons/anonymization/i18n/ro.po | 4 +- addons/anonymization/i18n/ru.po | 4 +- addons/anonymization/i18n/sq.po | 4 +- addons/anonymization/i18n/sr@latin.po | 4 +- addons/anonymization/i18n/sv.po | 4 +- addons/anonymization/i18n/tr.po | 4 +- addons/anonymization/i18n/zh_CN.po | 4 +- addons/anonymization/i18n/zh_TW.po | 4 +- addons/association/i18n/ar.po | 4 +- addons/association/i18n/bg.po | 4 +- addons/association/i18n/bs.po | 4 +- addons/association/i18n/ca.po | 4 +- addons/association/i18n/cs.po | 4 +- addons/association/i18n/da.po | 4 +- addons/association/i18n/de.po | 4 +- addons/association/i18n/el.po | 4 +- addons/association/i18n/en_GB.po | 4 +- addons/association/i18n/es.po | 4 +- addons/association/i18n/es_CR.po | 4 +- addons/association/i18n/es_EC.po | 4 +- addons/association/i18n/es_PY.po | 4 +- addons/association/i18n/et.po | 4 +- addons/association/i18n/fa.po | 4 +- addons/association/i18n/fi.po | 4 +- addons/association/i18n/fr.po | 4 +- addons/association/i18n/gl.po | 4 +- addons/association/i18n/gu.po | 4 +- addons/association/i18n/hr.po | 4 +- addons/association/i18n/hu.po | 4 +- addons/association/i18n/id.po | 4 +- addons/association/i18n/it.po | 4 +- addons/association/i18n/ja.po | 4 +- addons/association/i18n/ko.po | 4 +- addons/association/i18n/lo.po | 4 +- addons/association/i18n/lt.po | 4 +- addons/association/i18n/lv.po | 4 +- addons/association/i18n/mn.po | 4 +- addons/association/i18n/nb.po | 4 +- addons/association/i18n/nl.po | 4 +- addons/association/i18n/pl.po | 4 +- addons/association/i18n/pt.po | 4 +- addons/association/i18n/pt_BR.po | 4 +- addons/association/i18n/ro.po | 4 +- addons/association/i18n/ru.po | 4 +- addons/association/i18n/sl.po | 4 +- addons/association/i18n/sq.po | 4 +- addons/association/i18n/sr.po | 4 +- addons/association/i18n/sr@latin.po | 4 +- addons/association/i18n/sv.po | 4 +- addons/association/i18n/tlh.po | 4 +- addons/association/i18n/tr.po | 4 +- addons/association/i18n/uk.po | 4 +- addons/association/i18n/vi.po | 4 +- addons/association/i18n/zh_CN.po | 4 +- addons/association/i18n/zh_TW.po | 4 +- addons/audittrail/i18n/ar.po | 4 +- addons/audittrail/i18n/bg.po | 4 +- addons/audittrail/i18n/bs.po | 4 +- addons/audittrail/i18n/ca.po | 4 +- addons/audittrail/i18n/cs.po | 4 +- addons/audittrail/i18n/da.po | 4 +- addons/audittrail/i18n/de.po | 4 +- addons/audittrail/i18n/el.po | 4 +- addons/audittrail/i18n/es.po | 4 +- addons/audittrail/i18n/es_AR.po | 4 +- addons/audittrail/i18n/es_CR.po | 4 +- addons/audittrail/i18n/es_EC.po | 4 +- addons/audittrail/i18n/es_PY.po | 4 +- addons/audittrail/i18n/et.po | 4 +- addons/audittrail/i18n/fa.po | 4 +- addons/audittrail/i18n/fa_AF.po | 401 ++++ addons/audittrail/i18n/fi.po | 4 +- addons/audittrail/i18n/fr.po | 4 +- addons/audittrail/i18n/gl.po | 4 +- addons/audittrail/i18n/gu.po | 4 +- addons/audittrail/i18n/hr.po | 4 +- addons/audittrail/i18n/hu.po | 4 +- addons/audittrail/i18n/id.po | 4 +- addons/audittrail/i18n/it.po | 4 +- addons/audittrail/i18n/ja.po | 4 +- addons/audittrail/i18n/ko.po | 4 +- addons/audittrail/i18n/lt.po | 4 +- addons/audittrail/i18n/lv.po | 4 +- addons/audittrail/i18n/mn.po | 4 +- addons/audittrail/i18n/nb.po | 4 +- addons/audittrail/i18n/nl.po | 4 +- addons/audittrail/i18n/nl_BE.po | 4 +- addons/audittrail/i18n/oc.po | 4 +- addons/audittrail/i18n/pl.po | 4 +- addons/audittrail/i18n/pt.po | 4 +- addons/audittrail/i18n/pt_BR.po | 4 +- addons/audittrail/i18n/ro.po | 4 +- addons/audittrail/i18n/ru.po | 4 +- addons/audittrail/i18n/sl.po | 4 +- addons/audittrail/i18n/sq.po | 4 +- addons/audittrail/i18n/sr@latin.po | 4 +- addons/audittrail/i18n/sv.po | 4 +- addons/audittrail/i18n/tlh.po | 4 +- addons/audittrail/i18n/tr.po | 4 +- addons/audittrail/i18n/uk.po | 4 +- addons/audittrail/i18n/vi.po | 4 +- addons/audittrail/i18n/zh_CN.po | 4 +- addons/audittrail/i18n/zh_TW.po | 4 +- addons/auth_crypt/i18n/de.po | 4 +- addons/auth_crypt/i18n/es.po | 4 +- addons/auth_crypt/i18n/fr.po | 4 +- addons/auth_crypt/i18n/it.po | 4 +- addons/auth_crypt/i18n/nl.po | 4 +- addons/auth_crypt/i18n/pt.po | 2 +- addons/auth_crypt/i18n/pt_BR.po | 4 +- addons/auth_crypt/i18n/ro.po | 4 +- addons/auth_crypt/i18n/sl.po | 6 +- addons/auth_crypt/i18n/sv.po | 51 +- addons/auth_crypt/i18n/zh_CN.po | 4 +- addons/auth_ldap/i18n/ar.po | 4 +- addons/auth_ldap/i18n/bg.po | 4 +- addons/auth_ldap/i18n/ca.po | 4 +- addons/auth_ldap/i18n/da.po | 4 +- addons/auth_ldap/i18n/de.po | 4 +- addons/auth_ldap/i18n/es.po | 4 +- addons/auth_ldap/i18n/es_CR.po | 4 +- addons/auth_ldap/i18n/fi.po | 4 +- addons/auth_ldap/i18n/fr.po | 4 +- addons/auth_ldap/i18n/gl.po | 4 +- addons/auth_ldap/i18n/hr.po | 4 +- addons/auth_ldap/i18n/hu.po | 4 +- addons/auth_ldap/i18n/it.po | 4 +- addons/auth_ldap/i18n/ja.po | 4 +- addons/auth_ldap/i18n/mn.po | 4 +- addons/auth_ldap/i18n/nb.po | 4 +- addons/auth_ldap/i18n/nl.po | 4 +- addons/auth_ldap/i18n/pl.po | 4 +- addons/auth_ldap/i18n/pt.po | 4 +- addons/auth_ldap/i18n/pt_BR.po | 4 +- addons/auth_ldap/i18n/ro.po | 4 +- addons/auth_ldap/i18n/ru.po | 4 +- addons/auth_ldap/i18n/sl.po | 6 +- addons/auth_ldap/i18n/sv.po | 4 +- addons/auth_ldap/i18n/tr.po | 4 +- addons/auth_ldap/i18n/zh_CN.po | 4 +- addons/auth_oauth/i18n/ar.po | 4 +- addons/auth_oauth/i18n/de.po | 4 +- addons/auth_oauth/i18n/es.po | 4 +- addons/auth_oauth/i18n/fr.po | 4 +- addons/auth_oauth/i18n/hr.po | 4 +- addons/auth_oauth/i18n/it.po | 4 +- addons/auth_oauth/i18n/nb.po | 4 +- addons/auth_oauth/i18n/nl.po | 4 +- addons/auth_oauth/i18n/pl.po | 4 +- addons/auth_oauth/i18n/pt.po | 4 +- addons/auth_oauth/i18n/pt_BR.po | 4 +- addons/auth_oauth/i18n/ro.po | 4 +- addons/auth_oauth/i18n/sl.po | 4 +- addons/auth_oauth/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/de.po | 4 +- addons/auth_oauth_signup/i18n/es.po | 4 +- addons/auth_oauth_signup/i18n/fr.po | 4 +- addons/auth_oauth_signup/i18n/it.po | 4 +- addons/auth_oauth_signup/i18n/nl.po | 4 +- addons/auth_oauth_signup/i18n/pt.po | 4 +- addons/auth_oauth_signup/i18n/pt_BR.po | 4 +- addons/auth_oauth_signup/i18n/ro.po | 4 +- addons/auth_oauth_signup/i18n/sl.po | 6 +- addons/auth_oauth_signup/i18n/sv.po | 23 + addons/auth_oauth_signup/i18n/zh_CN.po | 6 +- addons/auth_openid/i18n/ar.po | 4 +- addons/auth_openid/i18n/de.po | 4 +- addons/auth_openid/i18n/es.po | 4 +- addons/auth_openid/i18n/es_CR.po | 4 +- addons/auth_openid/i18n/fi.po | 4 +- addons/auth_openid/i18n/fr.po | 4 +- addons/auth_openid/i18n/gu.po | 4 +- addons/auth_openid/i18n/hr.po | 4 +- addons/auth_openid/i18n/it.po | 4 +- addons/auth_openid/i18n/ja.po | 4 +- addons/auth_openid/i18n/nb.po | 4 +- addons/auth_openid/i18n/nl.po | 4 +- addons/auth_openid/i18n/pl.po | 4 +- addons/auth_openid/i18n/pt.po | 4 +- addons/auth_openid/i18n/pt_BR.po | 4 +- addons/auth_openid/i18n/ro.po | 4 +- addons/auth_openid/i18n/sk.po | 4 +- addons/auth_openid/i18n/sl.po | 6 +- addons/auth_openid/i18n/sr@latin.po | 4 +- addons/auth_openid/i18n/sv.po | 20 +- addons/auth_openid/i18n/tr.po | 4 +- addons/auth_openid/i18n/zh_CN.po | 4 +- addons/auth_signup/i18n/ar.po | 4 +- addons/auth_signup/i18n/de.po | 4 +- addons/auth_signup/i18n/es.po | 11 +- addons/auth_signup/i18n/fr.po | 4 +- addons/auth_signup/i18n/hr.po | 4 +- addons/auth_signup/i18n/hu.po | 4 +- addons/auth_signup/i18n/it.po | 4 +- addons/auth_signup/i18n/nb.po | 4 +- addons/auth_signup/i18n/nl.po | 4 +- addons/auth_signup/i18n/pl.po | 4 +- addons/auth_signup/i18n/pt.po | 4 +- addons/auth_signup/i18n/pt_BR.po | 21 +- addons/auth_signup/i18n/ru.po | 4 +- addons/auth_signup/i18n/sl.po | 6 +- addons/auth_signup/i18n/tr.po | 4 +- addons/auth_signup/i18n/zh_CN.po | 4 +- addons/base_action_rule/i18n/ar.po | 4 +- addons/base_action_rule/i18n/bg.po | 4 +- addons/base_action_rule/i18n/bs.po | 4 +- addons/base_action_rule/i18n/ca.po | 4 +- addons/base_action_rule/i18n/da.po | 4 +- addons/base_action_rule/i18n/de.po | 4 +- addons/base_action_rule/i18n/el.po | 4 +- addons/base_action_rule/i18n/es.po | 62 +- addons/base_action_rule/i18n/es_CR.po | 4 +- addons/base_action_rule/i18n/es_EC.po | 4 +- addons/base_action_rule/i18n/es_PY.po | 4 +- addons/base_action_rule/i18n/fa.po | 4 +- addons/base_action_rule/i18n/fi.po | 4 +- addons/base_action_rule/i18n/fr.po | 4 +- addons/base_action_rule/i18n/gl.po | 4 +- addons/base_action_rule/i18n/gu.po | 4 +- addons/base_action_rule/i18n/hr.po | 4 +- addons/base_action_rule/i18n/hu.po | 4 +- addons/base_action_rule/i18n/it.po | 4 +- addons/base_action_rule/i18n/ja.po | 4 +- addons/base_action_rule/i18n/lt.po | 4 +- addons/base_action_rule/i18n/lv.po | 4 +- addons/base_action_rule/i18n/mn.po | 4 +- addons/base_action_rule/i18n/nb.po | 4 +- addons/base_action_rule/i18n/nl.po | 4 +- addons/base_action_rule/i18n/pl.po | 4 +- addons/base_action_rule/i18n/pt.po | 2 +- addons/base_action_rule/i18n/pt_BR.po | 71 +- addons/base_action_rule/i18n/ro.po | 4 +- addons/base_action_rule/i18n/ru.po | 4 +- addons/base_action_rule/i18n/sl.po | 6 +- addons/base_action_rule/i18n/sq.po | 4 +- addons/base_action_rule/i18n/sr.po | 4 +- addons/base_action_rule/i18n/sr@latin.po | 4 +- addons/base_action_rule/i18n/sv.po | 4 +- addons/base_action_rule/i18n/tr.po | 4 +- addons/base_action_rule/i18n/zh_CN.po | 4 +- addons/base_action_rule/i18n/zh_TW.po | 4 +- addons/base_calendar/i18n/af.po | 4 +- addons/base_calendar/i18n/ar.po | 4 +- addons/base_calendar/i18n/bg.po | 4 +- addons/base_calendar/i18n/bn.po | 4 +- addons/base_calendar/i18n/bs.po | 4 +- addons/base_calendar/i18n/ca.po | 4 +- addons/base_calendar/i18n/cs.po | 4 +- addons/base_calendar/i18n/da.po | 4 +- addons/base_calendar/i18n/de.po | 4 +- addons/base_calendar/i18n/el.po | 4 +- addons/base_calendar/i18n/es.po | 8 +- addons/base_calendar/i18n/es_CR.po | 4 +- addons/base_calendar/i18n/es_EC.po | 4 +- addons/base_calendar/i18n/es_PY.po | 4 +- addons/base_calendar/i18n/et.po | 4 +- addons/base_calendar/i18n/fa.po | 4 +- addons/base_calendar/i18n/fi.po | 4 +- addons/base_calendar/i18n/fr.po | 4 +- addons/base_calendar/i18n/gl.po | 4 +- addons/base_calendar/i18n/hr.po | 4 +- addons/base_calendar/i18n/hu.po | 4 +- addons/base_calendar/i18n/id.po | 4 +- addons/base_calendar/i18n/it.po | 4 +- addons/base_calendar/i18n/ja.po | 4 +- addons/base_calendar/i18n/ln.po | 4 +- addons/base_calendar/i18n/lt.po | 4 +- addons/base_calendar/i18n/lv.po | 4 +- addons/base_calendar/i18n/mk.po | 4 +- addons/base_calendar/i18n/mn.po | 4 +- addons/base_calendar/i18n/nb.po | 4 +- addons/base_calendar/i18n/nl.po | 4 +- addons/base_calendar/i18n/pl.po | 4 +- addons/base_calendar/i18n/pt.po | 2 +- addons/base_calendar/i18n/pt_BR.po | 4 +- addons/base_calendar/i18n/ro.po | 4 +- addons/base_calendar/i18n/ru.po | 4 +- addons/base_calendar/i18n/sk.po | 4 +- addons/base_calendar/i18n/sl.po | 6 +- addons/base_calendar/i18n/sq.po | 4 +- addons/base_calendar/i18n/sr.po | 4 +- addons/base_calendar/i18n/sr@latin.po | 4 +- addons/base_calendar/i18n/sv.po | 4 +- addons/base_calendar/i18n/th.po | 4 +- addons/base_calendar/i18n/tr.po | 4 +- addons/base_calendar/i18n/zh_CN.po | 4 +- addons/base_calendar/i18n/zh_TW.po | 4 +- addons/base_gengo/i18n/ar.po | 4 +- addons/base_gengo/i18n/de.po | 4 +- addons/base_gengo/i18n/es.po | 4 +- addons/base_gengo/i18n/fr.po | 4 +- addons/base_gengo/i18n/hr.po | 4 +- addons/base_gengo/i18n/it.po | 4 +- addons/base_gengo/i18n/nb.po | 4 +- addons/base_gengo/i18n/nl.po | 4 +- addons/base_gengo/i18n/pt.po | 2 +- addons/base_gengo/i18n/pt_BR.po | 4 +- addons/base_gengo/i18n/zh_CN.po | 50 +- addons/base_iban/i18n/ar.po | 4 +- addons/base_iban/i18n/bg.po | 4 +- addons/base_iban/i18n/bs.po | 4 +- addons/base_iban/i18n/ca.po | 4 +- addons/base_iban/i18n/cs.po | 4 +- addons/base_iban/i18n/da.po | 4 +- addons/base_iban/i18n/de.po | 4 +- addons/base_iban/i18n/el.po | 4 +- addons/base_iban/i18n/en_GB.po | 4 +- addons/base_iban/i18n/es.po | 4 +- addons/base_iban/i18n/es_AR.po | 4 +- addons/base_iban/i18n/es_CR.po | 4 +- addons/base_iban/i18n/es_EC.po | 4 +- addons/base_iban/i18n/es_PY.po | 4 +- addons/base_iban/i18n/et.po | 4 +- addons/base_iban/i18n/eu.po | 4 +- addons/base_iban/i18n/fa.po | 4 +- addons/base_iban/i18n/fi.po | 4 +- addons/base_iban/i18n/fr.po | 4 +- addons/base_iban/i18n/gl.po | 4 +- addons/base_iban/i18n/gu.po | 4 +- addons/base_iban/i18n/hr.po | 4 +- addons/base_iban/i18n/hu.po | 4 +- addons/base_iban/i18n/id.po | 4 +- addons/base_iban/i18n/it.po | 4 +- addons/base_iban/i18n/ja.po | 4 +- addons/base_iban/i18n/ko.po | 4 +- addons/base_iban/i18n/lt.po | 4 +- addons/base_iban/i18n/lv.po | 4 +- addons/base_iban/i18n/mn.po | 4 +- addons/base_iban/i18n/nb.po | 4 +- addons/base_iban/i18n/nl.po | 4 +- addons/base_iban/i18n/nl_BE.po | 4 +- addons/base_iban/i18n/oc.po | 4 +- addons/base_iban/i18n/pl.po | 4 +- addons/base_iban/i18n/pt.po | 4 +- addons/base_iban/i18n/pt_BR.po | 4 +- addons/base_iban/i18n/ro.po | 4 +- addons/base_iban/i18n/ru.po | 9 +- addons/base_iban/i18n/sk.po | 4 +- addons/base_iban/i18n/sl.po | 6 +- addons/base_iban/i18n/sq.po | 4 +- addons/base_iban/i18n/sr.po | 4 +- addons/base_iban/i18n/sr@latin.po | 4 +- addons/base_iban/i18n/sv.po | 4 +- addons/base_iban/i18n/ta.po | 4 +- addons/base_iban/i18n/tlh.po | 4 +- addons/base_iban/i18n/tr.po | 4 +- addons/base_iban/i18n/uk.po | 4 +- addons/base_iban/i18n/vi.po | 4 +- addons/base_iban/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/zh_TW.po | 4 +- addons/base_import/i18n/ar.po | 4 +- addons/base_import/i18n/de.po | 4 +- addons/base_import/i18n/es.po | 6 +- addons/base_import/i18n/et.po | 4 +- addons/base_import/i18n/fr.po | 4 +- addons/base_import/i18n/hr.po | 4 +- addons/base_import/i18n/hu.po | 4 +- addons/base_import/i18n/it.po | 4 +- addons/base_import/i18n/nb.po | 4 +- addons/base_import/i18n/nl.po | 4 +- addons/base_import/i18n/pl.po | 4 +- addons/base_import/i18n/pt.po | 4 +- addons/base_import/i18n/pt_BR.po | 48 +- addons/base_import/i18n/ru.po | 4 +- addons/base_import/i18n/sl.po | 4 +- addons/base_import/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/ar.po | 4 +- addons/base_report_designer/i18n/bg.po | 4 +- addons/base_report_designer/i18n/bs.po | 4 +- addons/base_report_designer/i18n/ca.po | 4 +- addons/base_report_designer/i18n/cs.po | 4 +- addons/base_report_designer/i18n/da.po | 4 +- addons/base_report_designer/i18n/de.po | 4 +- addons/base_report_designer/i18n/el.po | 4 +- addons/base_report_designer/i18n/es.po | 4 +- addons/base_report_designer/i18n/es_AR.po | 4 +- addons/base_report_designer/i18n/es_CR.po | 4 +- addons/base_report_designer/i18n/es_EC.po | 4 +- addons/base_report_designer/i18n/es_PY.po | 4 +- addons/base_report_designer/i18n/et.po | 4 +- addons/base_report_designer/i18n/fa.po | 4 +- addons/base_report_designer/i18n/fi.po | 4 +- addons/base_report_designer/i18n/fr.po | 4 +- addons/base_report_designer/i18n/gl.po | 4 +- addons/base_report_designer/i18n/hr.po | 4 +- addons/base_report_designer/i18n/hu.po | 4 +- addons/base_report_designer/i18n/id.po | 4 +- addons/base_report_designer/i18n/it.po | 4 +- addons/base_report_designer/i18n/ja.po | 4 +- addons/base_report_designer/i18n/ko.po | 4 +- addons/base_report_designer/i18n/lt.po | 4 +- addons/base_report_designer/i18n/mn.po | 4 +- addons/base_report_designer/i18n/nb.po | 4 +- addons/base_report_designer/i18n/nl.po | 4 +- addons/base_report_designer/i18n/nl_BE.po | 4 +- addons/base_report_designer/i18n/pl.po | 4 +- addons/base_report_designer/i18n/pt.po | 4 +- addons/base_report_designer/i18n/pt_BR.po | 4 +- addons/base_report_designer/i18n/ro.po | 4 +- addons/base_report_designer/i18n/ru.po | 10 +- addons/base_report_designer/i18n/sk.po | 4 +- addons/base_report_designer/i18n/sl.po | 4 +- addons/base_report_designer/i18n/sq.po | 4 +- addons/base_report_designer/i18n/sr.po | 4 +- addons/base_report_designer/i18n/sr@latin.po | 4 +- addons/base_report_designer/i18n/sv.po | 28 +- addons/base_report_designer/i18n/tlh.po | 4 +- addons/base_report_designer/i18n/tr.po | 4 +- addons/base_report_designer/i18n/uk.po | 4 +- addons/base_report_designer/i18n/vi.po | 4 +- addons/base_report_designer/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/zh_TW.po | 4 +- addons/base_setup/i18n/ar.po | 4 +- addons/base_setup/i18n/bg.po | 4 +- addons/base_setup/i18n/bs.po | 4 +- addons/base_setup/i18n/ca.po | 4 +- addons/base_setup/i18n/cs.po | 4 +- addons/base_setup/i18n/da.po | 4 +- addons/base_setup/i18n/de.po | 4 +- addons/base_setup/i18n/el.po | 4 +- addons/base_setup/i18n/en_GB.po | 4 +- addons/base_setup/i18n/es.po | 21 +- addons/base_setup/i18n/es_AR.po | 4 +- addons/base_setup/i18n/es_CL.po | 4 +- addons/base_setup/i18n/es_CR.po | 4 +- addons/base_setup/i18n/es_EC.po | 4 +- addons/base_setup/i18n/es_MX.po | 4 +- addons/base_setup/i18n/es_PY.po | 4 +- addons/base_setup/i18n/et.po | 4 +- addons/base_setup/i18n/fa.po | 4 +- addons/base_setup/i18n/fi.po | 4 +- addons/base_setup/i18n/fr.po | 4 +- addons/base_setup/i18n/gl.po | 4 +- addons/base_setup/i18n/gu.po | 4 +- addons/base_setup/i18n/hr.po | 4 +- addons/base_setup/i18n/hu.po | 4 +- addons/base_setup/i18n/id.po | 4 +- addons/base_setup/i18n/it.po | 4 +- addons/base_setup/i18n/ja.po | 4 +- addons/base_setup/i18n/ko.po | 4 +- addons/base_setup/i18n/lt.po | 4 +- addons/base_setup/i18n/lv.po | 4 +- addons/base_setup/i18n/mn.po | 4 +- addons/base_setup/i18n/nb.po | 4 +- addons/base_setup/i18n/nl.po | 4 +- addons/base_setup/i18n/nl_BE.po | 4 +- addons/base_setup/i18n/pl.po | 4 +- addons/base_setup/i18n/pt.po | 4 +- addons/base_setup/i18n/pt_BR.po | 4 +- addons/base_setup/i18n/ro.po | 4 +- addons/base_setup/i18n/ru.po | 40 +- addons/base_setup/i18n/sk.po | 4 +- addons/base_setup/i18n/sl.po | 4 +- addons/base_setup/i18n/sq.po | 4 +- addons/base_setup/i18n/sr.po | 4 +- addons/base_setup/i18n/sr@latin.po | 4 +- addons/base_setup/i18n/sv.po | 4 +- addons/base_setup/i18n/th.po | 4 +- addons/base_setup/i18n/tlh.po | 4 +- addons/base_setup/i18n/tr.po | 4 +- addons/base_setup/i18n/uk.po | 4 +- addons/base_setup/i18n/vi.po | 4 +- addons/base_setup/i18n/zh_CN.po | 4 +- addons/base_setup/i18n/zh_TW.po | 4 +- addons/base_status/i18n/ar.po | 4 +- addons/base_status/i18n/de.po | 4 +- addons/base_status/i18n/es.po | 4 +- addons/base_status/i18n/fr.po | 4 +- addons/base_status/i18n/hr.po | 4 +- addons/base_status/i18n/id.po | 4 +- addons/base_status/i18n/it.po | 4 +- addons/base_status/i18n/mn.po | 4 +- addons/base_status/i18n/nl.po | 4 +- addons/base_status/i18n/pl.po | 4 +- addons/base_status/i18n/pt.po | 4 +- addons/base_status/i18n/pt_BR.po | 4 +- addons/base_status/i18n/ru.po | 4 +- addons/base_status/i18n/sl.po | 6 +- addons/base_status/i18n/zh_CN.po | 4 +- addons/base_vat/i18n/ar.po | 4 +- addons/base_vat/i18n/bg.po | 4 +- addons/base_vat/i18n/bs.po | 4 +- addons/base_vat/i18n/ca.po | 4 +- addons/base_vat/i18n/cs.po | 6 +- addons/base_vat/i18n/da.po | 4 +- addons/base_vat/i18n/de.po | 4 +- addons/base_vat/i18n/el.po | 4 +- addons/base_vat/i18n/en_AU.po | 4 +- addons/base_vat/i18n/en_GB.po | 4 +- addons/base_vat/i18n/es.po | 4 +- addons/base_vat/i18n/es_AR.po | 4 +- addons/base_vat/i18n/es_CL.po | 4 +- addons/base_vat/i18n/es_CR.po | 4 +- addons/base_vat/i18n/es_EC.po | 4 +- addons/base_vat/i18n/es_MX.po | 4 +- addons/base_vat/i18n/es_PY.po | 4 +- addons/base_vat/i18n/et.po | 4 +- addons/base_vat/i18n/eu.po | 4 +- addons/base_vat/i18n/fa.po | 4 +- addons/base_vat/i18n/fi.po | 4 +- addons/base_vat/i18n/fr.po | 4 +- addons/base_vat/i18n/gl.po | 4 +- addons/base_vat/i18n/gu.po | 4 +- addons/base_vat/i18n/hr.po | 4 +- addons/base_vat/i18n/hu.po | 4 +- addons/base_vat/i18n/id.po | 4 +- addons/base_vat/i18n/it.po | 4 +- addons/base_vat/i18n/ja.po | 4 +- addons/base_vat/i18n/ko.po | 4 +- addons/base_vat/i18n/lt.po | 4 +- addons/base_vat/i18n/lv.po | 4 +- addons/base_vat/i18n/mn.po | 4 +- addons/base_vat/i18n/nb.po | 4 +- addons/base_vat/i18n/nl.po | 4 +- addons/base_vat/i18n/nl_BE.po | 4 +- addons/base_vat/i18n/oc.po | 4 +- addons/base_vat/i18n/pl.po | 4 +- addons/base_vat/i18n/pt.po | 4 +- addons/base_vat/i18n/pt_BR.po | 4 +- addons/base_vat/i18n/ro.po | 4 +- addons/base_vat/i18n/ru.po | 8 +- addons/base_vat/i18n/sk.po | 4 +- addons/base_vat/i18n/sl.po | 6 +- addons/base_vat/i18n/sq.po | 4 +- addons/base_vat/i18n/sr.po | 4 +- addons/base_vat/i18n/sr@latin.po | 4 +- addons/base_vat/i18n/sv.po | 4 +- addons/base_vat/i18n/th.po | 4 +- addons/base_vat/i18n/tlh.po | 4 +- addons/base_vat/i18n/tr.po | 4 +- addons/base_vat/i18n/uk.po | 4 +- addons/base_vat/i18n/vi.po | 4 +- addons/base_vat/i18n/zh_CN.po | 4 +- addons/base_vat/i18n/zh_TW.po | 4 +- addons/board/i18n/ar.po | 4 +- addons/board/i18n/bg.po | 4 +- addons/board/i18n/br.po | 4 +- addons/board/i18n/bs.po | 4 +- addons/board/i18n/ca.po | 4 +- addons/board/i18n/cs.po | 4 +- addons/board/i18n/da.po | 4 +- addons/board/i18n/de.po | 4 +- addons/board/i18n/el.po | 4 +- addons/board/i18n/es.po | 4 +- addons/board/i18n/es_AR.po | 4 +- addons/board/i18n/es_CL.po | 4 +- addons/board/i18n/es_CR.po | 4 +- addons/board/i18n/es_EC.po | 4 +- addons/board/i18n/es_PY.po | 4 +- addons/board/i18n/et.po | 4 +- addons/board/i18n/fa.po | 4 +- addons/board/i18n/fi.po | 4 +- addons/board/i18n/fr.po | 4 +- addons/board/i18n/gl.po | 4 +- addons/board/i18n/gu.po | 4 +- addons/board/i18n/hr.po | 4 +- addons/board/i18n/hu.po | 4 +- addons/board/i18n/id.po | 4 +- addons/board/i18n/it.po | 4 +- addons/board/i18n/ja.po | 4 +- addons/board/i18n/ko.po | 4 +- addons/board/i18n/ln.po | 4 +- addons/board/i18n/lt.po | 4 +- addons/board/i18n/lv.po | 4 +- addons/board/i18n/mn.po | 4 +- addons/board/i18n/nb.po | 4 +- addons/board/i18n/nl.po | 4 +- addons/board/i18n/nl_BE.po | 4 +- addons/board/i18n/pl.po | 4 +- addons/board/i18n/pt.po | 4 +- addons/board/i18n/pt_BR.po | 4 +- addons/board/i18n/ro.po | 4 +- addons/board/i18n/ru.po | 4 +- addons/board/i18n/sk.po | 4 +- addons/board/i18n/sl.po | 4 +- addons/board/i18n/sq.po | 4 +- addons/board/i18n/sr.po | 4 +- addons/board/i18n/sr@latin.po | 4 +- addons/board/i18n/sv.po | 4 +- addons/board/i18n/th.po | 4 +- addons/board/i18n/tlh.po | 4 +- addons/board/i18n/tr.po | 4 +- addons/board/i18n/uk.po | 4 +- addons/board/i18n/vi.po | 4 +- addons/board/i18n/zh_CN.po | 4 +- addons/board/i18n/zh_TW.po | 4 +- addons/claim_from_delivery/i18n/ar.po | 4 +- addons/claim_from_delivery/i18n/bg.po | 4 +- addons/claim_from_delivery/i18n/ca.po | 4 +- addons/claim_from_delivery/i18n/cs.po | 4 +- addons/claim_from_delivery/i18n/da.po | 4 +- addons/claim_from_delivery/i18n/de.po | 4 +- addons/claim_from_delivery/i18n/en_GB.po | 4 +- addons/claim_from_delivery/i18n/es.po | 4 +- addons/claim_from_delivery/i18n/es_AR.po | 4 +- addons/claim_from_delivery/i18n/es_CL.po | 4 +- addons/claim_from_delivery/i18n/es_CR.po | 4 +- addons/claim_from_delivery/i18n/es_EC.po | 4 +- addons/claim_from_delivery/i18n/es_PY.po | 4 +- addons/claim_from_delivery/i18n/fa.po | 4 +- addons/claim_from_delivery/i18n/fi.po | 4 +- addons/claim_from_delivery/i18n/fr.po | 4 +- addons/claim_from_delivery/i18n/gl.po | 4 +- addons/claim_from_delivery/i18n/gu.po | 4 +- addons/claim_from_delivery/i18n/hr.po | 4 +- addons/claim_from_delivery/i18n/hu.po | 4 +- addons/claim_from_delivery/i18n/id.po | 4 +- addons/claim_from_delivery/i18n/it.po | 4 +- addons/claim_from_delivery/i18n/ja.po | 4 +- addons/claim_from_delivery/i18n/lo.po | 4 +- addons/claim_from_delivery/i18n/lt.po | 4 +- addons/claim_from_delivery/i18n/mn.po | 4 +- addons/claim_from_delivery/i18n/nb.po | 4 +- addons/claim_from_delivery/i18n/nl.po | 4 +- addons/claim_from_delivery/i18n/nl_BE.po | 4 +- addons/claim_from_delivery/i18n/oc.po | 4 +- addons/claim_from_delivery/i18n/pl.po | 4 +- addons/claim_from_delivery/i18n/pt.po | 4 +- addons/claim_from_delivery/i18n/pt_BR.po | 4 +- addons/claim_from_delivery/i18n/ro.po | 4 +- addons/claim_from_delivery/i18n/ru.po | 4 +- addons/claim_from_delivery/i18n/sl.po | 6 +- addons/claim_from_delivery/i18n/sq.po | 4 +- addons/claim_from_delivery/i18n/sr.po | 4 +- addons/claim_from_delivery/i18n/sr@latin.po | 4 +- addons/claim_from_delivery/i18n/sv.po | 4 +- addons/claim_from_delivery/i18n/ta.po | 4 +- addons/claim_from_delivery/i18n/tr.po | 4 +- addons/claim_from_delivery/i18n/zh_CN.po | 4 +- addons/claim_from_delivery/i18n/zh_TW.po | 4 +- addons/contacts/i18n/ar.po | 4 +- addons/contacts/i18n/de.po | 4 +- addons/contacts/i18n/es.po | 4 +- addons/contacts/i18n/et.po | 4 +- addons/contacts/i18n/fr.po | 4 +- addons/contacts/i18n/hr.po | 4 +- addons/contacts/i18n/hu.po | 4 +- addons/contacts/i18n/it.po | 4 +- addons/contacts/i18n/nl.po | 4 +- addons/contacts/i18n/pl.po | 4 +- addons/contacts/i18n/pt.po | 4 +- addons/contacts/i18n/pt_BR.po | 4 +- addons/contacts/i18n/ro.po | 4 +- addons/contacts/i18n/ru.po | 4 +- addons/contacts/i18n/sl.po | 6 +- addons/contacts/i18n/sv.po | 37 + addons/contacts/i18n/tr.po | 4 +- addons/contacts/i18n/zh_CN.po | 4 +- addons/contacts/i18n/zh_TW.po | 4 +- addons/crm/i18n/ar.po | 4 +- addons/crm/i18n/bg.po | 4 +- addons/crm/i18n/bs.po | 4 +- addons/crm/i18n/ca.po | 4 +- addons/crm/i18n/cs.po | 4 +- addons/crm/i18n/da.po | 4 +- addons/crm/i18n/de.po | 4 +- addons/crm/i18n/el.po | 4 +- addons/crm/i18n/es.po | 81 +- addons/crm/i18n/es_AR.po | 4 +- addons/crm/i18n/es_CR.po | 4 +- addons/crm/i18n/es_EC.po | 4 +- addons/crm/i18n/es_PY.po | 4 +- addons/crm/i18n/et.po | 4 +- addons/crm/i18n/fi.po | 4 +- addons/crm/i18n/fr.po | 4 +- addons/crm/i18n/gl.po | 4 +- addons/crm/i18n/gu.po | 4 +- addons/crm/i18n/hr.po | 4 +- addons/crm/i18n/hu.po | 4 +- addons/crm/i18n/id.po | 4 +- addons/crm/i18n/it.po | 4 +- addons/crm/i18n/ja.po | 4 +- addons/crm/i18n/ko.po | 4 +- addons/crm/i18n/lo.po | 4 +- addons/crm/i18n/lt.po | 4 +- addons/crm/i18n/lv.po | 4 +- addons/crm/i18n/mn.po | 4 +- addons/crm/i18n/nb.po | 4 +- addons/crm/i18n/nl.po | 4 +- addons/crm/i18n/nl_BE.po | 4 +- addons/crm/i18n/pl.po | 48 +- addons/crm/i18n/pt.po | 4 +- addons/crm/i18n/pt_BR.po | 4 +- addons/crm/i18n/ro.po | 4 +- addons/crm/i18n/ru.po | 27 +- addons/crm/i18n/sk.po | 4 +- addons/crm/i18n/sl.po | 4 +- addons/crm/i18n/sq.po | 4 +- addons/crm/i18n/sr.po | 4 +- addons/crm/i18n/sr@latin.po | 4 +- addons/crm/i18n/sv.po | 4 +- addons/crm/i18n/th.po | 4 +- addons/crm/i18n/tlh.po | 4 +- addons/crm/i18n/tr.po | 4 +- addons/crm/i18n/uk.po | 4 +- addons/crm/i18n/vi.po | 4 +- addons/crm/i18n/zh_CN.po | 4 +- addons/crm/i18n/zh_TW.po | 4 +- addons/crm_claim/i18n/ar.po | 4 +- addons/crm_claim/i18n/bg.po | 4 +- addons/crm_claim/i18n/ca.po | 4 +- addons/crm_claim/i18n/da.po | 4 +- addons/crm_claim/i18n/de.po | 4 +- addons/crm_claim/i18n/el.po | 4 +- addons/crm_claim/i18n/es.po | 4 +- addons/crm_claim/i18n/es_CR.po | 4 +- addons/crm_claim/i18n/es_EC.po | 4 +- addons/crm_claim/i18n/es_PY.po | 4 +- addons/crm_claim/i18n/fi.po | 4 +- addons/crm_claim/i18n/fr.po | 4 +- addons/crm_claim/i18n/gl.po | 4 +- addons/crm_claim/i18n/gu.po | 4 +- addons/crm_claim/i18n/hr.po | 4 +- addons/crm_claim/i18n/hu.po | 4 +- addons/crm_claim/i18n/it.po | 4 +- addons/crm_claim/i18n/ja.po | 4 +- addons/crm_claim/i18n/lt.po | 4 +- addons/crm_claim/i18n/mn.po | 4 +- addons/crm_claim/i18n/nb.po | 4 +- addons/crm_claim/i18n/nl.po | 6 +- addons/crm_claim/i18n/pl.po | 4 +- addons/crm_claim/i18n/pt.po | 2 +- addons/crm_claim/i18n/pt_BR.po | 4 +- addons/crm_claim/i18n/ro.po | 4 +- addons/crm_claim/i18n/ru.po | 4 +- addons/crm_claim/i18n/sl.po | 6 +- addons/crm_claim/i18n/sq.po | 4 +- addons/crm_claim/i18n/sr.po | 4 +- addons/crm_claim/i18n/sr@latin.po | 4 +- addons/crm_claim/i18n/sv.po | 4 +- addons/crm_claim/i18n/tr.po | 4 +- addons/crm_claim/i18n/zh_CN.po | 4 +- addons/crm_claim/i18n/zh_TW.po | 4 +- addons/crm_helpdesk/i18n/ar.po | 4 +- addons/crm_helpdesk/i18n/bg.po | 4 +- addons/crm_helpdesk/i18n/ca.po | 4 +- addons/crm_helpdesk/i18n/da.po | 4 +- addons/crm_helpdesk/i18n/de.po | 4 +- addons/crm_helpdesk/i18n/el.po | 4 +- addons/crm_helpdesk/i18n/es.po | 4 +- addons/crm_helpdesk/i18n/es_CR.po | 4 +- addons/crm_helpdesk/i18n/es_PY.po | 4 +- addons/crm_helpdesk/i18n/fi.po | 4 +- addons/crm_helpdesk/i18n/fr.po | 4 +- addons/crm_helpdesk/i18n/gl.po | 4 +- addons/crm_helpdesk/i18n/gu.po | 4 +- addons/crm_helpdesk/i18n/hr.po | 4 +- addons/crm_helpdesk/i18n/hu.po | 4 +- addons/crm_helpdesk/i18n/it.po | 4 +- addons/crm_helpdesk/i18n/ja.po | 4 +- addons/crm_helpdesk/i18n/lt.po | 4 +- addons/crm_helpdesk/i18n/lv.po | 4 +- addons/crm_helpdesk/i18n/mn.po | 4 +- addons/crm_helpdesk/i18n/nb.po | 4 +- addons/crm_helpdesk/i18n/nl.po | 4 +- addons/crm_helpdesk/i18n/pl.po | 4 +- addons/crm_helpdesk/i18n/pt.po | 4 +- addons/crm_helpdesk/i18n/pt_BR.po | 4 +- addons/crm_helpdesk/i18n/ro.po | 4 +- addons/crm_helpdesk/i18n/ru.po | 4 +- addons/crm_helpdesk/i18n/sl.po | 4 +- addons/crm_helpdesk/i18n/sq.po | 4 +- addons/crm_helpdesk/i18n/sr.po | 4 +- addons/crm_helpdesk/i18n/sr@latin.po | 4 +- addons/crm_helpdesk/i18n/sv.po | 4 +- addons/crm_helpdesk/i18n/tr.po | 4 +- addons/crm_helpdesk/i18n/zh_CN.po | 4 +- addons/crm_helpdesk/i18n/zh_TW.po | 4 +- addons/crm_partner_assign/i18n/ar.po | 4 +- addons/crm_partner_assign/i18n/bg.po | 4 +- addons/crm_partner_assign/i18n/ca.po | 4 +- addons/crm_partner_assign/i18n/da.po | 4 +- addons/crm_partner_assign/i18n/de.po | 4 +- addons/crm_partner_assign/i18n/el.po | 4 +- addons/crm_partner_assign/i18n/es.po | 8 +- addons/crm_partner_assign/i18n/es_CR.po | 4 +- addons/crm_partner_assign/i18n/es_PY.po | 4 +- addons/crm_partner_assign/i18n/fi.po | 4 +- addons/crm_partner_assign/i18n/fr.po | 4 +- addons/crm_partner_assign/i18n/gl.po | 4 +- addons/crm_partner_assign/i18n/hr.po | 4 +- addons/crm_partner_assign/i18n/hu.po | 4 +- addons/crm_partner_assign/i18n/it.po | 4 +- addons/crm_partner_assign/i18n/ja.po | 4 +- addons/crm_partner_assign/i18n/lt.po | 4 +- addons/crm_partner_assign/i18n/lv.po | 4 +- addons/crm_partner_assign/i18n/nb.po | 4 +- addons/crm_partner_assign/i18n/nl.po | 4 +- addons/crm_partner_assign/i18n/pl.po | 4 +- addons/crm_partner_assign/i18n/pt.po | 4 +- addons/crm_partner_assign/i18n/pt_BR.po | 4 +- addons/crm_partner_assign/i18n/ro.po | 4 +- addons/crm_partner_assign/i18n/ru.po | 4 +- addons/crm_partner_assign/i18n/sl.po | 6 +- addons/crm_partner_assign/i18n/sq.po | 4 +- addons/crm_partner_assign/i18n/sr@latin.po | 4 +- addons/crm_partner_assign/i18n/sv.po | 4 +- addons/crm_partner_assign/i18n/tr.po | 4 +- addons/crm_partner_assign/i18n/zh_CN.po | 4 +- addons/crm_partner_assign/i18n/zh_TW.po | 4 +- addons/crm_profiling/i18n/ar.po | 4 +- addons/crm_profiling/i18n/bg.po | 4 +- addons/crm_profiling/i18n/bs.po | 4 +- addons/crm_profiling/i18n/ca.po | 4 +- addons/crm_profiling/i18n/cs.po | 4 +- addons/crm_profiling/i18n/da.po | 4 +- addons/crm_profiling/i18n/de.po | 4 +- addons/crm_profiling/i18n/el.po | 4 +- addons/crm_profiling/i18n/en_GB.po | 4 +- addons/crm_profiling/i18n/es.po | 4 +- addons/crm_profiling/i18n/es_AR.po | 4 +- addons/crm_profiling/i18n/es_CR.po | 4 +- addons/crm_profiling/i18n/es_EC.po | 4 +- addons/crm_profiling/i18n/es_PY.po | 4 +- addons/crm_profiling/i18n/et.po | 4 +- addons/crm_profiling/i18n/fi.po | 4 +- addons/crm_profiling/i18n/fr.po | 4 +- addons/crm_profiling/i18n/gl.po | 4 +- addons/crm_profiling/i18n/gu.po | 4 +- addons/crm_profiling/i18n/hr.po | 4 +- addons/crm_profiling/i18n/hu.po | 4 +- addons/crm_profiling/i18n/id.po | 4 +- addons/crm_profiling/i18n/it.po | 4 +- addons/crm_profiling/i18n/ja.po | 4 +- addons/crm_profiling/i18n/ko.po | 4 +- addons/crm_profiling/i18n/lt.po | 4 +- addons/crm_profiling/i18n/lv.po | 4 +- addons/crm_profiling/i18n/mn.po | 4 +- addons/crm_profiling/i18n/nb.po | 4 +- addons/crm_profiling/i18n/nl.po | 4 +- addons/crm_profiling/i18n/nl_BE.po | 4 +- addons/crm_profiling/i18n/pl.po | 4 +- addons/crm_profiling/i18n/pt.po | 4 +- addons/crm_profiling/i18n/pt_BR.po | 4 +- addons/crm_profiling/i18n/ro.po | 4 +- addons/crm_profiling/i18n/ru.po | 4 +- addons/crm_profiling/i18n/sk.po | 4 +- addons/crm_profiling/i18n/sl.po | 4 +- addons/crm_profiling/i18n/sq.po | 4 +- addons/crm_profiling/i18n/sr.po | 4 +- addons/crm_profiling/i18n/sr@latin.po | 4 +- addons/crm_profiling/i18n/sv.po | 4 +- addons/crm_profiling/i18n/tlh.po | 4 +- addons/crm_profiling/i18n/tr.po | 4 +- addons/crm_profiling/i18n/uk.po | 4 +- addons/crm_profiling/i18n/vi.po | 4 +- addons/crm_profiling/i18n/zh_CN.po | 4 +- addons/crm_profiling/i18n/zh_TW.po | 4 +- addons/crm_todo/i18n/ar.po | 4 +- addons/crm_todo/i18n/de.po | 4 +- addons/crm_todo/i18n/en_GB.po | 4 +- addons/crm_todo/i18n/es.po | 4 +- addons/crm_todo/i18n/es_CR.po | 4 +- addons/crm_todo/i18n/fi.po | 4 +- addons/crm_todo/i18n/fr.po | 4 +- addons/crm_todo/i18n/gu.po | 4 +- addons/crm_todo/i18n/hr.po | 4 +- addons/crm_todo/i18n/it.po | 4 +- addons/crm_todo/i18n/ja.po | 4 +- addons/crm_todo/i18n/lt.po | 4 +- addons/crm_todo/i18n/mn.po | 4 +- addons/crm_todo/i18n/nb.po | 4 +- addons/crm_todo/i18n/nl.po | 8 +- addons/crm_todo/i18n/pl.po | 4 +- addons/crm_todo/i18n/pt.po | 4 +- addons/crm_todo/i18n/pt_BR.po | 4 +- addons/crm_todo/i18n/ro.po | 4 +- addons/crm_todo/i18n/ru.po | 4 +- addons/crm_todo/i18n/sr@latin.po | 4 +- addons/crm_todo/i18n/sv.po | 4 +- addons/crm_todo/i18n/tr.po | 4 +- addons/crm_todo/i18n/zh_CN.po | 4 +- addons/crm_todo/i18n/zh_TW.po | 4 +- addons/decimal_precision/i18n/ar.po | 4 +- addons/decimal_precision/i18n/bg.po | 4 +- addons/decimal_precision/i18n/ca.po | 4 +- addons/decimal_precision/i18n/cs.po | 4 +- addons/decimal_precision/i18n/da.po | 4 +- addons/decimal_precision/i18n/de.po | 4 +- addons/decimal_precision/i18n/el.po | 4 +- addons/decimal_precision/i18n/en_GB.po | 4 +- addons/decimal_precision/i18n/es.po | 4 +- addons/decimal_precision/i18n/es_CR.po | 4 +- addons/decimal_precision/i18n/es_EC.po | 4 +- addons/decimal_precision/i18n/es_MX.po | 4 +- addons/decimal_precision/i18n/es_PY.po | 4 +- addons/decimal_precision/i18n/fi.po | 4 +- addons/decimal_precision/i18n/fr.po | 4 +- addons/decimal_precision/i18n/gl.po | 4 +- addons/decimal_precision/i18n/gu.po | 4 +- addons/decimal_precision/i18n/hr.po | 4 +- addons/decimal_precision/i18n/hu.po | 4 +- addons/decimal_precision/i18n/id.po | 4 +- addons/decimal_precision/i18n/it.po | 4 +- addons/decimal_precision/i18n/ja.po | 4 +- addons/decimal_precision/i18n/lt.po | 4 +- addons/decimal_precision/i18n/lv.po | 4 +- addons/decimal_precision/i18n/mn.po | 4 +- addons/decimal_precision/i18n/nb.po | 4 +- addons/decimal_precision/i18n/nl.po | 4 +- addons/decimal_precision/i18n/nl_BE.po | 4 +- addons/decimal_precision/i18n/pl.po | 4 +- addons/decimal_precision/i18n/pt.po | 4 +- addons/decimal_precision/i18n/pt_BR.po | 4 +- addons/decimal_precision/i18n/ro.po | 4 +- addons/decimal_precision/i18n/ru.po | 4 +- addons/decimal_precision/i18n/sk.po | 4 +- addons/decimal_precision/i18n/sl.po | 4 +- addons/decimal_precision/i18n/sr.po | 4 +- addons/decimal_precision/i18n/sr@latin.po | 4 +- addons/decimal_precision/i18n/sv.po | 4 +- addons/decimal_precision/i18n/tr.po | 4 +- addons/decimal_precision/i18n/vi.po | 4 +- addons/decimal_precision/i18n/zh_CN.po | 4 +- addons/decimal_precision/i18n/zh_TW.po | 4 +- addons/delivery/i18n/ar.po | 4 +- addons/delivery/i18n/bg.po | 4 +- addons/delivery/i18n/bs.po | 4 +- addons/delivery/i18n/ca.po | 4 +- addons/delivery/i18n/cs.po | 4 +- addons/delivery/i18n/da.po | 4 +- addons/delivery/i18n/de.po | 4 +- addons/delivery/i18n/el.po | 4 +- addons/delivery/i18n/es.po | 22 +- addons/delivery/i18n/es_AR.po | 4 +- addons/delivery/i18n/es_CR.po | 4 +- addons/delivery/i18n/es_EC.po | 4 +- addons/delivery/i18n/es_MX.po | 4 +- addons/delivery/i18n/es_PY.po | 4 +- addons/delivery/i18n/et.po | 4 +- addons/delivery/i18n/fi.po | 4 +- addons/delivery/i18n/fr.po | 4 +- addons/delivery/i18n/gl.po | 4 +- addons/delivery/i18n/hi.po | 4 +- addons/delivery/i18n/hr.po | 4 +- addons/delivery/i18n/hu.po | 4 +- addons/delivery/i18n/id.po | 4 +- addons/delivery/i18n/it.po | 4 +- addons/delivery/i18n/ja.po | 4 +- addons/delivery/i18n/ko.po | 4 +- addons/delivery/i18n/lt.po | 4 +- addons/delivery/i18n/lv.po | 4 +- addons/delivery/i18n/mn.po | 4 +- addons/delivery/i18n/nb.po | 4 +- addons/delivery/i18n/nl.po | 4 +- addons/delivery/i18n/nl_BE.po | 4 +- addons/delivery/i18n/pl.po | 4 +- addons/delivery/i18n/pt.po | 4 +- addons/delivery/i18n/pt_BR.po | 4 +- addons/delivery/i18n/ro.po | 4 +- addons/delivery/i18n/ru.po | 40 +- addons/delivery/i18n/sl.po | 6 +- addons/delivery/i18n/sq.po | 4 +- addons/delivery/i18n/sr.po | 4 +- addons/delivery/i18n/sr@latin.po | 4 +- addons/delivery/i18n/sv.po | 4 +- addons/delivery/i18n/th.po | 4 +- addons/delivery/i18n/tlh.po | 4 +- addons/delivery/i18n/tr.po | 4 +- addons/delivery/i18n/uk.po | 4 +- addons/delivery/i18n/vi.po | 4 +- addons/delivery/i18n/zh_CN.po | 4 +- addons/delivery/i18n/zh_TW.po | 4 +- addons/document/i18n/ar.po | 4 +- addons/document/i18n/bg.po | 4 +- addons/document/i18n/bs.po | 4 +- addons/document/i18n/ca.po | 4 +- addons/document/i18n/cs.po | 4 +- addons/document/i18n/da.po | 4 +- addons/document/i18n/de.po | 4 +- addons/document/i18n/el.po | 4 +- addons/document/i18n/es.po | 8 +- addons/document/i18n/es_AR.po | 4 +- addons/document/i18n/es_CR.po | 4 +- addons/document/i18n/es_EC.po | 4 +- addons/document/i18n/es_PY.po | 4 +- addons/document/i18n/et.po | 4 +- addons/document/i18n/fi.po | 4 +- addons/document/i18n/fr.po | 4 +- addons/document/i18n/gl.po | 4 +- addons/document/i18n/gu.po | 4 +- addons/document/i18n/hi.po | 4 +- addons/document/i18n/hr.po | 4 +- addons/document/i18n/hu.po | 4 +- addons/document/i18n/id.po | 4 +- addons/document/i18n/it.po | 4 +- addons/document/i18n/ja.po | 4 +- addons/document/i18n/ko.po | 4 +- addons/document/i18n/lt.po | 4 +- addons/document/i18n/lv.po | 4 +- addons/document/i18n/mn.po | 4 +- addons/document/i18n/nb.po | 4 +- addons/document/i18n/nl.po | 4 +- addons/document/i18n/nl_BE.po | 4 +- addons/document/i18n/pl.po | 4 +- addons/document/i18n/pt.po | 4 +- addons/document/i18n/pt_BR.po | 4 +- addons/document/i18n/ro.po | 4 +- addons/document/i18n/ru.po | 26 +- addons/document/i18n/sk.po | 4 +- addons/document/i18n/sl.po | 4 +- addons/document/i18n/sq.po | 4 +- addons/document/i18n/sr.po | 4 +- addons/document/i18n/sr@latin.po | 4 +- addons/document/i18n/sv.po | 4 +- addons/document/i18n/tlh.po | 4 +- addons/document/i18n/tr.po | 4 +- addons/document/i18n/uk.po | 4 +- addons/document/i18n/vi.po | 4 +- addons/document/i18n/zh_CN.po | 4 +- addons/document/i18n/zh_HK.po | 4 +- addons/document/i18n/zh_TW.po | 4 +- addons/document_ftp/i18n/ar.po | 4 +- addons/document_ftp/i18n/bg.po | 4 +- addons/document_ftp/i18n/ca.po | 4 +- addons/document_ftp/i18n/cs.po | 4 +- addons/document_ftp/i18n/da.po | 4 +- addons/document_ftp/i18n/de.po | 4 +- addons/document_ftp/i18n/el.po | 4 +- addons/document_ftp/i18n/en_GB.po | 4 +- addons/document_ftp/i18n/es.po | 4 +- addons/document_ftp/i18n/es_CR.po | 4 +- addons/document_ftp/i18n/es_EC.po | 4 +- addons/document_ftp/i18n/es_PY.po | 4 +- addons/document_ftp/i18n/et.po | 4 +- addons/document_ftp/i18n/fi.po | 4 +- addons/document_ftp/i18n/fr.po | 4 +- addons/document_ftp/i18n/gl.po | 4 +- addons/document_ftp/i18n/hr.po | 4 +- addons/document_ftp/i18n/hu.po | 4 +- addons/document_ftp/i18n/it.po | 4 +- addons/document_ftp/i18n/ja.po | 4 +- addons/document_ftp/i18n/mn.po | 4 +- addons/document_ftp/i18n/nb.po | 4 +- addons/document_ftp/i18n/nl.po | 4 +- addons/document_ftp/i18n/pl.po | 4 +- addons/document_ftp/i18n/pt.po | 4 +- addons/document_ftp/i18n/pt_BR.po | 4 +- addons/document_ftp/i18n/ro.po | 4 +- addons/document_ftp/i18n/ru.po | 14 +- addons/document_ftp/i18n/sk.po | 4 +- addons/document_ftp/i18n/sl.po | 4 +- addons/document_ftp/i18n/sr.po | 4 +- addons/document_ftp/i18n/sr@latin.po | 4 +- addons/document_ftp/i18n/sv.po | 4 +- addons/document_ftp/i18n/tr.po | 4 +- addons/document_ftp/i18n/vi.po | 124 ++ addons/document_ftp/i18n/zh_CN.po | 4 +- addons/document_ftp/i18n/zh_TW.po | 4 +- addons/document_page/i18n/ar.po | 4 +- addons/document_page/i18n/bg.po | 4 +- addons/document_page/i18n/bs.po | 4 +- addons/document_page/i18n/ca.po | 4 +- addons/document_page/i18n/cs.po | 4 +- addons/document_page/i18n/da.po | 4 +- addons/document_page/i18n/de.po | 4 +- addons/document_page/i18n/el.po | 4 +- addons/document_page/i18n/es.po | 4 +- addons/document_page/i18n/et.po | 4 +- addons/document_page/i18n/fi.po | 4 +- addons/document_page/i18n/fr.po | 4 +- addons/document_page/i18n/gl.po | 4 +- addons/document_page/i18n/hr.po | 4 +- addons/document_page/i18n/hu.po | 4 +- addons/document_page/i18n/id.po | 4 +- addons/document_page/i18n/it.po | 4 +- addons/document_page/i18n/ja.po | 4 +- addons/document_page/i18n/ko.po | 4 +- addons/document_page/i18n/lt.po | 4 +- addons/document_page/i18n/lv.po | 4 +- addons/document_page/i18n/mn.po | 4 +- addons/document_page/i18n/nb.po | 4 +- addons/document_page/i18n/nl.po | 4 +- addons/document_page/i18n/pl.po | 4 +- addons/document_page/i18n/pt.po | 4 +- addons/document_page/i18n/pt_BR.po | 4 +- addons/document_page/i18n/ro.po | 4 +- addons/document_page/i18n/ru.po | 46 +- addons/document_page/i18n/sk.po | 4 +- addons/document_page/i18n/sl.po | 4 +- addons/document_page/i18n/sq.po | 4 +- addons/document_page/i18n/sr.po | 4 +- addons/document_page/i18n/sr@latin.po | 4 +- addons/document_page/i18n/sv.po | 4 +- addons/document_page/i18n/tlh.po | 4 +- addons/document_page/i18n/tr.po | 4 +- addons/document_page/i18n/uk.po | 4 +- addons/document_page/i18n/vi.po | 4 +- addons/document_page/i18n/zh_CN.po | 4 +- addons/document_page/i18n/zh_TW.po | 4 +- addons/document_webdav/i18n/ar.po | 4 +- addons/document_webdav/i18n/bg.po | 4 +- addons/document_webdav/i18n/ca.po | 4 +- addons/document_webdav/i18n/cs.po | 4 +- addons/document_webdav/i18n/da.po | 4 +- addons/document_webdav/i18n/de.po | 4 +- addons/document_webdav/i18n/el.po | 4 +- addons/document_webdav/i18n/en_GB.po | 4 +- addons/document_webdav/i18n/es.po | 4 +- addons/document_webdav/i18n/es_CR.po | 4 +- addons/document_webdav/i18n/es_EC.po | 4 +- addons/document_webdav/i18n/es_PY.po | 4 +- addons/document_webdav/i18n/et.po | 4 +- addons/document_webdav/i18n/eu.po | 4 +- addons/document_webdav/i18n/fi.po | 4 +- addons/document_webdav/i18n/fr.po | 4 +- addons/document_webdav/i18n/gl.po | 4 +- addons/document_webdav/i18n/gu.po | 4 +- addons/document_webdav/i18n/hr.po | 4 +- addons/document_webdav/i18n/hu.po | 4 +- addons/document_webdav/i18n/id.po | 4 +- addons/document_webdav/i18n/it.po | 4 +- addons/document_webdav/i18n/ja.po | 4 +- addons/document_webdav/i18n/mn.po | 4 +- addons/document_webdav/i18n/nb.po | 4 +- addons/document_webdav/i18n/nl.po | 4 +- addons/document_webdav/i18n/pl.po | 4 +- addons/document_webdav/i18n/pt.po | 4 +- addons/document_webdav/i18n/pt_BR.po | 4 +- addons/document_webdav/i18n/ro.po | 4 +- addons/document_webdav/i18n/ru.po | 12 +- addons/document_webdav/i18n/sl.po | 4 +- addons/document_webdav/i18n/sr.po | 4 +- addons/document_webdav/i18n/sr@latin.po | 4 +- addons/document_webdav/i18n/sv.po | 4 +- addons/document_webdav/i18n/tr.po | 4 +- addons/document_webdav/i18n/zh_CN.po | 4 +- addons/document_webdav/i18n/zh_TW.po | 4 +- addons/edi/i18n/ar.po | 4 +- addons/edi/i18n/de.po | 4 +- addons/edi/i18n/es.po | 4 +- addons/edi/i18n/es_CR.po | 4 +- addons/edi/i18n/fi.po | 4 +- addons/edi/i18n/fr.po | 4 +- addons/edi/i18n/hr.po | 4 +- addons/edi/i18n/hu.po | 4 +- addons/edi/i18n/it.po | 4 +- addons/edi/i18n/ja.po | 4 +- addons/edi/i18n/mn.po | 4 +- addons/edi/i18n/nb.po | 4 +- addons/edi/i18n/nl.po | 4 +- addons/edi/i18n/nl_BE.po | 4 +- addons/edi/i18n/pl.po | 4 +- addons/edi/i18n/pt.po | 4 +- addons/edi/i18n/pt_BR.po | 4 +- addons/edi/i18n/ro.po | 4 +- addons/edi/i18n/ru.po | 4 +- addons/edi/i18n/sl.po | 6 +- addons/edi/i18n/sv.po | 4 +- addons/edi/i18n/tr.po | 4 +- addons/edi/i18n/zh_CN.po | 4 +- addons/edi/i18n/zh_TW.po | 4 +- addons/email_template/i18n/ar.po | 4 +- addons/email_template/i18n/bg.po | 4 +- addons/email_template/i18n/ca.po | 4 +- addons/email_template/i18n/cs.po | 4 +- addons/email_template/i18n/da.po | 4 +- addons/email_template/i18n/de.po | 4 +- addons/email_template/i18n/es.po | 4 +- addons/email_template/i18n/es_CL.po | 4 +- addons/email_template/i18n/es_CR.po | 4 +- addons/email_template/i18n/es_EC.po | 4 +- addons/email_template/i18n/et.po | 4 +- addons/email_template/i18n/fi.po | 4 +- addons/email_template/i18n/fr.po | 4 +- addons/email_template/i18n/hr.po | 4 +- addons/email_template/i18n/hu.po | 4 +- addons/email_template/i18n/it.po | 4 +- addons/email_template/i18n/ja.po | 4 +- addons/email_template/i18n/mn.po | 4 +- addons/email_template/i18n/nb.po | 4 +- addons/email_template/i18n/nl.po | 4 +- addons/email_template/i18n/pl.po | 4 +- addons/email_template/i18n/pt.po | 4 +- addons/email_template/i18n/pt_BR.po | 4 +- addons/email_template/i18n/ro.po | 4 +- addons/email_template/i18n/ru.po | 34 +- addons/email_template/i18n/sl.po | 6 +- addons/email_template/i18n/sr.po | 4 +- addons/email_template/i18n/sr@latin.po | 4 +- addons/email_template/i18n/sv.po | 4 +- addons/email_template/i18n/tr.po | 4 +- addons/email_template/i18n/zh_CN.po | 4 +- addons/email_template/i18n/zh_TW.po | 4 +- addons/event/i18n/ar.po | 4 +- addons/event/i18n/bg.po | 4 +- addons/event/i18n/bs.po | 4 +- addons/event/i18n/ca.po | 4 +- addons/event/i18n/cs.po | 4 +- addons/event/i18n/da.po | 4 +- addons/event/i18n/de.po | 4 +- addons/event/i18n/el.po | 4 +- addons/event/i18n/es.po | 6 +- addons/event/i18n/es_AR.po | 4 +- addons/event/i18n/es_CR.po | 4 +- addons/event/i18n/es_EC.po | 4 +- addons/event/i18n/et.po | 4 +- addons/event/i18n/fi.po | 4 +- addons/event/i18n/fr.po | 4 +- addons/event/i18n/gu.po | 4 +- addons/event/i18n/hi.po | 4 +- addons/event/i18n/hr.po | 4 +- addons/event/i18n/hu.po | 4 +- addons/event/i18n/id.po | 4 +- addons/event/i18n/it.po | 4 +- addons/event/i18n/ja.po | 4 +- addons/event/i18n/ko.po | 4 +- addons/event/i18n/lt.po | 4 +- addons/event/i18n/mn.po | 4 +- addons/event/i18n/nb.po | 4 +- addons/event/i18n/nl.po | 8 +- addons/event/i18n/nl_BE.po | 4 +- addons/event/i18n/pl.po | 4 +- addons/event/i18n/pt.po | 4 +- addons/event/i18n/pt_BR.po | 215 +- addons/event/i18n/ro.po | 4 +- addons/event/i18n/ru.po | 4 +- addons/event/i18n/sk.po | 4 +- addons/event/i18n/sl.po | 4 +- addons/event/i18n/sq.po | 4 +- addons/event/i18n/sr.po | 4 +- addons/event/i18n/sr@latin.po | 4 +- addons/event/i18n/sv.po | 108 +- addons/event/i18n/tlh.po | 4 +- addons/event/i18n/tr.po | 4 +- addons/event/i18n/uk.po | 4 +- addons/event/i18n/vi.po | 4 +- addons/event/i18n/zh_CN.po | 4 +- addons/event/i18n/zh_TW.po | 4 +- addons/event_moodle/i18n/de.po | 4 +- addons/event_moodle/i18n/es.po | 4 +- addons/event_moodle/i18n/fr.po | 4 +- addons/event_moodle/i18n/hr.po | 4 +- addons/event_moodle/i18n/nl.po | 4 +- addons/event_moodle/i18n/pt.po | 4 +- addons/event_moodle/i18n/pt_BR.po | 4 +- addons/event_moodle/i18n/zh_CN.po | 4 +- addons/event_sale/i18n/ar.po | 4 +- addons/event_sale/i18n/de.po | 4 +- addons/event_sale/i18n/es.po | 11 +- addons/event_sale/i18n/fr.po | 4 +- addons/event_sale/i18n/hr.po | 4 +- addons/event_sale/i18n/it.po | 4 +- addons/event_sale/i18n/nl.po | 4 +- addons/event_sale/i18n/pl.po | 4 +- addons/event_sale/i18n/pt.po | 4 +- addons/event_sale/i18n/pt_BR.po | 10 +- addons/event_sale/i18n/sl.po | 6 +- addons/event_sale/i18n/zh_CN.po | 4 +- addons/fetchmail/i18n/ar.po | 4 +- addons/fetchmail/i18n/bg.po | 4 +- addons/fetchmail/i18n/ca.po | 4 +- addons/fetchmail/i18n/da.po | 4 +- addons/fetchmail/i18n/de.po | 4 +- addons/fetchmail/i18n/el.po | 4 +- addons/fetchmail/i18n/en_GB.po | 4 +- addons/fetchmail/i18n/es.po | 6 +- addons/fetchmail/i18n/es_CR.po | 4 +- addons/fetchmail/i18n/et.po | 4 +- addons/fetchmail/i18n/fi.po | 4 +- addons/fetchmail/i18n/fr.po | 4 +- addons/fetchmail/i18n/gl.po | 4 +- addons/fetchmail/i18n/hr.po | 4 +- addons/fetchmail/i18n/hu.po | 4 +- addons/fetchmail/i18n/it.po | 4 +- addons/fetchmail/i18n/ja.po | 4 +- addons/fetchmail/i18n/lt.po | 4 +- addons/fetchmail/i18n/lv.po | 4 +- addons/fetchmail/i18n/mk.po | 4 +- addons/fetchmail/i18n/mn.po | 4 +- addons/fetchmail/i18n/nb.po | 4 +- addons/fetchmail/i18n/nl.po | 4 +- addons/fetchmail/i18n/pl.po | 4 +- addons/fetchmail/i18n/pt.po | 4 +- addons/fetchmail/i18n/pt_BR.po | 6 +- addons/fetchmail/i18n/ro.po | 4 +- addons/fetchmail/i18n/ru.po | 16 +- addons/fetchmail/i18n/sl.po | 4 +- addons/fetchmail/i18n/sr.po | 4 +- addons/fetchmail/i18n/sr@latin.po | 4 +- addons/fetchmail/i18n/sv.po | 4 +- addons/fetchmail/i18n/tr.po | 4 +- addons/fetchmail/i18n/vi.po | 4 +- addons/fetchmail/i18n/zh_CN.po | 4 +- addons/fleet/i18n/de.po | 4 +- addons/fleet/i18n/es.po | 16 +- addons/fleet/i18n/es_MX.po | 4 +- addons/fleet/i18n/fr.po | 4 +- addons/fleet/i18n/hr.po | 4 +- addons/fleet/i18n/it.po | 4 +- addons/fleet/i18n/nl.po | 4 +- addons/fleet/i18n/pl.po | 4 +- addons/fleet/i18n/pt.po | 4 +- addons/fleet/i18n/pt_BR.po | 4 +- addons/fleet/i18n/ru.po | 162 +- addons/fleet/i18n/sl.po | 6 +- addons/fleet/i18n/sv.po | 1912 +++++++++++++++++ addons/fleet/i18n/zh_CN.po | 4 +- addons/google_base_account/i18n/ar.po | 4 +- addons/google_base_account/i18n/de.po | 4 +- addons/google_base_account/i18n/es.po | 4 +- addons/google_base_account/i18n/es_CR.po | 4 +- addons/google_base_account/i18n/fi.po | 4 +- addons/google_base_account/i18n/fr.po | 4 +- addons/google_base_account/i18n/hr.po | 4 +- addons/google_base_account/i18n/it.po | 4 +- addons/google_base_account/i18n/ja.po | 4 +- addons/google_base_account/i18n/mn.po | 4 +- addons/google_base_account/i18n/nb.po | 4 +- addons/google_base_account/i18n/nl.po | 4 +- addons/google_base_account/i18n/pl.po | 4 +- addons/google_base_account/i18n/pt.po | 4 +- addons/google_base_account/i18n/pt_BR.po | 4 +- addons/google_base_account/i18n/ro.po | 4 +- addons/google_base_account/i18n/ru.po | 4 +- addons/google_base_account/i18n/sl.po | 4 +- addons/google_base_account/i18n/sr@latin.po | 4 +- addons/google_base_account/i18n/sv.po | 4 +- addons/google_base_account/i18n/tr.po | 4 +- addons/google_base_account/i18n/zh_CN.po | 4 +- addons/google_docs/i18n/de.po | 4 +- addons/google_docs/i18n/es.po | 4 +- addons/google_docs/i18n/fr.po | 4 +- addons/google_docs/i18n/hr.po | 4 +- addons/google_docs/i18n/it.po | 4 +- addons/google_docs/i18n/nl.po | 4 +- addons/google_docs/i18n/pl.po | 4 +- addons/google_docs/i18n/pt.po | 4 +- addons/google_docs/i18n/pt_BR.po | 4 +- addons/google_docs/i18n/ru.po | 28 +- addons/google_docs/i18n/zh_CN.po | 4 +- addons/hr/i18n/ar.po | 4 +- addons/hr/i18n/bg.po | 4 +- addons/hr/i18n/bn.po | 4 +- addons/hr/i18n/bs.po | 4 +- addons/hr/i18n/ca.po | 4 +- addons/hr/i18n/cs.po | 4 +- addons/hr/i18n/da.po | 4 +- addons/hr/i18n/de.po | 4 +- addons/hr/i18n/el.po | 4 +- addons/hr/i18n/en_AU.po | 4 +- addons/hr/i18n/en_GB.po | 4 +- addons/hr/i18n/es.po | 6 +- addons/hr/i18n/es_AR.po | 4 +- addons/hr/i18n/es_CL.po | 4 +- addons/hr/i18n/es_CR.po | 4 +- addons/hr/i18n/es_EC.po | 4 +- addons/hr/i18n/et.po | 4 +- addons/hr/i18n/fi.po | 4 +- addons/hr/i18n/fr.po | 4 +- addons/hr/i18n/fr_BE.po | 4 +- addons/hr/i18n/gl.po | 4 +- addons/hr/i18n/gu.po | 4 +- addons/hr/i18n/hi.po | 4 +- addons/hr/i18n/hr.po | 4 +- addons/hr/i18n/hu.po | 4 +- addons/hr/i18n/id.po | 4 +- addons/hr/i18n/it.po | 4 +- addons/hr/i18n/ja.po | 4 +- addons/hr/i18n/ko.po | 4 +- addons/hr/i18n/lo.po | 4 +- addons/hr/i18n/lt.po | 4 +- addons/hr/i18n/lv.po | 4 +- addons/hr/i18n/mk.po | 4 +- addons/hr/i18n/mn.po | 4 +- addons/hr/i18n/nb.po | 4 +- addons/hr/i18n/nl.po | 4 +- addons/hr/i18n/nl_BE.po | 4 +- addons/hr/i18n/pl.po | 4 +- addons/hr/i18n/pt.po | 2 +- addons/hr/i18n/pt_BR.po | 229 +- addons/hr/i18n/ro.po | 4 +- addons/hr/i18n/ru.po | 4 +- addons/hr/i18n/sk.po | 4 +- addons/hr/i18n/sl.po | 6 +- addons/hr/i18n/sq.po | 4 +- addons/hr/i18n/sr.po | 4 +- addons/hr/i18n/sr@latin.po | 4 +- addons/hr/i18n/sv.po | 4 +- addons/hr/i18n/th.po | 4 +- addons/hr/i18n/tlh.po | 4 +- addons/hr/i18n/tr.po | 4 +- addons/hr/i18n/uk.po | 4 +- addons/hr/i18n/vi.po | 4 +- addons/hr/i18n/zh_CN.po | 4 +- addons/hr/i18n/zh_TW.po | 4 +- addons/hr_attendance/i18n/ar.po | 4 +- addons/hr_attendance/i18n/bg.po | 4 +- addons/hr_attendance/i18n/bs.po | 4 +- addons/hr_attendance/i18n/ca.po | 4 +- addons/hr_attendance/i18n/cs.po | 4 +- addons/hr_attendance/i18n/da.po | 4 +- addons/hr_attendance/i18n/de.po | 4 +- addons/hr_attendance/i18n/el.po | 4 +- addons/hr_attendance/i18n/es.po | 6 +- addons/hr_attendance/i18n/es_AR.po | 4 +- addons/hr_attendance/i18n/es_CL.po | 4 +- addons/hr_attendance/i18n/es_CR.po | 4 +- addons/hr_attendance/i18n/es_EC.po | 4 +- addons/hr_attendance/i18n/es_PY.po | 4 +- addons/hr_attendance/i18n/et.po | 4 +- addons/hr_attendance/i18n/fi.po | 4 +- addons/hr_attendance/i18n/fr.po | 4 +- addons/hr_attendance/i18n/gl.po | 4 +- addons/hr_attendance/i18n/he.po | 4 +- addons/hr_attendance/i18n/hr.po | 4 +- addons/hr_attendance/i18n/hu.po | 4 +- addons/hr_attendance/i18n/id.po | 4 +- addons/hr_attendance/i18n/it.po | 4 +- addons/hr_attendance/i18n/ja.po | 4 +- addons/hr_attendance/i18n/ko.po | 4 +- addons/hr_attendance/i18n/lt.po | 4 +- addons/hr_attendance/i18n/lv.po | 4 +- addons/hr_attendance/i18n/mk.po | 4 +- addons/hr_attendance/i18n/mn.po | 4 +- addons/hr_attendance/i18n/nb.po | 4 +- addons/hr_attendance/i18n/nl.po | 4 +- addons/hr_attendance/i18n/nl_BE.po | 4 +- addons/hr_attendance/i18n/pl.po | 4 +- addons/hr_attendance/i18n/pt.po | 4 +- addons/hr_attendance/i18n/pt_BR.po | 34 +- addons/hr_attendance/i18n/ro.po | 4 +- addons/hr_attendance/i18n/ru.po | 4 +- addons/hr_attendance/i18n/sl.po | 4 +- addons/hr_attendance/i18n/sq.po | 4 +- addons/hr_attendance/i18n/sr.po | 4 +- addons/hr_attendance/i18n/sr@latin.po | 4 +- addons/hr_attendance/i18n/sv.po | 4 +- addons/hr_attendance/i18n/tlh.po | 4 +- addons/hr_attendance/i18n/tr.po | 4 +- addons/hr_attendance/i18n/uk.po | 4 +- addons/hr_attendance/i18n/vi.po | 4 +- addons/hr_attendance/i18n/zh_CN.po | 4 +- addons/hr_attendance/i18n/zh_TW.po | 4 +- addons/hr_contract/i18n/ar.po | 4 +- addons/hr_contract/i18n/bg.po | 4 +- addons/hr_contract/i18n/bs.po | 4 +- addons/hr_contract/i18n/ca.po | 4 +- addons/hr_contract/i18n/cs.po | 4 +- addons/hr_contract/i18n/da.po | 4 +- addons/hr_contract/i18n/de.po | 4 +- addons/hr_contract/i18n/el.po | 4 +- addons/hr_contract/i18n/es.po | 4 +- addons/hr_contract/i18n/es_AR.po | 4 +- addons/hr_contract/i18n/es_CR.po | 4 +- addons/hr_contract/i18n/es_EC.po | 4 +- addons/hr_contract/i18n/es_PY.po | 4 +- addons/hr_contract/i18n/et.po | 4 +- addons/hr_contract/i18n/fi.po | 4 +- addons/hr_contract/i18n/fr.po | 4 +- addons/hr_contract/i18n/gl.po | 4 +- addons/hr_contract/i18n/gu.po | 4 +- addons/hr_contract/i18n/hi.po | 4 +- addons/hr_contract/i18n/hr.po | 4 +- addons/hr_contract/i18n/hu.po | 4 +- addons/hr_contract/i18n/id.po | 4 +- addons/hr_contract/i18n/it.po | 4 +- addons/hr_contract/i18n/ja.po | 4 +- addons/hr_contract/i18n/ko.po | 4 +- addons/hr_contract/i18n/lo.po | 4 +- addons/hr_contract/i18n/lt.po | 4 +- addons/hr_contract/i18n/lv.po | 4 +- addons/hr_contract/i18n/mk.po | 4 +- addons/hr_contract/i18n/mn.po | 4 +- addons/hr_contract/i18n/nb.po | 4 +- addons/hr_contract/i18n/nl.po | 4 +- addons/hr_contract/i18n/nl_BE.po | 4 +- addons/hr_contract/i18n/pl.po | 4 +- addons/hr_contract/i18n/pt.po | 4 +- addons/hr_contract/i18n/pt_BR.po | 15 +- addons/hr_contract/i18n/ro.po | 4 +- addons/hr_contract/i18n/ru.po | 4 +- addons/hr_contract/i18n/sl.po | 4 +- addons/hr_contract/i18n/sq.po | 4 +- addons/hr_contract/i18n/sr.po | 4 +- addons/hr_contract/i18n/sr@latin.po | 4 +- addons/hr_contract/i18n/sv.po | 12 +- addons/hr_contract/i18n/tlh.po | 4 +- addons/hr_contract/i18n/tr.po | 4 +- addons/hr_contract/i18n/uk.po | 4 +- addons/hr_contract/i18n/vi.po | 4 +- addons/hr_contract/i18n/zh_CN.po | 4 +- addons/hr_contract/i18n/zh_TW.po | 4 +- addons/hr_evaluation/i18n/ar.po | 4 +- addons/hr_evaluation/i18n/bg.po | 4 +- addons/hr_evaluation/i18n/ca.po | 4 +- addons/hr_evaluation/i18n/da.po | 4 +- addons/hr_evaluation/i18n/de.po | 4 +- addons/hr_evaluation/i18n/es.po | 14 +- addons/hr_evaluation/i18n/es_CR.po | 4 +- addons/hr_evaluation/i18n/es_EC.po | 4 +- addons/hr_evaluation/i18n/et.po | 4 +- addons/hr_evaluation/i18n/fi.po | 4 +- addons/hr_evaluation/i18n/fr.po | 4 +- addons/hr_evaluation/i18n/gl.po | 4 +- addons/hr_evaluation/i18n/hr.po | 4 +- addons/hr_evaluation/i18n/hu.po | 4 +- addons/hr_evaluation/i18n/id.po | 4 +- addons/hr_evaluation/i18n/it.po | 4 +- addons/hr_evaluation/i18n/ja.po | 4 +- addons/hr_evaluation/i18n/mn.po | 4 +- addons/hr_evaluation/i18n/nl.po | 4 +- addons/hr_evaluation/i18n/pt.po | 4 +- addons/hr_evaluation/i18n/pt_BR.po | 78 +- addons/hr_evaluation/i18n/ro.po | 4 +- addons/hr_evaluation/i18n/ru.po | 4 +- addons/hr_evaluation/i18n/sl.po | 2 +- addons/hr_evaluation/i18n/sr.po | 4 +- addons/hr_evaluation/i18n/sr@latin.po | 4 +- addons/hr_evaluation/i18n/sv.po | 4 +- addons/hr_evaluation/i18n/tr.po | 4 +- addons/hr_evaluation/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/ar.po | 4 +- addons/hr_expense/i18n/bg.po | 4 +- addons/hr_expense/i18n/bs.po | 4 +- addons/hr_expense/i18n/ca.po | 4 +- addons/hr_expense/i18n/cs.po | 4 +- addons/hr_expense/i18n/da.po | 4 +- addons/hr_expense/i18n/de.po | 4 +- addons/hr_expense/i18n/el.po | 4 +- addons/hr_expense/i18n/es.po | 14 +- addons/hr_expense/i18n/es_AR.po | 4 +- addons/hr_expense/i18n/es_CR.po | 4 +- addons/hr_expense/i18n/es_EC.po | 4 +- addons/hr_expense/i18n/et.po | 4 +- addons/hr_expense/i18n/fi.po | 4 +- addons/hr_expense/i18n/fr.po | 4 +- addons/hr_expense/i18n/hr.po | 4 +- addons/hr_expense/i18n/hu.po | 4 +- addons/hr_expense/i18n/id.po | 4 +- addons/hr_expense/i18n/it.po | 4 +- addons/hr_expense/i18n/ja.po | 4 +- addons/hr_expense/i18n/ko.po | 4 +- addons/hr_expense/i18n/lt.po | 4 +- addons/hr_expense/i18n/lv.po | 4 +- addons/hr_expense/i18n/mn.po | 4 +- addons/hr_expense/i18n/nb.po | 4 +- addons/hr_expense/i18n/nl.po | 4 +- addons/hr_expense/i18n/nl_BE.po | 4 +- addons/hr_expense/i18n/pl.po | 4 +- addons/hr_expense/i18n/pt.po | 4 +- addons/hr_expense/i18n/pt_BR.po | 97 +- addons/hr_expense/i18n/ro.po | 4 +- addons/hr_expense/i18n/ru.po | 4 +- addons/hr_expense/i18n/sl.po | 4 +- addons/hr_expense/i18n/sq.po | 4 +- addons/hr_expense/i18n/sr.po | 4 +- addons/hr_expense/i18n/sr@latin.po | 4 +- addons/hr_expense/i18n/sv.po | 4 +- addons/hr_expense/i18n/tlh.po | 4 +- addons/hr_expense/i18n/tr.po | 4 +- addons/hr_expense/i18n/uk.po | 4 +- addons/hr_expense/i18n/vi.po | 4 +- addons/hr_expense/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/zh_TW.po | 4 +- addons/hr_holidays/i18n/ar.po | 4 +- addons/hr_holidays/i18n/bg.po | 4 +- addons/hr_holidays/i18n/bs.po | 4 +- addons/hr_holidays/i18n/ca.po | 4 +- addons/hr_holidays/i18n/cs.po | 4 +- addons/hr_holidays/i18n/da.po | 4 +- addons/hr_holidays/i18n/de.po | 4 +- addons/hr_holidays/i18n/el.po | 4 +- addons/hr_holidays/i18n/es.po | 10 +- addons/hr_holidays/i18n/es_AR.po | 4 +- addons/hr_holidays/i18n/es_CR.po | 4 +- addons/hr_holidays/i18n/es_EC.po | 4 +- addons/hr_holidays/i18n/et.po | 4 +- addons/hr_holidays/i18n/fi.po | 4 +- addons/hr_holidays/i18n/fr.po | 4 +- addons/hr_holidays/i18n/gu.po | 4 +- addons/hr_holidays/i18n/hi.po | 4 +- addons/hr_holidays/i18n/hr.po | 4 +- addons/hr_holidays/i18n/hu.po | 4 +- addons/hr_holidays/i18n/id.po | 4 +- addons/hr_holidays/i18n/it.po | 4 +- addons/hr_holidays/i18n/ja.po | 4 +- addons/hr_holidays/i18n/ko.po | 4 +- addons/hr_holidays/i18n/lt.po | 4 +- addons/hr_holidays/i18n/lv.po | 4 +- addons/hr_holidays/i18n/mk.po | 4 +- addons/hr_holidays/i18n/mn.po | 4 +- addons/hr_holidays/i18n/nb.po | 4 +- addons/hr_holidays/i18n/nl.po | 4 +- addons/hr_holidays/i18n/nl_BE.po | 4 +- addons/hr_holidays/i18n/pl.po | 4 +- addons/hr_holidays/i18n/pt.po | 4 +- addons/hr_holidays/i18n/pt_BR.po | 147 +- addons/hr_holidays/i18n/ro.po | 14 +- addons/hr_holidays/i18n/ru.po | 4 +- addons/hr_holidays/i18n/sl.po | 4 +- addons/hr_holidays/i18n/sq.po | 4 +- addons/hr_holidays/i18n/sr.po | 4 +- addons/hr_holidays/i18n/sr@latin.po | 4 +- addons/hr_holidays/i18n/sv.po | 4 +- addons/hr_holidays/i18n/th.po | 4 +- addons/hr_holidays/i18n/tlh.po | 4 +- addons/hr_holidays/i18n/tr.po | 4 +- addons/hr_holidays/i18n/uk.po | 4 +- addons/hr_holidays/i18n/vi.po | 4 +- addons/hr_holidays/i18n/zh_CN.po | 4 +- addons/hr_holidays/i18n/zh_TW.po | 4 +- addons/hr_payroll/i18n/ar.po | 4 +- addons/hr_payroll/i18n/bg.po | 4 +- addons/hr_payroll/i18n/ca.po | 4 +- addons/hr_payroll/i18n/cs.po | 4 +- addons/hr_payroll/i18n/da.po | 4 +- addons/hr_payroll/i18n/de.po | 4 +- addons/hr_payroll/i18n/en_GB.po | 4 +- addons/hr_payroll/i18n/es.po | 4 +- addons/hr_payroll/i18n/es_CR.po | 4 +- addons/hr_payroll/i18n/es_EC.po | 4 +- addons/hr_payroll/i18n/es_MX.po | 4 +- addons/hr_payroll/i18n/et.po | 4 +- addons/hr_payroll/i18n/fi.po | 4 +- addons/hr_payroll/i18n/fr.po | 4 +- addons/hr_payroll/i18n/gl.po | 4 +- addons/hr_payroll/i18n/gu.po | 4 +- addons/hr_payroll/i18n/he.po | 4 +- addons/hr_payroll/i18n/hr.po | 4 +- addons/hr_payroll/i18n/hu.po | 4 +- addons/hr_payroll/i18n/id.po | 4 +- addons/hr_payroll/i18n/it.po | 4 +- addons/hr_payroll/i18n/ja.po | 4 +- addons/hr_payroll/i18n/lo.po | 4 +- addons/hr_payroll/i18n/lt.po | 4 +- addons/hr_payroll/i18n/lv.po | 4 +- addons/hr_payroll/i18n/mn.po | 4 +- addons/hr_payroll/i18n/nb.po | 4 +- addons/hr_payroll/i18n/nl.po | 4 +- addons/hr_payroll/i18n/pl.po | 4 +- addons/hr_payroll/i18n/pt.po | 4 +- addons/hr_payroll/i18n/pt_BR.po | 60 +- addons/hr_payroll/i18n/ro.po | 4 +- addons/hr_payroll/i18n/ru.po | 4 +- addons/hr_payroll/i18n/sl.po | 6 +- addons/hr_payroll/i18n/sr.po | 4 +- addons/hr_payroll/i18n/sr@latin.po | 4 +- addons/hr_payroll/i18n/sv.po | 4 +- addons/hr_payroll/i18n/tr.po | 4 +- addons/hr_payroll/i18n/vi.po | 4 +- addons/hr_payroll/i18n/zh_CN.po | 4 +- addons/hr_payroll_account/i18n/ar.po | 4 +- addons/hr_payroll_account/i18n/bg.po | 4 +- addons/hr_payroll_account/i18n/ca.po | 4 +- addons/hr_payroll_account/i18n/da.po | 4 +- addons/hr_payroll_account/i18n/de.po | 4 +- addons/hr_payroll_account/i18n/en_GB.po | 4 +- addons/hr_payroll_account/i18n/es.po | 4 +- addons/hr_payroll_account/i18n/es_CR.po | 4 +- addons/hr_payroll_account/i18n/es_EC.po | 4 +- addons/hr_payroll_account/i18n/es_PY.po | 4 +- addons/hr_payroll_account/i18n/fr.po | 4 +- addons/hr_payroll_account/i18n/gl.po | 4 +- addons/hr_payroll_account/i18n/gu.po | 4 +- addons/hr_payroll_account/i18n/hr.po | 4 +- addons/hr_payroll_account/i18n/hu.po | 4 +- addons/hr_payroll_account/i18n/id.po | 4 +- addons/hr_payroll_account/i18n/it.po | 4 +- addons/hr_payroll_account/i18n/ja.po | 4 +- addons/hr_payroll_account/i18n/lv.po | 4 +- addons/hr_payroll_account/i18n/mn.po | 4 +- addons/hr_payroll_account/i18n/nb.po | 4 +- addons/hr_payroll_account/i18n/nl.po | 4 +- addons/hr_payroll_account/i18n/pl.po | 4 +- addons/hr_payroll_account/i18n/pt.po | 4 +- addons/hr_payroll_account/i18n/pt_BR.po | 6 +- addons/hr_payroll_account/i18n/ro.po | 4 +- addons/hr_payroll_account/i18n/ru.po | 4 +- addons/hr_payroll_account/i18n/sr@latin.po | 4 +- addons/hr_payroll_account/i18n/sv.po | 4 +- addons/hr_payroll_account/i18n/tr.po | 4 +- addons/hr_payroll_account/i18n/zh_CN.po | 4 +- addons/hr_recruitment/i18n/ar.po | 4 +- addons/hr_recruitment/i18n/bg.po | 4 +- addons/hr_recruitment/i18n/ca.po | 4 +- addons/hr_recruitment/i18n/da.po | 4 +- addons/hr_recruitment/i18n/de.po | 4 +- addons/hr_recruitment/i18n/es.po | 18 +- addons/hr_recruitment/i18n/es_CR.po | 4 +- addons/hr_recruitment/i18n/fr.po | 4 +- addons/hr_recruitment/i18n/hi.po | 4 +- addons/hr_recruitment/i18n/hr.po | 4 +- addons/hr_recruitment/i18n/hu.po | 4 +- addons/hr_recruitment/i18n/id.po | 4 +- addons/hr_recruitment/i18n/it.po | 4 +- addons/hr_recruitment/i18n/ja.po | 4 +- addons/hr_recruitment/i18n/mk.po | 4 +- addons/hr_recruitment/i18n/mn.po | 4 +- addons/hr_recruitment/i18n/nb.po | 4 +- addons/hr_recruitment/i18n/nl.po | 4 +- addons/hr_recruitment/i18n/pl.po | 4 +- addons/hr_recruitment/i18n/pt.po | 4 +- addons/hr_recruitment/i18n/pt_BR.po | 160 +- addons/hr_recruitment/i18n/ro.po | 4 +- addons/hr_recruitment/i18n/ru.po | 4 +- addons/hr_recruitment/i18n/sl.po | 4 +- addons/hr_recruitment/i18n/sr.po | 4 +- addons/hr_recruitment/i18n/sr@latin.po | 4 +- addons/hr_recruitment/i18n/sv.po | 4 +- addons/hr_recruitment/i18n/tr.po | 4 +- addons/hr_recruitment/i18n/vi.po | 4 +- addons/hr_recruitment/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/ar.po | 4 +- addons/hr_timesheet/i18n/bg.po | 4 +- addons/hr_timesheet/i18n/bs.po | 4 +- addons/hr_timesheet/i18n/ca.po | 4 +- addons/hr_timesheet/i18n/cs.po | 4 +- addons/hr_timesheet/i18n/da.po | 4 +- addons/hr_timesheet/i18n/de.po | 4 +- addons/hr_timesheet/i18n/el.po | 4 +- addons/hr_timesheet/i18n/es.po | 4 +- addons/hr_timesheet/i18n/es_AR.po | 4 +- addons/hr_timesheet/i18n/es_CR.po | 4 +- addons/hr_timesheet/i18n/es_EC.po | 4 +- addons/hr_timesheet/i18n/et.po | 4 +- addons/hr_timesheet/i18n/fi.po | 4 +- addons/hr_timesheet/i18n/fr.po | 4 +- addons/hr_timesheet/i18n/gl.po | 4 +- addons/hr_timesheet/i18n/hr.po | 4 +- addons/hr_timesheet/i18n/hu.po | 4 +- addons/hr_timesheet/i18n/id.po | 4 +- addons/hr_timesheet/i18n/it.po | 4 +- addons/hr_timesheet/i18n/ja.po | 4 +- addons/hr_timesheet/i18n/ko.po | 4 +- addons/hr_timesheet/i18n/lt.po | 4 +- addons/hr_timesheet/i18n/lv.po | 4 +- addons/hr_timesheet/i18n/mk.po | 4 +- addons/hr_timesheet/i18n/mn.po | 4 +- addons/hr_timesheet/i18n/nb.po | 4 +- addons/hr_timesheet/i18n/nl.po | 4 +- addons/hr_timesheet/i18n/pl.po | 4 +- addons/hr_timesheet/i18n/pt.po | 4 +- addons/hr_timesheet/i18n/pt_BR.po | 77 +- addons/hr_timesheet/i18n/ro.po | 4 +- addons/hr_timesheet/i18n/ru.po | 4 +- addons/hr_timesheet/i18n/sl.po | 4 +- addons/hr_timesheet/i18n/sq.po | 4 +- addons/hr_timesheet/i18n/sr@latin.po | 4 +- addons/hr_timesheet/i18n/sv.po | 4 +- addons/hr_timesheet/i18n/tlh.po | 4 +- addons/hr_timesheet/i18n/tr.po | 4 +- addons/hr_timesheet/i18n/uk.po | 4 +- addons/hr_timesheet/i18n/vi.po | 4 +- addons/hr_timesheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/zh_TW.po | 4 +- addons/hr_timesheet_invoice/i18n/ar.po | 4 +- addons/hr_timesheet_invoice/i18n/bg.po | 4 +- addons/hr_timesheet_invoice/i18n/bs.po | 4 +- addons/hr_timesheet_invoice/i18n/ca.po | 4 +- addons/hr_timesheet_invoice/i18n/cs.po | 4 +- addons/hr_timesheet_invoice/i18n/da.po | 4 +- addons/hr_timesheet_invoice/i18n/de.po | 4 +- addons/hr_timesheet_invoice/i18n/el.po | 4 +- addons/hr_timesheet_invoice/i18n/es.po | 9 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_CR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_EC.po | 4 +- addons/hr_timesheet_invoice/i18n/et.po | 4 +- addons/hr_timesheet_invoice/i18n/fi.po | 4 +- addons/hr_timesheet_invoice/i18n/fr.po | 4 +- addons/hr_timesheet_invoice/i18n/hr.po | 4 +- addons/hr_timesheet_invoice/i18n/hu.po | 4 +- addons/hr_timesheet_invoice/i18n/id.po | 4 +- addons/hr_timesheet_invoice/i18n/it.po | 102 +- addons/hr_timesheet_invoice/i18n/ja.po | 4 +- addons/hr_timesheet_invoice/i18n/ko.po | 4 +- addons/hr_timesheet_invoice/i18n/lt.po | 4 +- addons/hr_timesheet_invoice/i18n/lv.po | 4 +- addons/hr_timesheet_invoice/i18n/mn.po | 4 +- addons/hr_timesheet_invoice/i18n/nl.po | 4 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 4 +- addons/hr_timesheet_invoice/i18n/pl.po | 4 +- addons/hr_timesheet_invoice/i18n/pt.po | 4 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 85 +- addons/hr_timesheet_invoice/i18n/ro.po | 4 +- addons/hr_timesheet_invoice/i18n/ru.po | 4 +- addons/hr_timesheet_invoice/i18n/sl.po | 4 +- addons/hr_timesheet_invoice/i18n/sq.po | 4 +- addons/hr_timesheet_invoice/i18n/sr@latin.po | 4 +- addons/hr_timesheet_invoice/i18n/sv.po | 4 +- addons/hr_timesheet_invoice/i18n/tlh.po | 4 +- addons/hr_timesheet_invoice/i18n/tr.po | 4 +- addons/hr_timesheet_invoice/i18n/uk.po | 4 +- addons/hr_timesheet_invoice/i18n/vi.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 4 +- addons/hr_timesheet_sheet/i18n/ar.po | 4 +- addons/hr_timesheet_sheet/i18n/bg.po | 4 +- addons/hr_timesheet_sheet/i18n/bs.po | 4 +- addons/hr_timesheet_sheet/i18n/ca.po | 4 +- addons/hr_timesheet_sheet/i18n/cs.po | 4 +- addons/hr_timesheet_sheet/i18n/da.po | 4 +- addons/hr_timesheet_sheet/i18n/de.po | 4 +- addons/hr_timesheet_sheet/i18n/el.po | 4 +- addons/hr_timesheet_sheet/i18n/es.po | 4 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_CR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_EC.po | 4 +- addons/hr_timesheet_sheet/i18n/et.po | 4 +- addons/hr_timesheet_sheet/i18n/fi.po | 4 +- addons/hr_timesheet_sheet/i18n/fr.po | 4 +- addons/hr_timesheet_sheet/i18n/hr.po | 4 +- addons/hr_timesheet_sheet/i18n/hu.po | 4 +- addons/hr_timesheet_sheet/i18n/id.po | 4 +- addons/hr_timesheet_sheet/i18n/it.po | 4 +- addons/hr_timesheet_sheet/i18n/ja.po | 4 +- addons/hr_timesheet_sheet/i18n/ko.po | 4 +- addons/hr_timesheet_sheet/i18n/lt.po | 4 +- addons/hr_timesheet_sheet/i18n/lv.po | 4 +- addons/hr_timesheet_sheet/i18n/mk.po | 4 +- addons/hr_timesheet_sheet/i18n/mn.po | 4 +- addons/hr_timesheet_sheet/i18n/nl.po | 4 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 4 +- addons/hr_timesheet_sheet/i18n/pl.po | 4 +- addons/hr_timesheet_sheet/i18n/pt.po | 4 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 125 +- addons/hr_timesheet_sheet/i18n/ro.po | 4 +- addons/hr_timesheet_sheet/i18n/ru.po | 4 +- addons/hr_timesheet_sheet/i18n/sl.po | 4 +- addons/hr_timesheet_sheet/i18n/sq.po | 4 +- addons/hr_timesheet_sheet/i18n/sv.po | 4 +- addons/hr_timesheet_sheet/i18n/tlh.po | 4 +- addons/hr_timesheet_sheet/i18n/tr.po | 4 +- addons/hr_timesheet_sheet/i18n/uk.po | 4 +- addons/hr_timesheet_sheet/i18n/vi.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 4 +- addons/idea/i18n/ar.po | 4 +- addons/idea/i18n/bg.po | 4 +- addons/idea/i18n/bs.po | 4 +- addons/idea/i18n/ca.po | 4 +- addons/idea/i18n/cs.po | 4 +- addons/idea/i18n/da.po | 4 +- addons/idea/i18n/de.po | 4 +- addons/idea/i18n/el.po | 4 +- addons/idea/i18n/en_GB.po | 4 +- addons/idea/i18n/es.po | 4 +- addons/idea/i18n/es_AR.po | 4 +- addons/idea/i18n/es_CR.po | 4 +- addons/idea/i18n/et.po | 4 +- addons/idea/i18n/fi.po | 4 +- addons/idea/i18n/fr.po | 4 +- addons/idea/i18n/gl.po | 4 +- addons/idea/i18n/gu.po | 4 +- addons/idea/i18n/hi.po | 4 +- addons/idea/i18n/hr.po | 4 +- addons/idea/i18n/hu.po | 4 +- addons/idea/i18n/id.po | 4 +- addons/idea/i18n/it.po | 4 +- addons/idea/i18n/ja.po | 4 +- addons/idea/i18n/ko.po | 4 +- addons/idea/i18n/lt.po | 4 +- addons/idea/i18n/lv.po | 4 +- addons/idea/i18n/mn.po | 4 +- addons/idea/i18n/nl.po | 4 +- addons/idea/i18n/pl.po | 4 +- addons/idea/i18n/pt.po | 2 +- addons/idea/i18n/pt_BR.po | 4 +- addons/idea/i18n/ro.po | 4 +- addons/idea/i18n/ru.po | 22 +- addons/idea/i18n/sk.po | 4 +- addons/idea/i18n/sl.po | 4 +- addons/idea/i18n/sq.po | 4 +- addons/idea/i18n/sr@latin.po | 4 +- addons/idea/i18n/sv.po | 48 +- addons/idea/i18n/tlh.po | 4 +- addons/idea/i18n/tr.po | 4 +- addons/idea/i18n/uk.po | 4 +- addons/idea/i18n/vi.po | 4 +- addons/idea/i18n/zh_CN.po | 4 +- addons/idea/i18n/zh_TW.po | 4 +- addons/knowledge/i18n/ar.po | 4 +- addons/knowledge/i18n/bg.po | 4 +- addons/knowledge/i18n/ca.po | 4 +- addons/knowledge/i18n/cs.po | 4 +- addons/knowledge/i18n/da.po | 4 +- addons/knowledge/i18n/de.po | 4 +- addons/knowledge/i18n/en_GB.po | 4 +- addons/knowledge/i18n/es.po | 4 +- addons/knowledge/i18n/es_AR.po | 4 +- addons/knowledge/i18n/es_CR.po | 4 +- addons/knowledge/i18n/et.po | 4 +- addons/knowledge/i18n/fi.po | 4 +- addons/knowledge/i18n/fr.po | 4 +- addons/knowledge/i18n/gl.po | 4 +- addons/knowledge/i18n/hi.po | 4 +- addons/knowledge/i18n/hr.po | 4 +- addons/knowledge/i18n/hu.po | 4 +- addons/knowledge/i18n/it.po | 4 +- addons/knowledge/i18n/ja.po | 4 +- addons/knowledge/i18n/lo.po | 4 +- addons/knowledge/i18n/lv.po | 4 +- addons/knowledge/i18n/mn.po | 4 +- addons/knowledge/i18n/nb.po | 4 +- addons/knowledge/i18n/nl.po | 4 +- addons/knowledge/i18n/nl_BE.po | 4 +- addons/knowledge/i18n/pl.po | 4 +- addons/knowledge/i18n/pt.po | 4 +- addons/knowledge/i18n/pt_BR.po | 4 +- addons/knowledge/i18n/ro.po | 4 +- addons/knowledge/i18n/ru.po | 30 +- addons/knowledge/i18n/sk.po | 4 +- addons/knowledge/i18n/sl.po | 6 +- addons/knowledge/i18n/sr.po | 4 +- addons/knowledge/i18n/sr@latin.po | 4 +- addons/knowledge/i18n/sv.po | 4 +- addons/knowledge/i18n/tr.po | 4 +- addons/knowledge/i18n/zh_CN.po | 4 +- addons/knowledge/i18n/zh_TW.po | 4 +- addons/l10n_ar/i18n/es.po | 4 +- addons/l10n_ar/i18n/es_AR.po | 4 +- addons/l10n_ar/i18n/pt.po | 4 +- addons/l10n_ar/i18n/sl.po | 6 +- addons/l10n_ar/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/ar.po | 4 +- addons/l10n_be/i18n/bg.po | 4 +- addons/l10n_be/i18n/bs.po | 4 +- addons/l10n_be/i18n/ca.po | 4 +- addons/l10n_be/i18n/cs.po | 4 +- addons/l10n_be/i18n/da.po | 4 +- addons/l10n_be/i18n/de.po | 4 +- addons/l10n_be/i18n/en_GB.po | 4 +- addons/l10n_be/i18n/es.po | 4 +- addons/l10n_be/i18n/es_AR.po | 4 +- addons/l10n_be/i18n/es_CR.po | 4 +- addons/l10n_be/i18n/et.po | 4 +- addons/l10n_be/i18n/fi.po | 4 +- addons/l10n_be/i18n/fr.po | 4 +- addons/l10n_be/i18n/gl.po | 4 +- addons/l10n_be/i18n/hr.po | 4 +- addons/l10n_be/i18n/hu.po | 4 +- addons/l10n_be/i18n/id.po | 4 +- addons/l10n_be/i18n/it.po | 4 +- addons/l10n_be/i18n/ja.po | 4 +- addons/l10n_be/i18n/ko.po | 4 +- addons/l10n_be/i18n/lt.po | 4 +- addons/l10n_be/i18n/nl.po | 4 +- addons/l10n_be/i18n/nl_BE.po | 4 +- addons/l10n_be/i18n/pl.po | 4 +- addons/l10n_be/i18n/pt.po | 4 +- addons/l10n_be/i18n/pt_BR.po | 4 +- addons/l10n_be/i18n/ro.po | 4 +- addons/l10n_be/i18n/ru.po | 4 +- addons/l10n_be/i18n/sl.po | 6 +- addons/l10n_be/i18n/sq.po | 4 +- addons/l10n_be/i18n/sr@latin.po | 4 +- addons/l10n_be/i18n/sv.po | 4 +- addons/l10n_be/i18n/tlh.po | 4 +- addons/l10n_be/i18n/tr.po | 4 +- addons/l10n_be/i18n/uk.po | 4 +- addons/l10n_be/i18n/vi.po | 4 +- addons/l10n_be/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/zh_TW.po | 4 +- addons/l10n_be_coda/i18n/ar.po | 4 +- addons/l10n_be_coda/i18n/bg.po | 4 +- addons/l10n_be_coda/i18n/ca.po | 4 +- addons/l10n_be_coda/i18n/da.po | 4 +- addons/l10n_be_coda/i18n/de.po | 4 +- addons/l10n_be_coda/i18n/el.po | 4 +- addons/l10n_be_coda/i18n/en_AU.po | 4 +- addons/l10n_be_coda/i18n/en_GB.po | 4 +- addons/l10n_be_coda/i18n/es.po | 84 +- addons/l10n_be_coda/i18n/es_CR.po | 4 +- addons/l10n_be_coda/i18n/es_EC.po | 4 +- addons/l10n_be_coda/i18n/es_PY.po | 4 +- addons/l10n_be_coda/i18n/et.po | 4 +- addons/l10n_be_coda/i18n/fa.po | 4 +- addons/l10n_be_coda/i18n/fi.po | 4 +- addons/l10n_be_coda/i18n/fr.po | 4 +- addons/l10n_be_coda/i18n/gl.po | 4 +- addons/l10n_be_coda/i18n/hr.po | 4 +- addons/l10n_be_coda/i18n/hu.po | 4 +- addons/l10n_be_coda/i18n/it.po | 4 +- addons/l10n_be_coda/i18n/ja.po | 4 +- addons/l10n_be_coda/i18n/lv.po | 4 +- addons/l10n_be_coda/i18n/mn.po | 4 +- addons/l10n_be_coda/i18n/nb.po | 4 +- addons/l10n_be_coda/i18n/nl.po | 4 +- addons/l10n_be_coda/i18n/nl_BE.po | 4 +- addons/l10n_be_coda/i18n/pl.po | 4 +- addons/l10n_be_coda/i18n/pt.po | 4 +- addons/l10n_be_coda/i18n/pt_BR.po | 4 +- addons/l10n_be_coda/i18n/ro.po | 4 +- addons/l10n_be_coda/i18n/ru.po | 4 +- addons/l10n_be_coda/i18n/sl.po | 6 +- addons/l10n_be_coda/i18n/sq.po | 4 +- addons/l10n_be_coda/i18n/sr.po | 4 +- addons/l10n_be_coda/i18n/sr@latin.po | 4 +- addons/l10n_be_coda/i18n/sv.po | 4 +- addons/l10n_be_coda/i18n/tr.po | 4 +- addons/l10n_be_coda/i18n/vi.po | 4 +- addons/l10n_be_coda/i18n/zh_CN.po | 4 +- addons/l10n_be_coda/i18n/zh_TW.po | 4 +- addons/l10n_be_hr_payroll/i18n/de.po | 4 +- addons/l10n_be_hr_payroll/i18n/es.po | 4 +- addons/l10n_be_hr_payroll/i18n/es_CR.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt_BR.po | 4 +- addons/l10n_be_hr_payroll/i18n/sl.po | 6 +- addons/l10n_be_hr_payroll/i18n/sr@latin.po | 4 +- addons/l10n_be_invoice_bba/i18n/ar.po | 4 +- addons/l10n_be_invoice_bba/i18n/es.po | 4 +- addons/l10n_be_invoice_bba/i18n/es_CR.po | 4 +- addons/l10n_be_invoice_bba/i18n/fr.po | 4 +- addons/l10n_be_invoice_bba/i18n/nb.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl_BE.po | 4 +- addons/l10n_be_invoice_bba/i18n/pt.po | 4 +- addons/l10n_be_invoice_bba/i18n/sl.po | 6 +- addons/l10n_be_invoice_bba/i18n/sr@latin.po | 4 +- addons/l10n_bo/i18n/es.po | 4 +- addons/l10n_bo/i18n/pt.po | 4 +- addons/l10n_bo/i18n/pt_BR.po | 4 +- addons/l10n_bo/i18n/sl.po | 6 +- addons/l10n_br/i18n/ar.po | 4 +- addons/l10n_br/i18n/bg.po | 4 +- addons/l10n_br/i18n/ca.po | 4 +- addons/l10n_br/i18n/da.po | 4 +- addons/l10n_br/i18n/en_GB.po | 4 +- addons/l10n_br/i18n/es.po | 4 +- addons/l10n_br/i18n/es_CR.po | 4 +- addons/l10n_br/i18n/es_PY.po | 4 +- addons/l10n_br/i18n/fr.po | 4 +- addons/l10n_br/i18n/gl.po | 4 +- addons/l10n_br/i18n/hi.po | 4 +- addons/l10n_br/i18n/it.po | 4 +- addons/l10n_br/i18n/nb.po | 4 +- addons/l10n_br/i18n/oc.po | 4 +- addons/l10n_br/i18n/pt.po | 4 +- addons/l10n_br/i18n/pt_BR.po | 4 +- addons/l10n_br/i18n/ru.po | 4 +- addons/l10n_br/i18n/sl.po | 6 +- addons/l10n_br/i18n/sq.po | 4 +- addons/l10n_br/i18n/sr@latin.po | 4 +- addons/l10n_br/i18n/tr.po | 4 +- addons/l10n_ca/i18n/ar.po | 4 +- addons/l10n_ca/i18n/ca.po | 4 +- addons/l10n_ca/i18n/da.po | 4 +- addons/l10n_ca/i18n/de.po | 4 +- addons/l10n_ca/i18n/en_GB.po | 4 +- addons/l10n_ca/i18n/es.po | 4 +- addons/l10n_ca/i18n/es_CR.po | 4 +- addons/l10n_ca/i18n/es_PY.po | 4 +- addons/l10n_ca/i18n/fr.po | 4 +- addons/l10n_ca/i18n/gl.po | 4 +- addons/l10n_ca/i18n/hu.po | 4 +- addons/l10n_ca/i18n/it.po | 4 +- addons/l10n_ca/i18n/nb.po | 4 +- addons/l10n_ca/i18n/pt.po | 4 +- addons/l10n_ca/i18n/pt_BR.po | 4 +- addons/l10n_ca/i18n/sl.po | 6 +- addons/l10n_ca/i18n/sr@latin.po | 4 +- addons/l10n_ca/i18n/tr.po | 4 +- addons/l10n_ca/i18n/zh_CN.po | 4 +- addons/l10n_cl/i18n/es.po | 4 +- addons/l10n_cl/i18n/sl.po | 6 +- addons/l10n_cl/i18n/zh_CN.po | 4 +- addons/l10n_cn/i18n/ar.po | 4 +- addons/l10n_cn/i18n/ca.po | 4 +- addons/l10n_cn/i18n/da.po | 4 +- addons/l10n_cn/i18n/es.po | 4 +- addons/l10n_cn/i18n/es_CR.po | 4 +- addons/l10n_cn/i18n/es_PY.po | 4 +- addons/l10n_cn/i18n/gl.po | 4 +- addons/l10n_cn/i18n/it.po | 4 +- addons/l10n_cn/i18n/nb.po | 4 +- addons/l10n_cn/i18n/pt_BR.po | 4 +- addons/l10n_cn/i18n/sl.po | 6 +- addons/l10n_cn/i18n/sr@latin.po | 4 +- addons/l10n_cn/i18n/tr.po | 4 +- addons/l10n_cn/i18n/zh_CN.po | 4 +- addons/l10n_cr/i18n/ar.po | 4 +- addons/l10n_cr/i18n/ca.po | 4 +- addons/l10n_cr/i18n/da.po | 4 +- addons/l10n_cr/i18n/es.po | 4 +- addons/l10n_cr/i18n/es_CR.po | 4 +- addons/l10n_cr/i18n/es_PY.po | 4 +- addons/l10n_cr/i18n/fr.po | 4 +- addons/l10n_cr/i18n/gl.po | 4 +- addons/l10n_cr/i18n/it.po | 4 +- addons/l10n_cr/i18n/pt.po | 4 +- addons/l10n_cr/i18n/pt_BR.po | 4 +- addons/l10n_cr/i18n/sl.po | 6 +- addons/l10n_cr/i18n/tr.po | 4 +- addons/l10n_de/i18n/ar.po | 4 +- addons/l10n_de/i18n/bg.po | 4 +- addons/l10n_de/i18n/bs.po | 4 +- addons/l10n_de/i18n/ca.po | 4 +- addons/l10n_de/i18n/cs.po | 4 +- addons/l10n_de/i18n/da.po | 4 +- addons/l10n_de/i18n/de.po | 4 +- addons/l10n_de/i18n/es.po | 4 +- addons/l10n_de/i18n/es_CR.po | 4 +- addons/l10n_de/i18n/es_PY.po | 4 +- addons/l10n_de/i18n/et.po | 4 +- addons/l10n_de/i18n/fr.po | 4 +- addons/l10n_de/i18n/gl.po | 4 +- addons/l10n_de/i18n/hr.po | 4 +- addons/l10n_de/i18n/hu.po | 4 +- addons/l10n_de/i18n/id.po | 4 +- addons/l10n_de/i18n/it.po | 4 +- addons/l10n_de/i18n/ko.po | 4 +- addons/l10n_de/i18n/lt.po | 4 +- addons/l10n_de/i18n/nb.po | 4 +- addons/l10n_de/i18n/nl.po | 4 +- addons/l10n_de/i18n/pl.po | 4 +- addons/l10n_de/i18n/pt.po | 4 +- addons/l10n_de/i18n/pt_BR.po | 4 +- addons/l10n_de/i18n/ro.po | 4 +- addons/l10n_de/i18n/ru.po | 4 +- addons/l10n_de/i18n/sl.po | 6 +- addons/l10n_de/i18n/sr@latin.po | 4 +- addons/l10n_de/i18n/sv.po | 4 +- addons/l10n_de/i18n/tr.po | 4 +- addons/l10n_de/i18n/vi.po | 4 +- addons/l10n_de/i18n/zh_CN.po | 4 +- addons/l10n_de/i18n/zh_TW.po | 4 +- addons/l10n_ec/i18n/ar.po | 4 +- addons/l10n_ec/i18n/ca.po | 4 +- addons/l10n_ec/i18n/da.po | 4 +- addons/l10n_ec/i18n/es.po | 4 +- addons/l10n_ec/i18n/es_CR.po | 4 +- addons/l10n_ec/i18n/es_EC.po | 4 +- addons/l10n_ec/i18n/es_PY.po | 4 +- addons/l10n_ec/i18n/fr.po | 4 +- addons/l10n_ec/i18n/gl.po | 4 +- addons/l10n_ec/i18n/it.po | 4 +- addons/l10n_ec/i18n/pt.po | 4 +- addons/l10n_ec/i18n/pt_BR.po | 4 +- addons/l10n_ec/i18n/sl.po | 6 +- addons/l10n_ec/i18n/tr.po | 4 +- addons/l10n_es/i18n/ar.po | 4 +- addons/l10n_es/i18n/ca.po | 4 +- addons/l10n_es/i18n/da.po | 4 +- addons/l10n_es/i18n/de.po | 4 +- addons/l10n_es/i18n/es.po | 4 +- addons/l10n_es/i18n/es_CR.po | 4 +- addons/l10n_es/i18n/es_PY.po | 4 +- addons/l10n_es/i18n/fr.po | 4 +- addons/l10n_es/i18n/gl.po | 4 +- addons/l10n_es/i18n/hu.po | 4 +- addons/l10n_es/i18n/it.po | 4 +- addons/l10n_es/i18n/oc.po | 4 +- addons/l10n_es/i18n/pt.po | 4 +- addons/l10n_es/i18n/pt_BR.po | 4 +- addons/l10n_es/i18n/sl.po | 6 +- addons/l10n_es/i18n/sr@latin.po | 4 +- addons/l10n_es/i18n/tr.po | 4 +- addons/l10n_fr/i18n/ar.po | 4 +- addons/l10n_fr/i18n/bg.po | 4 +- addons/l10n_fr/i18n/bs.po | 4 +- addons/l10n_fr/i18n/ca.po | 4 +- addons/l10n_fr/i18n/cs.po | 4 +- addons/l10n_fr/i18n/da.po | 4 +- addons/l10n_fr/i18n/de.po | 4 +- addons/l10n_fr/i18n/es.po | 4 +- addons/l10n_fr/i18n/es_AR.po | 4 +- addons/l10n_fr/i18n/es_CR.po | 4 +- addons/l10n_fr/i18n/es_PY.po | 4 +- addons/l10n_fr/i18n/et.po | 4 +- addons/l10n_fr/i18n/fr.po | 4 +- addons/l10n_fr/i18n/gl.po | 4 +- addons/l10n_fr/i18n/hr.po | 4 +- addons/l10n_fr/i18n/hu.po | 4 +- addons/l10n_fr/i18n/id.po | 4 +- addons/l10n_fr/i18n/it.po | 4 +- addons/l10n_fr/i18n/ko.po | 4 +- addons/l10n_fr/i18n/lt.po | 4 +- addons/l10n_fr/i18n/nl.po | 4 +- addons/l10n_fr/i18n/nl_BE.po | 4 +- addons/l10n_fr/i18n/oc.po | 4 +- addons/l10n_fr/i18n/pl.po | 4 +- addons/l10n_fr/i18n/pt.po | 4 +- addons/l10n_fr/i18n/pt_BR.po | 4 +- addons/l10n_fr/i18n/ro.po | 4 +- addons/l10n_fr/i18n/ru.po | 4 +- addons/l10n_fr/i18n/sl.po | 6 +- addons/l10n_fr/i18n/sq.po | 4 +- addons/l10n_fr/i18n/sr@latin.po | 4 +- addons/l10n_fr/i18n/sv.po | 4 +- addons/l10n_fr/i18n/tlh.po | 4 +- addons/l10n_fr/i18n/tr.po | 4 +- addons/l10n_fr/i18n/uk.po | 4 +- addons/l10n_fr/i18n/vi.po | 4 +- addons/l10n_fr/i18n/zh_CN.po | 4 +- addons/l10n_fr/i18n/zh_TW.po | 4 +- addons/l10n_fr_rib/i18n/ar.po | 4 +- addons/l10n_fr_rib/i18n/es.po | 4 +- addons/l10n_fr_rib/i18n/es_CR.po | 4 +- addons/l10n_fr_rib/i18n/fr.po | 4 +- addons/l10n_fr_rib/i18n/pt.po | 4 +- addons/l10n_fr_rib/i18n/sl.po | 6 +- addons/l10n_gr/i18n/ar.po | 4 +- addons/l10n_gr/i18n/ca.po | 4 +- addons/l10n_gr/i18n/da.po | 4 +- addons/l10n_gr/i18n/de.po | 4 +- addons/l10n_gr/i18n/el.po | 4 +- addons/l10n_gr/i18n/es.po | 4 +- addons/l10n_gr/i18n/es_CR.po | 4 +- addons/l10n_gr/i18n/es_PY.po | 4 +- addons/l10n_gr/i18n/fr.po | 4 +- addons/l10n_gr/i18n/gl.po | 4 +- addons/l10n_gr/i18n/hu.po | 4 +- addons/l10n_gr/i18n/it.po | 4 +- addons/l10n_gr/i18n/nl.po | 4 +- addons/l10n_gr/i18n/pt.po | 4 +- addons/l10n_gr/i18n/pt_BR.po | 4 +- addons/l10n_gr/i18n/sl.po | 6 +- addons/l10n_gr/i18n/sr@latin.po | 4 +- addons/l10n_gr/i18n/tr.po | 4 +- addons/l10n_gt/i18n/ar.po | 4 +- addons/l10n_gt/i18n/ca.po | 4 +- addons/l10n_gt/i18n/da.po | 4 +- addons/l10n_gt/i18n/es.po | 4 +- addons/l10n_gt/i18n/es_CR.po | 4 +- addons/l10n_gt/i18n/es_PY.po | 4 +- addons/l10n_gt/i18n/fr.po | 4 +- addons/l10n_gt/i18n/gl.po | 4 +- addons/l10n_gt/i18n/hu.po | 4 +- addons/l10n_gt/i18n/it.po | 4 +- addons/l10n_gt/i18n/oc.po | 4 +- addons/l10n_gt/i18n/pt.po | 4 +- addons/l10n_gt/i18n/pt_BR.po | 4 +- addons/l10n_gt/i18n/sl.po | 6 +- addons/l10n_gt/i18n/sr@latin.po | 4 +- addons/l10n_gt/i18n/tr.po | 4 +- addons/l10n_hn/i18n/ca.po | 4 +- addons/l10n_hn/i18n/es.po | 4 +- addons/l10n_hn/i18n/es_CR.po | 4 +- addons/l10n_hn/i18n/fr.po | 4 +- addons/l10n_hn/i18n/gl.po | 4 +- addons/l10n_hn/i18n/hu.po | 4 +- addons/l10n_hn/i18n/it.po | 4 +- addons/l10n_hn/i18n/pt.po | 4 +- addons/l10n_hn/i18n/pt_BR.po | 4 +- addons/l10n_hn/i18n/sl.po | 6 +- addons/l10n_hn/i18n/sr@latin.po | 4 +- addons/l10n_hn/i18n/tr.po | 4 +- addons/l10n_in/i18n/ar.po | 4 +- addons/l10n_in/i18n/br.po | 4 +- addons/l10n_in/i18n/ca.po | 4 +- addons/l10n_in/i18n/da.po | 4 +- addons/l10n_in/i18n/de.po | 4 +- addons/l10n_in/i18n/es.po | 4 +- addons/l10n_in/i18n/es_CR.po | 4 +- addons/l10n_in/i18n/es_PY.po | 4 +- addons/l10n_in/i18n/et.po | 4 +- addons/l10n_in/i18n/fr.po | 4 +- addons/l10n_in/i18n/gl.po | 4 +- addons/l10n_in/i18n/hu.po | 4 +- addons/l10n_in/i18n/it.po | 4 +- addons/l10n_in/i18n/oc.po | 4 +- addons/l10n_in/i18n/pt.po | 4 +- addons/l10n_in/i18n/pt_BR.po | 4 +- addons/l10n_in/i18n/ru.po | 4 +- addons/l10n_in/i18n/sl.po | 6 +- addons/l10n_in/i18n/sr@latin.po | 4 +- addons/l10n_in/i18n/sv.po | 4 +- addons/l10n_in/i18n/tr.po | 4 +- addons/l10n_in_hr_payroll/i18n/bn.po | 4 +- addons/l10n_in_hr_payroll/i18n/es.po | 297 +-- addons/l10n_in_hr_payroll/i18n/gu.po | 4 +- addons/l10n_in_hr_payroll/i18n/hi.po | 4 +- addons/l10n_in_hr_payroll/i18n/pl.po | 4 +- addons/l10n_in_hr_payroll/i18n/pt.po | 4 +- addons/l10n_in_hr_payroll/i18n/sl.po | 6 +- addons/l10n_in_hr_payroll/i18n/ta.po | 4 +- addons/l10n_in_hr_payroll/i18n/te.po | 4 +- addons/l10n_it/i18n/ar.po | 4 +- addons/l10n_it/i18n/ca.po | 4 +- addons/l10n_it/i18n/da.po | 4 +- addons/l10n_it/i18n/es.po | 4 +- addons/l10n_it/i18n/es_CR.po | 4 +- addons/l10n_it/i18n/es_PY.po | 4 +- addons/l10n_it/i18n/fr.po | 4 +- addons/l10n_it/i18n/gl.po | 4 +- addons/l10n_it/i18n/it.po | 4 +- addons/l10n_it/i18n/pt_BR.po | 4 +- addons/l10n_it/i18n/sl.po | 6 +- addons/l10n_it/i18n/tr.po | 4 +- addons/l10n_lu/i18n/ar.po | 4 +- addons/l10n_lu/i18n/bg.po | 4 +- addons/l10n_lu/i18n/bs.po | 4 +- addons/l10n_lu/i18n/ca.po | 4 +- addons/l10n_lu/i18n/cs.po | 4 +- addons/l10n_lu/i18n/da.po | 4 +- addons/l10n_lu/i18n/de.po | 4 +- addons/l10n_lu/i18n/es.po | 4 +- addons/l10n_lu/i18n/es_AR.po | 4 +- addons/l10n_lu/i18n/es_CR.po | 4 +- addons/l10n_lu/i18n/es_PY.po | 4 +- addons/l10n_lu/i18n/et.po | 4 +- addons/l10n_lu/i18n/fr.po | 4 +- addons/l10n_lu/i18n/gl.po | 4 +- addons/l10n_lu/i18n/hr.po | 4 +- addons/l10n_lu/i18n/hu.po | 4 +- addons/l10n_lu/i18n/id.po | 4 +- addons/l10n_lu/i18n/it.po | 4 +- addons/l10n_lu/i18n/ko.po | 4 +- addons/l10n_lu/i18n/lt.po | 4 +- addons/l10n_lu/i18n/nl.po | 4 +- addons/l10n_lu/i18n/nl_BE.po | 4 +- addons/l10n_lu/i18n/oc.po | 4 +- addons/l10n_lu/i18n/pl.po | 4 +- addons/l10n_lu/i18n/pt.po | 4 +- addons/l10n_lu/i18n/pt_BR.po | 4 +- addons/l10n_lu/i18n/ro.po | 4 +- addons/l10n_lu/i18n/ru.po | 4 +- addons/l10n_lu/i18n/sl.po | 6 +- addons/l10n_lu/i18n/sq.po | 4 +- addons/l10n_lu/i18n/sr@latin.po | 4 +- addons/l10n_lu/i18n/sv.po | 4 +- addons/l10n_lu/i18n/tlh.po | 4 +- addons/l10n_lu/i18n/tr.po | 4 +- addons/l10n_lu/i18n/uk.po | 4 +- addons/l10n_lu/i18n/vi.po | 4 +- addons/l10n_lu/i18n/zh_CN.po | 4 +- addons/l10n_lu/i18n/zh_TW.po | 4 +- addons/l10n_ma/i18n/ar.po | 4 +- addons/l10n_ma/i18n/ca.po | 4 +- addons/l10n_ma/i18n/da.po | 4 +- addons/l10n_ma/i18n/de.po | 4 +- addons/l10n_ma/i18n/es.po | 4 +- addons/l10n_ma/i18n/es_CR.po | 4 +- addons/l10n_ma/i18n/es_PY.po | 4 +- addons/l10n_ma/i18n/fr.po | 4 +- addons/l10n_ma/i18n/gl.po | 4 +- addons/l10n_ma/i18n/hu.po | 4 +- addons/l10n_ma/i18n/it.po | 4 +- addons/l10n_ma/i18n/pt.po | 4 +- addons/l10n_ma/i18n/pt_BR.po | 4 +- addons/l10n_ma/i18n/sl.po | 6 +- addons/l10n_ma/i18n/sr@latin.po | 4 +- addons/l10n_ma/i18n/tr.po | 4 +- addons/l10n_multilang/i18n/ar.po | 4 +- addons/l10n_multilang/i18n/de.po | 4 +- addons/l10n_multilang/i18n/es.po | 4 +- addons/l10n_multilang/i18n/es_CR.po | 4 +- addons/l10n_multilang/i18n/fr.po | 4 +- addons/l10n_multilang/i18n/hr.po | 4 +- addons/l10n_multilang/i18n/mn.po | 4 +- addons/l10n_multilang/i18n/nl.po | 4 +- addons/l10n_multilang/i18n/pl.po | 4 +- addons/l10n_multilang/i18n/pt.po | 4 +- addons/l10n_multilang/i18n/pt_BR.po | 4 +- addons/l10n_multilang/i18n/ro.po | 4 +- addons/l10n_multilang/i18n/sl.po | 6 +- addons/l10n_multilang/i18n/tr.po | 4 +- addons/l10n_nl/i18n/ar.po | 4 +- addons/l10n_nl/i18n/ca.po | 4 +- addons/l10n_nl/i18n/da.po | 4 +- addons/l10n_nl/i18n/es.po | 4 +- addons/l10n_nl/i18n/es_CR.po | 4 +- addons/l10n_nl/i18n/es_PY.po | 4 +- addons/l10n_nl/i18n/gl.po | 4 +- addons/l10n_nl/i18n/it.po | 4 +- addons/l10n_nl/i18n/nl.po | 4 +- addons/l10n_nl/i18n/pt_BR.po | 4 +- addons/l10n_nl/i18n/sl.po | 6 +- addons/l10n_nl/i18n/sr@latin.po | 4 +- addons/l10n_nl/i18n/tr.po | 4 +- addons/l10n_pe/i18n/ar.po | 4 +- addons/l10n_pe/i18n/br.po | 4 +- addons/l10n_pe/i18n/ca.po | 4 +- addons/l10n_pe/i18n/de.po | 4 +- addons/l10n_pe/i18n/es.po | 4 +- addons/l10n_pe/i18n/et.po | 4 +- addons/l10n_pe/i18n/fr.po | 4 +- addons/l10n_pe/i18n/gl.po | 4 +- addons/l10n_pe/i18n/hu.po | 4 +- addons/l10n_pe/i18n/it.po | 4 +- addons/l10n_pe/i18n/pt.po | 4 +- addons/l10n_pe/i18n/pt_BR.po | 4 +- addons/l10n_pe/i18n/ru.po | 4 +- addons/l10n_pe/i18n/sl.po | 6 +- addons/l10n_pe/i18n/sr@latin.po | 4 +- addons/l10n_pe/i18n/sv.po | 4 +- addons/l10n_pl/i18n/ar.po | 4 +- addons/l10n_pl/i18n/ca.po | 4 +- addons/l10n_pl/i18n/da.po | 4 +- addons/l10n_pl/i18n/es.po | 4 +- addons/l10n_pl/i18n/es_CR.po | 4 +- addons/l10n_pl/i18n/es_PY.po | 4 +- addons/l10n_pl/i18n/gl.po | 4 +- addons/l10n_pl/i18n/it.po | 4 +- addons/l10n_pl/i18n/pt_BR.po | 4 +- addons/l10n_pl/i18n/sl.po | 6 +- addons/l10n_pl/i18n/sr@latin.po | 4 +- addons/l10n_pl/i18n/tr.po | 4 +- addons/l10n_syscohada/i18n/ar.po | 4 +- addons/l10n_syscohada/i18n/ca.po | 4 +- addons/l10n_syscohada/i18n/es.po | 4 +- addons/l10n_syscohada/i18n/es_CR.po | 4 +- addons/l10n_syscohada/i18n/fr.po | 4 +- addons/l10n_syscohada/i18n/pt.po | 4 +- addons/l10n_syscohada/i18n/ro.po | 4 +- addons/l10n_syscohada/i18n/sl.po | 6 +- addons/l10n_syscohada/i18n/tr.po | 4 +- addons/l10n_th/i18n/ar.po | 4 +- addons/l10n_th/i18n/ca.po | 4 +- addons/l10n_th/i18n/da.po | 4 +- addons/l10n_th/i18n/es.po | 4 +- addons/l10n_th/i18n/es_CR.po | 4 +- addons/l10n_th/i18n/es_PY.po | 4 +- addons/l10n_th/i18n/gl.po | 4 +- addons/l10n_th/i18n/it.po | 4 +- addons/l10n_th/i18n/nb.po | 4 +- addons/l10n_th/i18n/pt.po | 4 +- addons/l10n_th/i18n/pt_BR.po | 4 +- addons/l10n_th/i18n/sl.po | 6 +- addons/l10n_th/i18n/sr@latin.po | 4 +- addons/l10n_th/i18n/th.po | 4 +- addons/l10n_th/i18n/tr.po | 4 +- addons/l10n_uk/i18n/ar.po | 4 +- addons/l10n_uk/i18n/bg.po | 4 +- addons/l10n_uk/i18n/bs.po | 4 +- addons/l10n_uk/i18n/ca.po | 4 +- addons/l10n_uk/i18n/cs.po | 4 +- addons/l10n_uk/i18n/da.po | 4 +- addons/l10n_uk/i18n/de.po | 4 +- addons/l10n_uk/i18n/es.po | 4 +- addons/l10n_uk/i18n/es_CR.po | 4 +- addons/l10n_uk/i18n/es_PY.po | 4 +- addons/l10n_uk/i18n/et.po | 4 +- addons/l10n_uk/i18n/fr.po | 4 +- addons/l10n_uk/i18n/gl.po | 4 +- addons/l10n_uk/i18n/hr.po | 4 +- addons/l10n_uk/i18n/hu.po | 4 +- addons/l10n_uk/i18n/id.po | 4 +- addons/l10n_uk/i18n/it.po | 4 +- addons/l10n_uk/i18n/ko.po | 4 +- addons/l10n_uk/i18n/lt.po | 4 +- addons/l10n_uk/i18n/nl.po | 4 +- addons/l10n_uk/i18n/oc.po | 4 +- addons/l10n_uk/i18n/pl.po | 4 +- addons/l10n_uk/i18n/pt.po | 4 +- addons/l10n_uk/i18n/pt_BR.po | 4 +- addons/l10n_uk/i18n/ro.po | 4 +- addons/l10n_uk/i18n/ru.po | 4 +- addons/l10n_uk/i18n/sl.po | 6 +- addons/l10n_uk/i18n/sq.po | 4 +- addons/l10n_uk/i18n/sr@latin.po | 4 +- addons/l10n_uk/i18n/sv.po | 4 +- addons/l10n_uk/i18n/tlh.po | 4 +- addons/l10n_uk/i18n/tr.po | 4 +- addons/l10n_uk/i18n/uk.po | 4 +- addons/l10n_uk/i18n/vi.po | 4 +- addons/l10n_uk/i18n/zh_CN.po | 4 +- addons/l10n_uk/i18n/zh_TW.po | 4 +- addons/l10n_ve/i18n/ar.po | 4 +- addons/l10n_ve/i18n/ca.po | 4 +- addons/l10n_ve/i18n/da.po | 4 +- addons/l10n_ve/i18n/de.po | 4 +- addons/l10n_ve/i18n/es.po | 4 +- addons/l10n_ve/i18n/es_CR.po | 4 +- addons/l10n_ve/i18n/es_PY.po | 4 +- addons/l10n_ve/i18n/gl.po | 4 +- addons/l10n_ve/i18n/it.po | 4 +- addons/l10n_ve/i18n/pt.po | 4 +- addons/l10n_ve/i18n/pt_BR.po | 4 +- addons/l10n_ve/i18n/sl.po | 6 +- addons/l10n_ve/i18n/sr@latin.po | 4 +- addons/l10n_ve/i18n/tr.po | 4 +- addons/lunch/i18n/ar.po | 4 +- addons/lunch/i18n/bg.po | 4 +- addons/lunch/i18n/ca.po | 4 +- addons/lunch/i18n/cs.po | 4 +- addons/lunch/i18n/da.po | 4 +- addons/lunch/i18n/de.po | 4 +- addons/lunch/i18n/es.po | 6 +- addons/lunch/i18n/es_CR.po | 4 +- addons/lunch/i18n/es_PY.po | 4 +- addons/lunch/i18n/fi.po | 4 +- addons/lunch/i18n/fr.po | 4 +- addons/lunch/i18n/gl.po | 4 +- addons/lunch/i18n/hr.po | 4 +- addons/lunch/i18n/hu.po | 4 +- addons/lunch/i18n/it.po | 4 +- addons/lunch/i18n/ja.po | 4 +- addons/lunch/i18n/nl.po | 4 +- addons/lunch/i18n/pt.po | 4 +- addons/lunch/i18n/pt_BR.po | 291 ++- addons/lunch/i18n/ro.po | 4 +- addons/lunch/i18n/ru.po | 4 +- addons/lunch/i18n/sl.po | 2 +- addons/lunch/i18n/sr@latin.po | 4 +- addons/lunch/i18n/sv.po | 4 +- addons/lunch/i18n/tr.po | 4 +- addons/lunch/i18n/zh_CN.po | 4 +- addons/lunch/i18n/zh_TW.po | 4 +- addons/mail/i18n/ar.po | 4 +- addons/mail/i18n/bg.po | 4 +- addons/mail/i18n/ca.po | 4 +- addons/mail/i18n/da.po | 4 +- addons/mail/i18n/de.po | 4 +- addons/mail/i18n/es.po | 51 +- addons/mail/i18n/es_CR.po | 4 +- addons/mail/i18n/es_PY.po | 4 +- addons/mail/i18n/et.po | 4 +- addons/mail/i18n/fi.po | 4 +- addons/mail/i18n/fr.po | 4 +- addons/mail/i18n/gl.po | 4 +- addons/mail/i18n/hr.po | 4 +- addons/mail/i18n/hu.po | 4 +- addons/mail/i18n/it.po | 4 +- addons/mail/i18n/ja.po | 4 +- addons/mail/i18n/lt.po | 4 +- addons/mail/i18n/lv.po | 4 +- addons/mail/i18n/mn.po | 4 +- addons/mail/i18n/nl.po | 4 +- addons/mail/i18n/pl.po | 4 +- addons/mail/i18n/pt.po | 4 +- addons/mail/i18n/pt_BR.po | 4 +- addons/mail/i18n/ro.po | 4 +- addons/mail/i18n/ru.po | 4 +- addons/mail/i18n/sl.po | 6 +- addons/mail/i18n/sr@latin.po | 4 +- addons/mail/i18n/sv.po | 4 +- addons/mail/i18n/tr.po | 4 +- addons/mail/i18n/zh_CN.po | 65 +- addons/mail/i18n/zh_TW.po | 4 +- addons/marketing/i18n/ar.po | 4 +- addons/marketing/i18n/bg.po | 4 +- addons/marketing/i18n/ca.po | 4 +- addons/marketing/i18n/cs.po | 4 +- addons/marketing/i18n/da.po | 4 +- addons/marketing/i18n/de.po | 4 +- addons/marketing/i18n/el.po | 4 +- addons/marketing/i18n/es.po | 4 +- addons/marketing/i18n/es_CR.po | 4 +- addons/marketing/i18n/fi.po | 4 +- addons/marketing/i18n/fr.po | 4 +- addons/marketing/i18n/gl.po | 4 +- addons/marketing/i18n/hr.po | 4 +- addons/marketing/i18n/hu.po | 4 +- addons/marketing/i18n/id.po | 4 +- addons/marketing/i18n/it.po | 4 +- addons/marketing/i18n/ja.po | 4 +- addons/marketing/i18n/lt.po | 4 +- addons/marketing/i18n/lv.po | 4 +- addons/marketing/i18n/mn.po | 4 +- addons/marketing/i18n/nb.po | 4 +- addons/marketing/i18n/nl.po | 4 +- addons/marketing/i18n/pl.po | 4 +- addons/marketing/i18n/pt.po | 4 +- addons/marketing/i18n/pt_BR.po | 4 +- addons/marketing/i18n/ro.po | 4 +- addons/marketing/i18n/ru.po | 4 +- addons/marketing/i18n/sk.po | 4 +- addons/marketing/i18n/sl.po | 4 +- addons/marketing/i18n/sr.po | 4 +- addons/marketing/i18n/sr@latin.po | 4 +- addons/marketing/i18n/sv.po | 4 +- addons/marketing/i18n/th.po | 4 +- addons/marketing/i18n/tr.po | 4 +- addons/marketing/i18n/zh_CN.po | 4 +- addons/marketing/i18n/zh_TW.po | 4 +- addons/marketing_campaign/i18n/ar.po | 4 +- addons/marketing_campaign/i18n/bg.po | 4 +- addons/marketing_campaign/i18n/ca.po | 4 +- addons/marketing_campaign/i18n/da.po | 4 +- addons/marketing_campaign/i18n/de.po | 4 +- addons/marketing_campaign/i18n/el.po | 4 +- addons/marketing_campaign/i18n/es.po | 4 +- addons/marketing_campaign/i18n/es_CR.po | 4 +- addons/marketing_campaign/i18n/fi.po | 4 +- addons/marketing_campaign/i18n/fr.po | 4 +- addons/marketing_campaign/i18n/hi.po | 4 +- addons/marketing_campaign/i18n/hr.po | 4 +- addons/marketing_campaign/i18n/hu.po | 4 +- addons/marketing_campaign/i18n/it.po | 4 +- addons/marketing_campaign/i18n/ja.po | 4 +- addons/marketing_campaign/i18n/lv.po | 4 +- addons/marketing_campaign/i18n/mn.po | 4 +- addons/marketing_campaign/i18n/nl.po | 8 +- addons/marketing_campaign/i18n/pl.po | 4 +- addons/marketing_campaign/i18n/pt.po | 4 +- addons/marketing_campaign/i18n/pt_BR.po | 4 +- addons/marketing_campaign/i18n/ro.po | 4 +- addons/marketing_campaign/i18n/ru.po | 4 +- addons/marketing_campaign/i18n/sr@latin.po | 4 +- addons/marketing_campaign/i18n/sv.po | 4 +- addons/marketing_campaign/i18n/tr.po | 4 +- addons/marketing_campaign/i18n/zh_CN.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ar.po | 4 +- addons/marketing_campaign_crm_demo/i18n/bg.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ca.po | 4 +- addons/marketing_campaign_crm_demo/i18n/da.po | 4 +- addons/marketing_campaign_crm_demo/i18n/de.po | 4 +- addons/marketing_campaign_crm_demo/i18n/es.po | 4 +- .../marketing_campaign_crm_demo/i18n/es_CR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/fr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/gl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hu.po | 4 +- addons/marketing_campaign_crm_demo/i18n/it.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ja.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nb.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/pt.po | 4 +- .../marketing_campaign_crm_demo/i18n/pt_BR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ro.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ru.po | 4 +- addons/marketing_campaign_crm_demo/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/marketing_campaign_crm_demo/i18n/tr.po | 4 +- .../marketing_campaign_crm_demo/i18n/zh_CN.po | 4 +- addons/membership/i18n/ar.po | 4 +- addons/membership/i18n/bg.po | 4 +- addons/membership/i18n/bs.po | 4 +- addons/membership/i18n/ca.po | 4 +- addons/membership/i18n/cs.po | 4 +- addons/membership/i18n/da.po | 4 +- addons/membership/i18n/de.po | 4 +- addons/membership/i18n/es.po | 6 +- addons/membership/i18n/es_AR.po | 4 +- addons/membership/i18n/es_CR.po | 4 +- addons/membership/i18n/et.po | 4 +- addons/membership/i18n/fi.po | 4 +- addons/membership/i18n/fr.po | 45 +- addons/membership/i18n/gl.po | 4 +- addons/membership/i18n/hr.po | 4 +- addons/membership/i18n/hu.po | 4 +- addons/membership/i18n/id.po | 4 +- addons/membership/i18n/it.po | 4 +- addons/membership/i18n/ja.po | 4 +- addons/membership/i18n/ko.po | 4 +- addons/membership/i18n/lt.po | 4 +- addons/membership/i18n/mn.po | 4 +- addons/membership/i18n/nl.po | 4 +- addons/membership/i18n/nl_BE.po | 4 +- addons/membership/i18n/pl.po | 4 +- addons/membership/i18n/pt.po | 4 +- addons/membership/i18n/pt_BR.po | 4 +- addons/membership/i18n/ro.po | 4 +- addons/membership/i18n/ru.po | 4 +- addons/membership/i18n/sk.po | 4 +- addons/membership/i18n/sl.po | 4 +- addons/membership/i18n/sq.po | 4 +- addons/membership/i18n/sr@latin.po | 4 +- addons/membership/i18n/sv.po | 4 +- addons/membership/i18n/tlh.po | 4 +- addons/membership/i18n/tr.po | 4 +- addons/membership/i18n/uk.po | 4 +- addons/membership/i18n/vi.po | 4 +- addons/membership/i18n/zh_CN.po | 4 +- addons/membership/i18n/zh_TW.po | 4 +- addons/mrp/i18n/ar.po | 4 +- addons/mrp/i18n/bg.po | 4 +- addons/mrp/i18n/bs.po | 4 +- addons/mrp/i18n/ca.po | 4 +- addons/mrp/i18n/cs.po | 4 +- addons/mrp/i18n/da.po | 4 +- addons/mrp/i18n/de.po | 4 +- addons/mrp/i18n/el.po | 4 +- addons/mrp/i18n/es.po | 35 +- addons/mrp/i18n/es_AR.po | 4 +- addons/mrp/i18n/es_CL.po | 4 +- addons/mrp/i18n/es_CR.po | 4 +- addons/mrp/i18n/es_EC.po | 4 +- addons/mrp/i18n/et.po | 4 +- addons/mrp/i18n/fi.po | 4 +- addons/mrp/i18n/fr.po | 4 +- addons/mrp/i18n/gl.po | 4 +- addons/mrp/i18n/hi.po | 4 +- addons/mrp/i18n/hr.po | 4 +- addons/mrp/i18n/hu.po | 4 +- addons/mrp/i18n/id.po | 4 +- addons/mrp/i18n/it.po | 4 +- addons/mrp/i18n/ja.po | 4 +- addons/mrp/i18n/ko.po | 4 +- addons/mrp/i18n/lt.po | 4 +- addons/mrp/i18n/lv.po | 4 +- addons/mrp/i18n/mn.po | 4 +- addons/mrp/i18n/nb.po | 4 +- addons/mrp/i18n/nl.po | 10 +- addons/mrp/i18n/nl_BE.po | 4 +- addons/mrp/i18n/pl.po | 12 +- addons/mrp/i18n/pt.po | 4 +- addons/mrp/i18n/pt_BR.po | 4 +- addons/mrp/i18n/ro.po | 4 +- addons/mrp/i18n/ru.po | 4 +- addons/mrp/i18n/sk.po | 4 +- addons/mrp/i18n/sl.po | 2 +- addons/mrp/i18n/sq.po | 4 +- addons/mrp/i18n/sr@latin.po | 4 +- addons/mrp/i18n/sv.po | 4 +- addons/mrp/i18n/tlh.po | 4 +- addons/mrp/i18n/tr.po | 4 +- addons/mrp/i18n/uk.po | 4 +- addons/mrp/i18n/vi.po | 4 +- addons/mrp/i18n/zh_CN.po | 4 +- addons/mrp/i18n/zh_HK.po | 4 +- addons/mrp/i18n/zh_TW.po | 4 +- addons/mrp_byproduct/i18n/ab.po | 4 +- addons/mrp_byproduct/i18n/ar.po | 4 +- addons/mrp_byproduct/i18n/bg.po | 4 +- addons/mrp_byproduct/i18n/bs.po | 4 +- addons/mrp_byproduct/i18n/ca.po | 4 +- addons/mrp_byproduct/i18n/cs.po | 6 +- addons/mrp_byproduct/i18n/da.po | 4 +- addons/mrp_byproduct/i18n/de.po | 4 +- addons/mrp_byproduct/i18n/es.po | 4 +- addons/mrp_byproduct/i18n/es_AR.po | 4 +- addons/mrp_byproduct/i18n/es_CR.po | 4 +- addons/mrp_byproduct/i18n/es_EC.po | 4 +- addons/mrp_byproduct/i18n/et.po | 4 +- addons/mrp_byproduct/i18n/fi.po | 4 +- addons/mrp_byproduct/i18n/fr.po | 4 +- addons/mrp_byproduct/i18n/gl.po | 4 +- addons/mrp_byproduct/i18n/hr.po | 4 +- addons/mrp_byproduct/i18n/hu.po | 4 +- addons/mrp_byproduct/i18n/id.po | 4 +- addons/mrp_byproduct/i18n/it.po | 4 +- addons/mrp_byproduct/i18n/ja.po | 4 +- addons/mrp_byproduct/i18n/ko.po | 4 +- addons/mrp_byproduct/i18n/lt.po | 4 +- addons/mrp_byproduct/i18n/mn.po | 4 +- addons/mrp_byproduct/i18n/nb.po | 4 +- addons/mrp_byproduct/i18n/nl.po | 4 +- addons/mrp_byproduct/i18n/nl_BE.po | 4 +- addons/mrp_byproduct/i18n/oc.po | 4 +- addons/mrp_byproduct/i18n/pl.po | 4 +- addons/mrp_byproduct/i18n/pt.po | 4 +- addons/mrp_byproduct/i18n/pt_BR.po | 26 +- addons/mrp_byproduct/i18n/ro.po | 4 +- addons/mrp_byproduct/i18n/ru.po | 4 +- addons/mrp_byproduct/i18n/sk.po | 4 +- addons/mrp_byproduct/i18n/sl.po | 2 +- addons/mrp_byproduct/i18n/sq.po | 4 +- addons/mrp_byproduct/i18n/sr.po | 4 +- addons/mrp_byproduct/i18n/sr@latin.po | 4 +- addons/mrp_byproduct/i18n/sv.po | 4 +- addons/mrp_byproduct/i18n/tlh.po | 4 +- addons/mrp_byproduct/i18n/tr.po | 4 +- addons/mrp_byproduct/i18n/uk.po | 4 +- addons/mrp_byproduct/i18n/vi.po | 4 +- addons/mrp_byproduct/i18n/zh_CN.po | 4 +- addons/mrp_byproduct/i18n/zh_TW.po | 4 +- addons/mrp_jit/i18n/ar.po | 4 +- addons/mrp_jit/i18n/bg.po | 4 +- addons/mrp_jit/i18n/bs.po | 4 +- addons/mrp_jit/i18n/ca.po | 4 +- addons/mrp_jit/i18n/cs.po | 6 +- addons/mrp_jit/i18n/da.po | 4 +- addons/mrp_jit/i18n/de.po | 4 +- addons/mrp_jit/i18n/el.po | 4 +- addons/mrp_jit/i18n/es.po | 4 +- addons/mrp_jit/i18n/es_AR.po | 4 +- addons/mrp_jit/i18n/es_CR.po | 4 +- addons/mrp_jit/i18n/es_EC.po | 4 +- addons/mrp_jit/i18n/et.po | 4 +- addons/mrp_jit/i18n/fi.po | 4 +- addons/mrp_jit/i18n/fr.po | 4 +- addons/mrp_jit/i18n/gl.po | 4 +- addons/mrp_jit/i18n/hr.po | 4 +- addons/mrp_jit/i18n/hu.po | 4 +- addons/mrp_jit/i18n/id.po | 4 +- addons/mrp_jit/i18n/it.po | 4 +- addons/mrp_jit/i18n/ja.po | 4 +- addons/mrp_jit/i18n/kab.po | 4 +- addons/mrp_jit/i18n/ko.po | 4 +- addons/mrp_jit/i18n/lt.po | 4 +- addons/mrp_jit/i18n/ml.po | 4 +- addons/mrp_jit/i18n/mn.po | 4 +- addons/mrp_jit/i18n/nb.po | 4 +- addons/mrp_jit/i18n/nl.po | 4 +- addons/mrp_jit/i18n/nl_BE.po | 4 +- addons/mrp_jit/i18n/oc.po | 4 +- addons/mrp_jit/i18n/pl.po | 4 +- addons/mrp_jit/i18n/pt.po | 4 +- addons/mrp_jit/i18n/pt_BR.po | 4 +- addons/mrp_jit/i18n/ro.po | 4 +- addons/mrp_jit/i18n/ru.po | 4 +- addons/mrp_jit/i18n/sk.po | 4 +- addons/mrp_jit/i18n/sl.po | 4 +- addons/mrp_jit/i18n/sq.po | 4 +- addons/mrp_jit/i18n/sr.po | 4 +- addons/mrp_jit/i18n/sr@latin.po | 4 +- addons/mrp_jit/i18n/sv.po | 4 +- addons/mrp_jit/i18n/ta.po | 4 +- addons/mrp_jit/i18n/tr.po | 4 +- addons/mrp_jit/i18n/uk.po | 4 +- addons/mrp_jit/i18n/vi.po | 4 +- addons/mrp_jit/i18n/zh_CN.po | 4 +- addons/mrp_jit/i18n/zh_TW.po | 4 +- addons/mrp_operations/i18n/ar.po | 4 +- addons/mrp_operations/i18n/bg.po | 4 +- addons/mrp_operations/i18n/bs.po | 4 +- addons/mrp_operations/i18n/ca.po | 4 +- addons/mrp_operations/i18n/cs.po | 6 +- addons/mrp_operations/i18n/da.po | 4 +- addons/mrp_operations/i18n/de.po | 4 +- addons/mrp_operations/i18n/es.po | 6 +- addons/mrp_operations/i18n/es_AR.po | 4 +- addons/mrp_operations/i18n/es_CR.po | 4 +- addons/mrp_operations/i18n/es_EC.po | 4 +- addons/mrp_operations/i18n/et.po | 4 +- addons/mrp_operations/i18n/fi.po | 4 +- addons/mrp_operations/i18n/fr.po | 4 +- addons/mrp_operations/i18n/hi.po | 4 +- addons/mrp_operations/i18n/hr.po | 4 +- addons/mrp_operations/i18n/hu.po | 4 +- addons/mrp_operations/i18n/id.po | 4 +- addons/mrp_operations/i18n/it.po | 4 +- addons/mrp_operations/i18n/ja.po | 4 +- addons/mrp_operations/i18n/ko.po | 4 +- addons/mrp_operations/i18n/lt.po | 4 +- addons/mrp_operations/i18n/mn.po | 4 +- addons/mrp_operations/i18n/nl.po | 6 +- addons/mrp_operations/i18n/nl_BE.po | 4 +- addons/mrp_operations/i18n/pl.po | 4 +- addons/mrp_operations/i18n/pt.po | 4 +- addons/mrp_operations/i18n/pt_BR.po | 53 +- addons/mrp_operations/i18n/ro.po | 4 +- addons/mrp_operations/i18n/ru.po | 4 +- addons/mrp_operations/i18n/sl.po | 2 +- addons/mrp_operations/i18n/sq.po | 4 +- addons/mrp_operations/i18n/sr.po | 4 +- addons/mrp_operations/i18n/sr@latin.po | 4 +- addons/mrp_operations/i18n/sv.po | 4 +- addons/mrp_operations/i18n/tlh.po | 4 +- addons/mrp_operations/i18n/tr.po | 4 +- addons/mrp_operations/i18n/uk.po | 4 +- addons/mrp_operations/i18n/vi.po | 4 +- addons/mrp_operations/i18n/zh_CN.po | 6 +- addons/mrp_operations/i18n/zh_TW.po | 4 +- addons/mrp_repair/i18n/ar.po | 4 +- addons/mrp_repair/i18n/bg.po | 4 +- addons/mrp_repair/i18n/bs.po | 4 +- addons/mrp_repair/i18n/ca.po | 4 +- addons/mrp_repair/i18n/cs.po | 6 +- addons/mrp_repair/i18n/da.po | 4 +- addons/mrp_repair/i18n/de.po | 4 +- addons/mrp_repair/i18n/es.po | 4 +- addons/mrp_repair/i18n/es_AR.po | 4 +- addons/mrp_repair/i18n/es_CR.po | 4 +- addons/mrp_repair/i18n/es_EC.po | 4 +- addons/mrp_repair/i18n/et.po | 4 +- addons/mrp_repair/i18n/fi.po | 4 +- addons/mrp_repair/i18n/fr.po | 4 +- addons/mrp_repair/i18n/hi.po | 4 +- addons/mrp_repair/i18n/hr.po | 4 +- addons/mrp_repair/i18n/hu.po | 4 +- addons/mrp_repair/i18n/id.po | 4 +- addons/mrp_repair/i18n/it.po | 4 +- addons/mrp_repair/i18n/ja.po | 4 +- addons/mrp_repair/i18n/ko.po | 4 +- addons/mrp_repair/i18n/lt.po | 4 +- addons/mrp_repair/i18n/mn.po | 4 +- addons/mrp_repair/i18n/nl.po | 8 +- addons/mrp_repair/i18n/nl_BE.po | 4 +- addons/mrp_repair/i18n/pl.po | 4 +- addons/mrp_repair/i18n/pt.po | 4 +- addons/mrp_repair/i18n/pt_BR.po | 112 +- addons/mrp_repair/i18n/ro.po | 4 +- addons/mrp_repair/i18n/ru.po | 4 +- addons/mrp_repair/i18n/sl.po | 4 +- addons/mrp_repair/i18n/sq.po | 4 +- addons/mrp_repair/i18n/sr.po | 4 +- addons/mrp_repair/i18n/sr@latin.po | 4 +- addons/mrp_repair/i18n/sv.po | 4 +- addons/mrp_repair/i18n/tlh.po | 4 +- addons/mrp_repair/i18n/tr.po | 4 +- addons/mrp_repair/i18n/uk.po | 4 +- addons/mrp_repair/i18n/vi.po | 4 +- addons/mrp_repair/i18n/zh_CN.po | 4 +- addons/mrp_repair/i18n/zh_TW.po | 4 +- addons/multi_company/i18n/ar.po | 4 +- addons/multi_company/i18n/bg.po | 4 +- addons/multi_company/i18n/bs.po | 4 +- addons/multi_company/i18n/ca.po | 4 +- addons/multi_company/i18n/cs.po | 4 +- addons/multi_company/i18n/da.po | 4 +- addons/multi_company/i18n/de.po | 4 +- addons/multi_company/i18n/es.po | 4 +- addons/multi_company/i18n/es_CR.po | 4 +- addons/multi_company/i18n/es_EC.po | 4 +- addons/multi_company/i18n/et.po | 4 +- addons/multi_company/i18n/fi.po | 4 +- addons/multi_company/i18n/fr.po | 4 +- addons/multi_company/i18n/gl.po | 4 +- addons/multi_company/i18n/hr.po | 4 +- addons/multi_company/i18n/hu.po | 4 +- addons/multi_company/i18n/id.po | 4 +- addons/multi_company/i18n/it.po | 4 +- addons/multi_company/i18n/ja.po | 4 +- addons/multi_company/i18n/lo.po | 4 +- addons/multi_company/i18n/lt.po | 4 +- addons/multi_company/i18n/lv.po | 4 +- addons/multi_company/i18n/mn.po | 4 +- addons/multi_company/i18n/nb.po | 4 +- addons/multi_company/i18n/nl.po | 4 +- addons/multi_company/i18n/oc.po | 4 +- addons/multi_company/i18n/pl.po | 4 +- addons/multi_company/i18n/pt.po | 4 +- addons/multi_company/i18n/pt_BR.po | 4 +- addons/multi_company/i18n/ro.po | 4 +- addons/multi_company/i18n/ru.po | 4 +- addons/multi_company/i18n/sl.po | 4 +- addons/multi_company/i18n/sr.po | 4 +- addons/multi_company/i18n/sr@latin.po | 4 +- addons/multi_company/i18n/sv.po | 4 +- addons/multi_company/i18n/tr.po | 4 +- addons/multi_company/i18n/uk.po | 4 +- addons/multi_company/i18n/vi.po | 4 +- addons/multi_company/i18n/zh_CN.po | 12 +- addons/multi_company/i18n/zh_TW.po | 4 +- addons/note/i18n/de.po | 4 +- addons/note/i18n/es.po | 4 +- addons/note/i18n/fr.po | 4 +- addons/note/i18n/hr.po | 4 +- addons/note/i18n/id.po | 4 +- addons/note/i18n/it.po | 4 +- addons/note/i18n/nl.po | 4 +- addons/note/i18n/pl.po | 4 +- addons/note/i18n/pt.po | 4 +- addons/note/i18n/pt_BR.po | 4 +- addons/note/i18n/ro.po | 4 +- addons/note/i18n/sl.po | 2 +- addons/note/i18n/zh_CN.po | 4 +- addons/note_pad/i18n/de.po | 4 +- addons/note_pad/i18n/es.po | 4 +- addons/note_pad/i18n/fr.po | 4 +- addons/note_pad/i18n/hr.po | 4 +- addons/note_pad/i18n/it.po | 4 +- addons/note_pad/i18n/nl.po | 4 +- addons/note_pad/i18n/pl.po | 4 +- addons/note_pad/i18n/pt.po | 4 +- addons/note_pad/i18n/pt_BR.po | 4 +- addons/note_pad/i18n/ru.po | 4 +- addons/note_pad/i18n/zh_CN.po | 4 +- addons/pad/i18n/ar.po | 4 +- addons/pad/i18n/bg.po | 4 +- addons/pad/i18n/ca.po | 4 +- addons/pad/i18n/cs.po | 4 +- addons/pad/i18n/da.po | 4 +- addons/pad/i18n/de.po | 4 +- addons/pad/i18n/es.po | 6 +- addons/pad/i18n/es_CR.po | 4 +- addons/pad/i18n/fi.po | 4 +- addons/pad/i18n/fr.po | 4 +- addons/pad/i18n/gl.po | 4 +- addons/pad/i18n/hr.po | 4 +- addons/pad/i18n/hu.po | 4 +- addons/pad/i18n/it.po | 4 +- addons/pad/i18n/ja.po | 4 +- addons/pad/i18n/mn.po | 4 +- addons/pad/i18n/nb.po | 4 +- addons/pad/i18n/nl.po | 4 +- addons/pad/i18n/pl.po | 4 +- addons/pad/i18n/pt.po | 4 +- addons/pad/i18n/pt_BR.po | 6 +- addons/pad/i18n/ro.po | 4 +- addons/pad/i18n/ru.po | 12 +- addons/pad/i18n/sl.po | 4 +- addons/pad/i18n/sr@latin.po | 4 +- addons/pad/i18n/sv.po | 4 +- addons/pad/i18n/tr.po | 4 +- addons/pad/i18n/zh_CN.po | 6 +- addons/pad_project/i18n/ar.po | 4 +- addons/pad_project/i18n/cs.po | 4 +- addons/pad_project/i18n/de.po | 4 +- addons/pad_project/i18n/es.po | 4 +- addons/pad_project/i18n/es_CR.po | 4 +- addons/pad_project/i18n/fi.po | 4 +- addons/pad_project/i18n/fr.po | 4 +- addons/pad_project/i18n/hr.po | 4 +- addons/pad_project/i18n/it.po | 4 +- addons/pad_project/i18n/ja.po | 4 +- addons/pad_project/i18n/mn.po | 4 +- addons/pad_project/i18n/nb.po | 4 +- addons/pad_project/i18n/nl.po | 4 +- addons/pad_project/i18n/pl.po | 4 +- addons/pad_project/i18n/pt.po | 4 +- addons/pad_project/i18n/pt_BR.po | 4 +- addons/pad_project/i18n/ro.po | 4 +- addons/pad_project/i18n/ru.po | 4 +- addons/pad_project/i18n/sl.po | 4 +- addons/pad_project/i18n/sv.po | 4 +- addons/pad_project/i18n/tr.po | 4 +- addons/pad_project/i18n/zh_CN.po | 4 +- addons/plugin/i18n/ar.po | 4 +- addons/plugin/i18n/cs.po | 4 +- addons/plugin/i18n/de.po | 4 +- addons/plugin/i18n/es.po | 4 +- addons/plugin/i18n/es_CR.po | 4 +- addons/plugin/i18n/fi.po | 4 +- addons/plugin/i18n/fr.po | 4 +- addons/plugin/i18n/hr.po | 4 +- addons/plugin/i18n/it.po | 4 +- addons/plugin/i18n/ja.po | 4 +- addons/plugin/i18n/mn.po | 4 +- addons/plugin/i18n/nb.po | 4 +- addons/plugin/i18n/nl.po | 4 +- addons/plugin/i18n/pt.po | 4 +- addons/plugin/i18n/pt_BR.po | 4 +- addons/plugin/i18n/ro.po | 4 +- addons/plugin/i18n/ru.po | 4 +- addons/plugin/i18n/sv.po | 4 +- addons/plugin/i18n/tr.po | 4 +- addons/plugin/i18n/zh_CN.po | 4 +- addons/plugin/i18n/zh_TW.po | 4 +- addons/plugin_outlook/i18n/ar.po | 4 +- addons/plugin_outlook/i18n/bg.po | 4 +- addons/plugin_outlook/i18n/ca.po | 4 +- addons/plugin_outlook/i18n/da.po | 4 +- addons/plugin_outlook/i18n/de.po | 4 +- addons/plugin_outlook/i18n/el.po | 4 +- addons/plugin_outlook/i18n/es.po | 4 +- addons/plugin_outlook/i18n/es_CR.po | 4 +- addons/plugin_outlook/i18n/et.po | 4 +- addons/plugin_outlook/i18n/fi.po | 4 +- addons/plugin_outlook/i18n/fr.po | 4 +- addons/plugin_outlook/i18n/gl.po | 4 +- addons/plugin_outlook/i18n/hr.po | 4 +- addons/plugin_outlook/i18n/hu.po | 4 +- addons/plugin_outlook/i18n/id.po | 4 +- addons/plugin_outlook/i18n/it.po | 4 +- addons/plugin_outlook/i18n/ja.po | 4 +- addons/plugin_outlook/i18n/mn.po | 4 +- addons/plugin_outlook/i18n/nb.po | 4 +- addons/plugin_outlook/i18n/nl.po | 4 +- addons/plugin_outlook/i18n/pl.po | 4 +- addons/plugin_outlook/i18n/pt.po | 4 +- addons/plugin_outlook/i18n/pt_BR.po | 4 +- addons/plugin_outlook/i18n/ro.po | 4 +- addons/plugin_outlook/i18n/ru.po | 4 +- addons/plugin_outlook/i18n/sl.po | 4 +- addons/plugin_outlook/i18n/sr@latin.po | 4 +- addons/plugin_outlook/i18n/sv.po | 4 +- addons/plugin_outlook/i18n/tr.po | 4 +- addons/plugin_outlook/i18n/zh_CN.po | 4 +- addons/plugin_thunderbird/i18n/ar.po | 4 +- addons/plugin_thunderbird/i18n/bg.po | 4 +- addons/plugin_thunderbird/i18n/ca.po | 4 +- addons/plugin_thunderbird/i18n/cs.po | 4 +- addons/plugin_thunderbird/i18n/da.po | 4 +- addons/plugin_thunderbird/i18n/de.po | 4 +- addons/plugin_thunderbird/i18n/en_GB.po | 4 +- addons/plugin_thunderbird/i18n/en_US.po | 4 +- addons/plugin_thunderbird/i18n/es.po | 4 +- addons/plugin_thunderbird/i18n/es_CR.po | 4 +- addons/plugin_thunderbird/i18n/et.po | 4 +- addons/plugin_thunderbird/i18n/eu.po | 4 +- addons/plugin_thunderbird/i18n/fi.po | 4 +- addons/plugin_thunderbird/i18n/fr.po | 4 +- addons/plugin_thunderbird/i18n/gl.po | 4 +- addons/plugin_thunderbird/i18n/hr.po | 4 +- addons/plugin_thunderbird/i18n/hu.po | 4 +- addons/plugin_thunderbird/i18n/is.po | 4 +- addons/plugin_thunderbird/i18n/it.po | 4 +- addons/plugin_thunderbird/i18n/ja.po | 4 +- addons/plugin_thunderbird/i18n/mn.po | 4 +- addons/plugin_thunderbird/i18n/nb.po | 4 +- addons/plugin_thunderbird/i18n/nl.po | 4 +- addons/plugin_thunderbird/i18n/pl.po | 4 +- addons/plugin_thunderbird/i18n/pt.po | 4 +- addons/plugin_thunderbird/i18n/pt_BR.po | 4 +- addons/plugin_thunderbird/i18n/ro.po | 4 +- addons/plugin_thunderbird/i18n/ru.po | 4 +- addons/plugin_thunderbird/i18n/sk.po | 4 +- addons/plugin_thunderbird/i18n/sl.po | 4 +- addons/plugin_thunderbird/i18n/sr.po | 4 +- addons/plugin_thunderbird/i18n/sr@latin.po | 4 +- addons/plugin_thunderbird/i18n/sv.po | 4 +- addons/plugin_thunderbird/i18n/tr.po | 4 +- addons/plugin_thunderbird/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/ar.po | 4 +- addons/point_of_sale/i18n/bg.po | 4 +- addons/point_of_sale/i18n/bs.po | 4 +- addons/point_of_sale/i18n/ca.po | 4 +- addons/point_of_sale/i18n/cs.po | 4 +- addons/point_of_sale/i18n/da.po | 4 +- addons/point_of_sale/i18n/de.po | 4 +- addons/point_of_sale/i18n/el.po | 4 +- addons/point_of_sale/i18n/es.po | 4 +- addons/point_of_sale/i18n/es_AR.po | 4 +- addons/point_of_sale/i18n/es_CR.po | 4 +- addons/point_of_sale/i18n/es_EC.po | 4 +- addons/point_of_sale/i18n/et.po | 4 +- addons/point_of_sale/i18n/fi.po | 4 +- addons/point_of_sale/i18n/fr.po | 8 +- addons/point_of_sale/i18n/hi.po | 4 +- addons/point_of_sale/i18n/hr.po | 4 +- addons/point_of_sale/i18n/hu.po | 4 +- addons/point_of_sale/i18n/id.po | 4 +- addons/point_of_sale/i18n/it.po | 4 +- addons/point_of_sale/i18n/ja.po | 4 +- addons/point_of_sale/i18n/ko.po | 4 +- addons/point_of_sale/i18n/lt.po | 4 +- addons/point_of_sale/i18n/lv.po | 4 +- addons/point_of_sale/i18n/mn.po | 4 +- addons/point_of_sale/i18n/nb.po | 4 +- addons/point_of_sale/i18n/nl.po | 4 +- addons/point_of_sale/i18n/nl_BE.po | 4 +- addons/point_of_sale/i18n/pl.po | 4 +- addons/point_of_sale/i18n/pt.po | 4 +- addons/point_of_sale/i18n/pt_BR.po | 4 +- addons/point_of_sale/i18n/ro.po | 4 +- addons/point_of_sale/i18n/ru.po | 4 +- addons/point_of_sale/i18n/sl.po | 6 +- addons/point_of_sale/i18n/sq.po | 4 +- addons/point_of_sale/i18n/sr.po | 4 +- addons/point_of_sale/i18n/sr@latin.po | 4 +- addons/point_of_sale/i18n/sv.po | 4 +- addons/point_of_sale/i18n/tlh.po | 4 +- addons/point_of_sale/i18n/tr.po | 4 +- addons/point_of_sale/i18n/uk.po | 4 +- addons/point_of_sale/i18n/vi.po | 4 +- addons/point_of_sale/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/zh_HK.po | 4 +- addons/point_of_sale/i18n/zh_TW.po | 4 +- addons/portal/i18n/ar.po | 4 +- addons/portal/i18n/bg.po | 4 +- addons/portal/i18n/bs.po | 4 +- addons/portal/i18n/ca.po | 4 +- addons/portal/i18n/cs.po | 4 +- addons/portal/i18n/da.po | 4 +- addons/portal/i18n/de.po | 4 +- addons/portal/i18n/es.po | 19 +- addons/portal/i18n/es_CR.po | 4 +- addons/portal/i18n/et.po | 4 +- addons/portal/i18n/fi.po | 4 +- addons/portal/i18n/fr.po | 4 +- addons/portal/i18n/hr.po | 4 +- addons/portal/i18n/hu.po | 4 +- addons/portal/i18n/id.po | 4 +- addons/portal/i18n/it.po | 4 +- addons/portal/i18n/ja.po | 4 +- addons/portal/i18n/lo.po | 4 +- addons/portal/i18n/lt.po | 4 +- addons/portal/i18n/mn.po | 4 +- addons/portal/i18n/nl.po | 4 +- addons/portal/i18n/pl.po | 4 +- addons/portal/i18n/pt.po | 4 +- addons/portal/i18n/pt_BR.po | 4 +- addons/portal/i18n/ro.po | 4 +- addons/portal/i18n/ru.po | 108 +- addons/portal/i18n/sl.po | 4 +- addons/portal/i18n/sr.po | 4 +- addons/portal/i18n/sv.po | 4 +- addons/portal/i18n/tr.po | 4 +- addons/portal/i18n/uk.po | 4 +- addons/portal/i18n/zh_CN.po | 4 +- addons/portal/i18n/zh_TW.po | 4 +- addons/portal_anonymous/i18n/cs.po | 4 +- addons/portal_anonymous/i18n/es.po | 6 +- addons/portal_anonymous/i18n/fr.po | 4 +- addons/portal_anonymous/i18n/nl.po | 4 +- addons/portal_anonymous/i18n/pt_BR.po | 4 +- addons/portal_anonymous/i18n/ro.po | 4 +- addons/portal_claim/i18n/cs.po | 4 +- addons/portal_claim/i18n/de.po | 4 +- addons/portal_claim/i18n/es.po | 4 +- addons/portal_claim/i18n/fr.po | 4 +- addons/portal_claim/i18n/hr.po | 4 +- addons/portal_claim/i18n/it.po | 4 +- addons/portal_claim/i18n/nl.po | 4 +- addons/portal_claim/i18n/pl.po | 4 +- addons/portal_claim/i18n/pt.po | 4 +- addons/portal_claim/i18n/pt_BR.po | 4 +- addons/portal_claim/i18n/ro.po | 4 +- addons/portal_claim/i18n/zh_CN.po | 4 +- addons/portal_crm/i18n/de.po | 4 +- addons/portal_crm/i18n/es.po | 4 +- addons/portal_crm/i18n/hr.po | 4 +- addons/portal_crm/i18n/nl.po | 4 +- addons/portal_crm/i18n/pl.po | 4 +- addons/portal_crm/i18n/pt.po | 4 +- addons/portal_crm/i18n/pt_BR.po | 4 +- addons/portal_crm/i18n/zh_CN.po | 4 +- addons/portal_event/i18n/cs.po | 4 +- addons/portal_event/i18n/de.po | 4 +- addons/portal_event/i18n/es.po | 4 +- addons/portal_event/i18n/hr.po | 4 +- addons/portal_event/i18n/nl.po | 4 +- addons/portal_event/i18n/pt.po | 4 +- addons/portal_event/i18n/pt_BR.po | 4 +- addons/portal_event/i18n/ro.po | 4 +- addons/portal_event/i18n/zh_CN.po | 4 +- addons/portal_hr_employees/i18n/de.po | 4 +- addons/portal_hr_employees/i18n/es.po | 8 +- addons/portal_hr_employees/i18n/hr.po | 4 +- addons/portal_hr_employees/i18n/nl.po | 4 +- addons/portal_hr_employees/i18n/pl.po | 4 +- addons/portal_hr_employees/i18n/pt.po | 4 +- addons/portal_hr_employees/i18n/pt_BR.po | 4 +- addons/portal_hr_employees/i18n/ro.po | 4 +- addons/portal_hr_employees/i18n/zh_CN.po | 4 +- addons/portal_project/i18n/cs.po | 4 +- addons/portal_project/i18n/de.po | 4 +- addons/portal_project/i18n/es.po | 4 +- addons/portal_project/i18n/fr.po | 4 +- addons/portal_project/i18n/hr.po | 4 +- addons/portal_project/i18n/it.po | 4 +- addons/portal_project/i18n/nl.po | 4 +- addons/portal_project/i18n/pl.po | 4 +- addons/portal_project/i18n/pt.po | 4 +- addons/portal_project/i18n/pt_BR.po | 4 +- addons/portal_project/i18n/ro.po | 4 +- addons/portal_project/i18n/sv.po | 4 +- addons/portal_project/i18n/zh_CN.po | 4 +- addons/portal_project_issue/i18n/cs.po | 4 +- addons/portal_project_issue/i18n/de.po | 4 +- addons/portal_project_issue/i18n/es.po | 4 +- addons/portal_project_issue/i18n/hr.po | 4 +- addons/portal_project_issue/i18n/it.po | 4 +- addons/portal_project_issue/i18n/nl.po | 4 +- addons/portal_project_issue/i18n/pl.po | 4 +- addons/portal_project_issue/i18n/pt_BR.po | 4 +- addons/portal_project_issue/i18n/ro.po | 4 +- addons/portal_project_issue/i18n/zh_CN.po | 4 +- addons/portal_sale/i18n/cs.po | 4 +- addons/portal_sale/i18n/de.po | 4 +- addons/portal_sale/i18n/es.po | 203 +- addons/portal_sale/i18n/fi.po | 4 +- addons/portal_sale/i18n/fr.po | 4 +- addons/portal_sale/i18n/hr.po | 4 +- addons/portal_sale/i18n/nl.po | 4 +- addons/portal_sale/i18n/pl.po | 4 +- addons/portal_sale/i18n/pt.po | 4 +- addons/portal_sale/i18n/pt_BR.po | 202 +- addons/portal_sale/i18n/ro.po | 4 +- addons/portal_sale/i18n/sv.po | 4 +- addons/portal_sale/i18n/zh_CN.po | 4 +- addons/process/i18n/ar.po | 4 +- addons/process/i18n/bg.po | 4 +- addons/process/i18n/bs.po | 4 +- addons/process/i18n/ca.po | 4 +- addons/process/i18n/cs.po | 4 +- addons/process/i18n/da.po | 4 +- addons/process/i18n/de.po | 4 +- addons/process/i18n/el.po | 4 +- addons/process/i18n/es.po | 4 +- addons/process/i18n/es_AR.po | 4 +- addons/process/i18n/es_CL.po | 4 +- addons/process/i18n/es_CR.po | 4 +- addons/process/i18n/et.po | 4 +- addons/process/i18n/fi.po | 4 +- addons/process/i18n/fr.po | 4 +- addons/process/i18n/gl.po | 4 +- addons/process/i18n/hi.po | 4 +- addons/process/i18n/hr.po | 4 +- addons/process/i18n/hu.po | 4 +- addons/process/i18n/id.po | 4 +- addons/process/i18n/it.po | 4 +- addons/process/i18n/ja.po | 4 +- addons/process/i18n/ko.po | 4 +- addons/process/i18n/lt.po | 4 +- addons/process/i18n/mn.po | 4 +- addons/process/i18n/nl.po | 4 +- addons/process/i18n/nl_BE.po | 4 +- addons/process/i18n/pl.po | 4 +- addons/process/i18n/pt.po | 4 +- addons/process/i18n/pt_BR.po | 4 +- addons/process/i18n/ro.po | 4 +- addons/process/i18n/ru.po | 4 +- addons/process/i18n/sk.po | 4 +- addons/process/i18n/sl.po | 6 +- addons/process/i18n/sq.po | 4 +- addons/process/i18n/sr.po | 4 +- addons/process/i18n/sr@latin.po | 4 +- addons/process/i18n/sv.po | 4 +- addons/process/i18n/tlh.po | 4 +- addons/process/i18n/tr.po | 4 +- addons/process/i18n/uk.po | 4 +- addons/process/i18n/vi.po | 4 +- addons/process/i18n/zh_CN.po | 4 +- addons/process/i18n/zh_TW.po | 4 +- addons/procurement/i18n/ar.po | 4 +- addons/procurement/i18n/bg.po | 4 +- addons/procurement/i18n/ca.po | 4 +- addons/procurement/i18n/cs.po | 4 +- addons/procurement/i18n/da.po | 4 +- addons/procurement/i18n/de.po | 4 +- addons/procurement/i18n/es.po | 4 +- addons/procurement/i18n/es_CL.po | 4 +- addons/procurement/i18n/es_CR.po | 4 +- addons/procurement/i18n/es_EC.po | 4 +- addons/procurement/i18n/et.po | 4 +- addons/procurement/i18n/fi.po | 4 +- addons/procurement/i18n/fr.po | 4 +- addons/procurement/i18n/gl.po | 4 +- addons/procurement/i18n/hr.po | 4 +- addons/procurement/i18n/hu.po | 4 +- addons/procurement/i18n/id.po | 4 +- addons/procurement/i18n/it.po | 4 +- addons/procurement/i18n/ja.po | 4 +- addons/procurement/i18n/mn.po | 4 +- addons/procurement/i18n/nb.po | 4 +- addons/procurement/i18n/nl.po | 12 +- addons/procurement/i18n/pl.po | 4 +- addons/procurement/i18n/pt.po | 4 +- addons/procurement/i18n/pt_BR.po | 4 +- addons/procurement/i18n/ro.po | 4 +- addons/procurement/i18n/ru.po | 64 +- addons/procurement/i18n/sl.po | 4 +- addons/procurement/i18n/sr.po | 4 +- addons/procurement/i18n/sr@latin.po | 4 +- addons/procurement/i18n/sv.po | 4 +- addons/procurement/i18n/tr.po | 4 +- addons/procurement/i18n/vi.po | 4 +- addons/procurement/i18n/zh_CN.po | 4 +- addons/product/i18n/ar.po | 4 +- addons/product/i18n/bg.po | 4 +- addons/product/i18n/bs.po | 4 +- addons/product/i18n/ca.po | 4 +- addons/product/i18n/cs.po | 4 +- addons/product/i18n/da.po | 4 +- addons/product/i18n/de.po | 4 +- addons/product/i18n/el.po | 4 +- addons/product/i18n/es.po | 16 +- addons/product/i18n/es_AR.po | 4 +- addons/product/i18n/es_CL.po | 4 +- addons/product/i18n/es_CR.po | 4 +- addons/product/i18n/es_EC.po | 4 +- addons/product/i18n/es_PY.po | 4 +- addons/product/i18n/et.po | 4 +- addons/product/i18n/eu.po | 4 +- addons/product/i18n/fi.po | 4 +- addons/product/i18n/fr.po | 4 +- addons/product/i18n/gl.po | 4 +- addons/product/i18n/hr.po | 4 +- addons/product/i18n/hu.po | 4 +- addons/product/i18n/id.po | 4 +- addons/product/i18n/it.po | 4 +- addons/product/i18n/ja.po | 4 +- addons/product/i18n/ko.po | 4 +- addons/product/i18n/lt.po | 4 +- addons/product/i18n/lv.po | 4 +- addons/product/i18n/mn.po | 4 +- addons/product/i18n/nb.po | 4 +- addons/product/i18n/nl.po | 18 +- addons/product/i18n/nl_BE.po | 4 +- addons/product/i18n/pl.po | 4 +- addons/product/i18n/pt.po | 4 +- addons/product/i18n/pt_BR.po | 4 +- addons/product/i18n/ro.po | 4 +- addons/product/i18n/ru.po | 60 +- addons/product/i18n/sk.po | 4 +- addons/product/i18n/sl.po | 4 +- addons/product/i18n/sq.po | 4 +- addons/product/i18n/sr.po | 4 +- addons/product/i18n/sr@latin.po | 4 +- addons/product/i18n/sv.po | 4 +- addons/product/i18n/th.po | 4 +- addons/product/i18n/tlh.po | 4 +- addons/product/i18n/tr.po | 4 +- addons/product/i18n/uk.po | 4 +- addons/product/i18n/vi.po | 4 +- addons/product/i18n/zh_CN.po | 4 +- addons/product/i18n/zh_TW.po | 4 +- addons/product_expiry/i18n/ar.po | 4 +- addons/product_expiry/i18n/ca.po | 4 +- addons/product_expiry/i18n/cs.po | 6 +- addons/product_expiry/i18n/da.po | 4 +- addons/product_expiry/i18n/de.po | 4 +- addons/product_expiry/i18n/el.po | 4 +- addons/product_expiry/i18n/es.po | 4 +- addons/product_expiry/i18n/es_CR.po | 4 +- addons/product_expiry/i18n/es_EC.po | 4 +- addons/product_expiry/i18n/et.po | 4 +- addons/product_expiry/i18n/fi.po | 4 +- addons/product_expiry/i18n/fr.po | 4 +- addons/product_expiry/i18n/gl.po | 4 +- addons/product_expiry/i18n/hr.po | 4 +- addons/product_expiry/i18n/hu.po | 4 +- addons/product_expiry/i18n/it.po | 4 +- addons/product_expiry/i18n/ja.po | 4 +- addons/product_expiry/i18n/mn.po | 4 +- addons/product_expiry/i18n/nl.po | 4 +- addons/product_expiry/i18n/pl.po | 4 +- addons/product_expiry/i18n/pt.po | 4 +- addons/product_expiry/i18n/pt_BR.po | 4 +- addons/product_expiry/i18n/ro.po | 4 +- addons/product_expiry/i18n/ru.po | 20 +- addons/product_expiry/i18n/sl.po | 4 +- addons/product_expiry/i18n/sr.po | 4 +- addons/product_expiry/i18n/sr@latin.po | 4 +- addons/product_expiry/i18n/sv.po | 4 +- addons/product_expiry/i18n/tr.po | 4 +- addons/product_expiry/i18n/vi.po | 4 +- addons/product_expiry/i18n/zh_CN.po | 4 +- addons/product_manufacturer/i18n/ar.po | 4 +- addons/product_manufacturer/i18n/bg.po | 4 +- addons/product_manufacturer/i18n/ca.po | 4 +- addons/product_manufacturer/i18n/cs.po | 4 +- addons/product_manufacturer/i18n/da.po | 4 +- addons/product_manufacturer/i18n/de.po | 4 +- addons/product_manufacturer/i18n/el.po | 4 +- addons/product_manufacturer/i18n/es.po | 4 +- addons/product_manufacturer/i18n/es_CR.po | 4 +- addons/product_manufacturer/i18n/es_EC.po | 4 +- addons/product_manufacturer/i18n/et.po | 4 +- addons/product_manufacturer/i18n/fi.po | 4 +- addons/product_manufacturer/i18n/fr.po | 4 +- addons/product_manufacturer/i18n/gl.po | 4 +- addons/product_manufacturer/i18n/hr.po | 4 +- addons/product_manufacturer/i18n/hu.po | 4 +- addons/product_manufacturer/i18n/it.po | 4 +- addons/product_manufacturer/i18n/ja.po | 4 +- addons/product_manufacturer/i18n/mn.po | 4 +- addons/product_manufacturer/i18n/nb.po | 4 +- addons/product_manufacturer/i18n/nl.po | 4 +- addons/product_manufacturer/i18n/pl.po | 4 +- addons/product_manufacturer/i18n/pt.po | 4 +- addons/product_manufacturer/i18n/pt_BR.po | 4 +- addons/product_manufacturer/i18n/ro.po | 4 +- addons/product_manufacturer/i18n/ru.po | 4 +- addons/product_manufacturer/i18n/sl.po | 4 +- addons/product_manufacturer/i18n/sr.po | 4 +- addons/product_manufacturer/i18n/sr@latin.po | 4 +- addons/product_manufacturer/i18n/sv.po | 4 +- addons/product_manufacturer/i18n/tr.po | 4 +- addons/product_manufacturer/i18n/zh_CN.po | 4 +- addons/product_margin/i18n/ar.po | 4 +- addons/product_margin/i18n/bg.po | 4 +- addons/product_margin/i18n/bs.po | 4 +- addons/product_margin/i18n/ca.po | 4 +- addons/product_margin/i18n/cs.po | 4 +- addons/product_margin/i18n/da.po | 4 +- addons/product_margin/i18n/de.po | 4 +- addons/product_margin/i18n/el.po | 4 +- addons/product_margin/i18n/es.po | 14 +- addons/product_margin/i18n/es_AR.po | 4 +- addons/product_margin/i18n/es_CR.po | 4 +- addons/product_margin/i18n/es_EC.po | 4 +- addons/product_margin/i18n/et.po | 4 +- addons/product_margin/i18n/fi.po | 4 +- addons/product_margin/i18n/fr.po | 4 +- addons/product_margin/i18n/gl.po | 4 +- addons/product_margin/i18n/gu.po | 4 +- addons/product_margin/i18n/hr.po | 4 +- addons/product_margin/i18n/hu.po | 4 +- addons/product_margin/i18n/id.po | 4 +- addons/product_margin/i18n/it.po | 4 +- addons/product_margin/i18n/ja.po | 4 +- addons/product_margin/i18n/ko.po | 4 +- addons/product_margin/i18n/lt.po | 4 +- addons/product_margin/i18n/nl.po | 4 +- addons/product_margin/i18n/nl_BE.po | 4 +- addons/product_margin/i18n/pl.po | 4 +- addons/product_margin/i18n/pt.po | 4 +- addons/product_margin/i18n/pt_BR.po | 4 +- addons/product_margin/i18n/ro.po | 4 +- addons/product_margin/i18n/ru.po | 4 +- addons/product_margin/i18n/sl.po | 4 +- addons/product_margin/i18n/sq.po | 4 +- addons/product_margin/i18n/sr.po | 4 +- addons/product_margin/i18n/sr@latin.po | 4 +- addons/product_margin/i18n/sv.po | 4 +- addons/product_margin/i18n/tlh.po | 4 +- addons/product_margin/i18n/tr.po | 4 +- addons/product_margin/i18n/uk.po | 4 +- addons/product_margin/i18n/vi.po | 4 +- addons/product_margin/i18n/zh_CN.po | 4 +- addons/product_margin/i18n/zh_TW.po | 4 +- addons/product_visible_discount/i18n/ar.po | 4 +- addons/product_visible_discount/i18n/bg.po | 4 +- addons/product_visible_discount/i18n/ca.po | 4 +- addons/product_visible_discount/i18n/cs.po | 4 +- addons/product_visible_discount/i18n/da.po | 4 +- addons/product_visible_discount/i18n/de.po | 4 +- addons/product_visible_discount/i18n/el.po | 4 +- addons/product_visible_discount/i18n/es.po | 4 +- addons/product_visible_discount/i18n/es_CR.po | 4 +- addons/product_visible_discount/i18n/es_EC.po | 4 +- addons/product_visible_discount/i18n/et.po | 4 +- addons/product_visible_discount/i18n/fi.po | 4 +- addons/product_visible_discount/i18n/fr.po | 4 +- addons/product_visible_discount/i18n/gl.po | 4 +- addons/product_visible_discount/i18n/hr.po | 4 +- addons/product_visible_discount/i18n/hu.po | 4 +- addons/product_visible_discount/i18n/it.po | 4 +- addons/product_visible_discount/i18n/ja.po | 4 +- addons/product_visible_discount/i18n/lt.po | 4 +- addons/product_visible_discount/i18n/mn.po | 4 +- addons/product_visible_discount/i18n/nl.po | 4 +- addons/product_visible_discount/i18n/pl.po | 4 +- addons/product_visible_discount/i18n/pt.po | 4 +- addons/product_visible_discount/i18n/pt_BR.po | 4 +- addons/product_visible_discount/i18n/ro.po | 4 +- addons/product_visible_discount/i18n/ru.po | 12 +- addons/product_visible_discount/i18n/sl.po | 6 +- addons/product_visible_discount/i18n/sr.po | 4 +- .../product_visible_discount/i18n/sr@latin.po | 4 +- addons/product_visible_discount/i18n/sv.po | 4 +- addons/product_visible_discount/i18n/tr.po | 4 +- addons/product_visible_discount/i18n/vi.po | 4 +- addons/product_visible_discount/i18n/zh_CN.po | 4 +- addons/project/i18n/ar.po | 4 +- addons/project/i18n/bg.po | 4 +- addons/project/i18n/bs.po | 4 +- addons/project/i18n/ca.po | 4 +- addons/project/i18n/cs.po | 4 +- addons/project/i18n/da.po | 4 +- addons/project/i18n/de.po | 4 +- addons/project/i18n/el.po | 4 +- addons/project/i18n/es.po | 34 +- addons/project/i18n/es_AR.po | 4 +- addons/project/i18n/es_CR.po | 4 +- addons/project/i18n/es_EC.po | 4 +- addons/project/i18n/es_MX.po | 4 +- addons/project/i18n/es_PY.po | 4 +- addons/project/i18n/et.po | 4 +- addons/project/i18n/eu.po | 4 +- addons/project/i18n/fi.po | 4 +- addons/project/i18n/fr.po | 4 +- addons/project/i18n/gl.po | 4 +- addons/project/i18n/gu.po | 4 +- addons/project/i18n/hr.po | 4 +- addons/project/i18n/hu.po | 4 +- addons/project/i18n/id.po | 4 +- addons/project/i18n/it.po | 4 +- addons/project/i18n/ja.po | 4 +- addons/project/i18n/ko.po | 4 +- addons/project/i18n/lt.po | 4 +- addons/project/i18n/lv.po | 4 +- addons/project/i18n/mn.po | 4 +- addons/project/i18n/nb.po | 4 +- addons/project/i18n/nl.po | 4 +- addons/project/i18n/nl_BE.po | 4 +- addons/project/i18n/pl.po | 4 +- addons/project/i18n/pt.po | 4 +- addons/project/i18n/pt_BR.po | 110 +- addons/project/i18n/ro.po | 4 +- addons/project/i18n/ru.po | 4 +- addons/project/i18n/sk.po | 4 +- addons/project/i18n/sl.po | 4 +- addons/project/i18n/sq.po | 4 +- addons/project/i18n/sv.po | 4 +- addons/project/i18n/tlh.po | 4 +- addons/project/i18n/tr.po | 4 +- addons/project/i18n/uk.po | 4 +- addons/project/i18n/vi.po | 4 +- addons/project/i18n/zh_CN.po | 4 +- addons/project/i18n/zh_TW.po | 4 +- addons/project_gtd/i18n/ar.po | 4 +- addons/project_gtd/i18n/bg.po | 4 +- addons/project_gtd/i18n/bs.po | 4 +- addons/project_gtd/i18n/ca.po | 4 +- addons/project_gtd/i18n/cs.po | 4 +- addons/project_gtd/i18n/da.po | 4 +- addons/project_gtd/i18n/de.po | 4 +- addons/project_gtd/i18n/el.po | 4 +- addons/project_gtd/i18n/es.po | 4 +- addons/project_gtd/i18n/es_AR.po | 4 +- addons/project_gtd/i18n/es_CR.po | 4 +- addons/project_gtd/i18n/es_EC.po | 4 +- addons/project_gtd/i18n/et.po | 4 +- addons/project_gtd/i18n/fi.po | 4 +- addons/project_gtd/i18n/fr.po | 4 +- addons/project_gtd/i18n/gl.po | 4 +- addons/project_gtd/i18n/hr.po | 4 +- addons/project_gtd/i18n/hu.po | 4 +- addons/project_gtd/i18n/id.po | 4 +- addons/project_gtd/i18n/it.po | 4 +- addons/project_gtd/i18n/ja.po | 4 +- addons/project_gtd/i18n/ko.po | 4 +- addons/project_gtd/i18n/lt.po | 4 +- addons/project_gtd/i18n/lv.po | 4 +- addons/project_gtd/i18n/mn.po | 4 +- addons/project_gtd/i18n/nl.po | 4 +- addons/project_gtd/i18n/nl_BE.po | 4 +- addons/project_gtd/i18n/pl.po | 4 +- addons/project_gtd/i18n/pt.po | 4 +- addons/project_gtd/i18n/pt_BR.po | 22 +- addons/project_gtd/i18n/ro.po | 4 +- addons/project_gtd/i18n/ru.po | 4 +- addons/project_gtd/i18n/sl.po | 4 +- addons/project_gtd/i18n/sq.po | 4 +- addons/project_gtd/i18n/sv.po | 4 +- addons/project_gtd/i18n/tlh.po | 4 +- addons/project_gtd/i18n/tr.po | 4 +- addons/project_gtd/i18n/uk.po | 4 +- addons/project_gtd/i18n/vi.po | 4 +- addons/project_gtd/i18n/zh_CN.po | 4 +- addons/project_gtd/i18n/zh_TW.po | 4 +- addons/project_issue/i18n/ar.po | 4 +- addons/project_issue/i18n/ca.po | 4 +- addons/project_issue/i18n/da.po | 4 +- addons/project_issue/i18n/de.po | 4 +- addons/project_issue/i18n/es.po | 38 +- addons/project_issue/i18n/es_CR.po | 4 +- addons/project_issue/i18n/fi.po | 4 +- addons/project_issue/i18n/fr.po | 4 +- addons/project_issue/i18n/hr.po | 4 +- addons/project_issue/i18n/hu.po | 4 +- addons/project_issue/i18n/it.po | 4 +- addons/project_issue/i18n/ja.po | 4 +- addons/project_issue/i18n/lt.po | 4 +- addons/project_issue/i18n/lv.po | 4 +- addons/project_issue/i18n/mn.po | 4 +- addons/project_issue/i18n/nb.po | 4 +- addons/project_issue/i18n/nl.po | 6 +- addons/project_issue/i18n/nl_BE.po | 4 +- addons/project_issue/i18n/pl.po | 4 +- addons/project_issue/i18n/pt.po | 4 +- addons/project_issue/i18n/pt_BR.po | 50 +- addons/project_issue/i18n/ro.po | 4 +- addons/project_issue/i18n/ru.po | 4 +- addons/project_issue/i18n/sl.po | 2 +- addons/project_issue/i18n/sv.po | 4 +- addons/project_issue/i18n/tr.po | 4 +- addons/project_issue/i18n/zh_CN.po | 4 +- addons/project_issue_sheet/i18n/ar.po | 4 +- addons/project_issue_sheet/i18n/ca.po | 4 +- addons/project_issue_sheet/i18n/da.po | 4 +- addons/project_issue_sheet/i18n/de.po | 4 +- addons/project_issue_sheet/i18n/es.po | 4 +- addons/project_issue_sheet/i18n/es_CR.po | 4 +- addons/project_issue_sheet/i18n/fi.po | 4 +- addons/project_issue_sheet/i18n/fr.po | 4 +- addons/project_issue_sheet/i18n/gl.po | 4 +- addons/project_issue_sheet/i18n/hr.po | 4 +- addons/project_issue_sheet/i18n/hu.po | 4 +- addons/project_issue_sheet/i18n/it.po | 4 +- addons/project_issue_sheet/i18n/ja.po | 4 +- addons/project_issue_sheet/i18n/lv.po | 4 +- addons/project_issue_sheet/i18n/mn.po | 4 +- addons/project_issue_sheet/i18n/nl.po | 4 +- addons/project_issue_sheet/i18n/pl.po | 4 +- addons/project_issue_sheet/i18n/pt.po | 4 +- addons/project_issue_sheet/i18n/pt_BR.po | 12 +- addons/project_issue_sheet/i18n/ro.po | 4 +- addons/project_issue_sheet/i18n/ru.po | 4 +- addons/project_issue_sheet/i18n/sv.po | 4 +- addons/project_issue_sheet/i18n/tr.po | 4 +- addons/project_issue_sheet/i18n/zh_CN.po | 4 +- addons/project_long_term/i18n/ar.po | 4 +- addons/project_long_term/i18n/ca.po | 4 +- addons/project_long_term/i18n/da.po | 4 +- addons/project_long_term/i18n/de.po | 4 +- addons/project_long_term/i18n/es.po | 6 +- addons/project_long_term/i18n/es_CR.po | 4 +- addons/project_long_term/i18n/es_EC.po | 4 +- addons/project_long_term/i18n/fi.po | 4 +- addons/project_long_term/i18n/fr.po | 4 +- addons/project_long_term/i18n/hr.po | 4 +- addons/project_long_term/i18n/hu.po | 4 +- addons/project_long_term/i18n/it.po | 4 +- addons/project_long_term/i18n/ja.po | 4 +- addons/project_long_term/i18n/lv.po | 4 +- addons/project_long_term/i18n/mn.po | 4 +- addons/project_long_term/i18n/nl.po | 4 +- addons/project_long_term/i18n/pl.po | 4 +- addons/project_long_term/i18n/pt.po | 4 +- addons/project_long_term/i18n/pt_BR.po | 36 +- addons/project_long_term/i18n/ro.po | 4 +- addons/project_long_term/i18n/ru.po | 4 +- addons/project_long_term/i18n/sv.po | 4 +- addons/project_long_term/i18n/tr.po | 4 +- addons/project_long_term/i18n/zh_CN.po | 4 +- addons/project_mrp/i18n/ar.po | 4 +- addons/project_mrp/i18n/bg.po | 4 +- addons/project_mrp/i18n/bs.po | 4 +- addons/project_mrp/i18n/ca.po | 4 +- addons/project_mrp/i18n/cs.po | 4 +- addons/project_mrp/i18n/da.po | 4 +- addons/project_mrp/i18n/de.po | 4 +- addons/project_mrp/i18n/el.po | 4 +- addons/project_mrp/i18n/es.po | 14 +- addons/project_mrp/i18n/es_AR.po | 4 +- addons/project_mrp/i18n/es_CR.po | 4 +- addons/project_mrp/i18n/es_EC.po | 4 +- addons/project_mrp/i18n/et.po | 4 +- addons/project_mrp/i18n/fi.po | 4 +- addons/project_mrp/i18n/fr.po | 4 +- addons/project_mrp/i18n/gl.po | 4 +- addons/project_mrp/i18n/gu.po | 4 +- addons/project_mrp/i18n/hr.po | 4 +- addons/project_mrp/i18n/hu.po | 4 +- addons/project_mrp/i18n/id.po | 4 +- addons/project_mrp/i18n/it.po | 4 +- addons/project_mrp/i18n/ja.po | 4 +- addons/project_mrp/i18n/ko.po | 4 +- addons/project_mrp/i18n/lt.po | 4 +- addons/project_mrp/i18n/lv.po | 4 +- addons/project_mrp/i18n/mn.po | 4 +- addons/project_mrp/i18n/nb.po | 4 +- addons/project_mrp/i18n/nl.po | 4 +- addons/project_mrp/i18n/nl_BE.po | 4 +- addons/project_mrp/i18n/pl.po | 4 +- addons/project_mrp/i18n/pt.po | 4 +- addons/project_mrp/i18n/pt_BR.po | 37 +- addons/project_mrp/i18n/ro.po | 4 +- addons/project_mrp/i18n/ru.po | 4 +- addons/project_mrp/i18n/sl.po | 4 +- addons/project_mrp/i18n/sq.po | 4 +- addons/project_mrp/i18n/sv.po | 4 +- addons/project_mrp/i18n/tlh.po | 4 +- addons/project_mrp/i18n/tr.po | 4 +- addons/project_mrp/i18n/uk.po | 4 +- addons/project_mrp/i18n/vi.po | 4 +- addons/project_mrp/i18n/zh_CN.po | 4 +- addons/project_mrp/i18n/zh_TW.po | 4 +- addons/project_timesheet/i18n/ar.po | 4 +- addons/project_timesheet/i18n/bg.po | 4 +- addons/project_timesheet/i18n/bs.po | 4 +- addons/project_timesheet/i18n/ca.po | 4 +- addons/project_timesheet/i18n/cs.po | 4 +- addons/project_timesheet/i18n/da.po | 4 +- addons/project_timesheet/i18n/de.po | 4 +- addons/project_timesheet/i18n/el.po | 4 +- addons/project_timesheet/i18n/es.po | 8 +- addons/project_timesheet/i18n/es_AR.po | 4 +- addons/project_timesheet/i18n/es_CR.po | 4 +- addons/project_timesheet/i18n/et.po | 4 +- addons/project_timesheet/i18n/fi.po | 4 +- addons/project_timesheet/i18n/fr.po | 4 +- addons/project_timesheet/i18n/gl.po | 4 +- addons/project_timesheet/i18n/hr.po | 4 +- addons/project_timesheet/i18n/hu.po | 66 +- addons/project_timesheet/i18n/id.po | 4 +- addons/project_timesheet/i18n/it.po | 4 +- addons/project_timesheet/i18n/ja.po | 4 +- addons/project_timesheet/i18n/ko.po | 4 +- addons/project_timesheet/i18n/lt.po | 4 +- addons/project_timesheet/i18n/lv.po | 4 +- addons/project_timesheet/i18n/mn.po | 4 +- addons/project_timesheet/i18n/nl.po | 4 +- addons/project_timesheet/i18n/nl_BE.po | 4 +- addons/project_timesheet/i18n/pl.po | 4 +- addons/project_timesheet/i18n/pt.po | 4 +- addons/project_timesheet/i18n/pt_BR.po | 27 +- addons/project_timesheet/i18n/ro.po | 4 +- addons/project_timesheet/i18n/ru.po | 4 +- addons/project_timesheet/i18n/sl.po | 4 +- addons/project_timesheet/i18n/sq.po | 4 +- addons/project_timesheet/i18n/sv.po | 4 +- addons/project_timesheet/i18n/tlh.po | 4 +- addons/project_timesheet/i18n/tr.po | 4 +- addons/project_timesheet/i18n/uk.po | 4 +- addons/project_timesheet/i18n/vi.po | 4 +- addons/project_timesheet/i18n/zh_CN.po | 4 +- addons/project_timesheet/i18n/zh_TW.po | 4 +- addons/purchase/i18n/ar.po | 4 +- addons/purchase/i18n/bg.po | 4 +- addons/purchase/i18n/bs.po | 4 +- addons/purchase/i18n/ca.po | 4 +- addons/purchase/i18n/cs.po | 4 +- addons/purchase/i18n/da.po | 4 +- addons/purchase/i18n/de.po | 4 +- addons/purchase/i18n/el.po | 4 +- addons/purchase/i18n/en_GB.po | 4 +- addons/purchase/i18n/es.po | 113 +- addons/purchase/i18n/es_AR.po | 4 +- addons/purchase/i18n/es_CL.po | 4 +- addons/purchase/i18n/es_CR.po | 4 +- addons/purchase/i18n/es_EC.po | 4 +- addons/purchase/i18n/et.po | 4 +- addons/purchase/i18n/fi.po | 4 +- addons/purchase/i18n/fr.po | 4 +- addons/purchase/i18n/gl.po | 4 +- addons/purchase/i18n/hr.po | 4 +- addons/purchase/i18n/hu.po | 4 +- addons/purchase/i18n/id.po | 4 +- addons/purchase/i18n/it.po | 4 +- addons/purchase/i18n/ja.po | 4 +- addons/purchase/i18n/ko.po | 4 +- addons/purchase/i18n/lt.po | 4 +- addons/purchase/i18n/lv.po | 4 +- addons/purchase/i18n/mn.po | 4 +- addons/purchase/i18n/nb.po | 4 +- addons/purchase/i18n/nl.po | 4 +- addons/purchase/i18n/nl_BE.po | 4 +- addons/purchase/i18n/pl.po | 31 +- addons/purchase/i18n/pt.po | 6 +- addons/purchase/i18n/pt_BR.po | 114 +- addons/purchase/i18n/ro.po | 4 +- addons/purchase/i18n/ru.po | 40 +- addons/purchase/i18n/sk.po | 4 +- addons/purchase/i18n/sl.po | 4 +- addons/purchase/i18n/sq.po | 4 +- addons/purchase/i18n/sr.po | 4 +- addons/purchase/i18n/sr@latin.po | 4 +- addons/purchase/i18n/sv.po | 4 +- addons/purchase/i18n/th.po | 4 +- addons/purchase/i18n/tlh.po | 4 +- addons/purchase/i18n/tr.po | 4 +- addons/purchase/i18n/uk.po | 4 +- addons/purchase/i18n/vi.po | 4 +- addons/purchase/i18n/zh_CN.po | 84 +- addons/purchase/i18n/zh_TW.po | 4 +- addons/purchase_analytic_plans/i18n/ar.po | 4 +- addons/purchase_analytic_plans/i18n/bg.po | 4 +- addons/purchase_analytic_plans/i18n/bs.po | 4 +- addons/purchase_analytic_plans/i18n/ca.po | 4 +- addons/purchase_analytic_plans/i18n/cs.po | 4 +- addons/purchase_analytic_plans/i18n/da.po | 4 +- addons/purchase_analytic_plans/i18n/de.po | 4 +- addons/purchase_analytic_plans/i18n/el.po | 4 +- addons/purchase_analytic_plans/i18n/es.po | 4 +- addons/purchase_analytic_plans/i18n/es_AR.po | 4 +- addons/purchase_analytic_plans/i18n/es_CR.po | 4 +- addons/purchase_analytic_plans/i18n/et.po | 4 +- addons/purchase_analytic_plans/i18n/fi.po | 4 +- addons/purchase_analytic_plans/i18n/fr.po | 4 +- addons/purchase_analytic_plans/i18n/gl.po | 4 +- addons/purchase_analytic_plans/i18n/hr.po | 4 +- addons/purchase_analytic_plans/i18n/hu.po | 4 +- addons/purchase_analytic_plans/i18n/id.po | 4 +- addons/purchase_analytic_plans/i18n/it.po | 4 +- addons/purchase_analytic_plans/i18n/ja.po | 4 +- addons/purchase_analytic_plans/i18n/ko.po | 4 +- addons/purchase_analytic_plans/i18n/lt.po | 4 +- addons/purchase_analytic_plans/i18n/mn.po | 4 +- addons/purchase_analytic_plans/i18n/nl.po | 4 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 4 +- addons/purchase_analytic_plans/i18n/pl.po | 4 +- addons/purchase_analytic_plans/i18n/pt.po | 4 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 4 +- addons/purchase_analytic_plans/i18n/ro.po | 4 +- addons/purchase_analytic_plans/i18n/ru.po | 4 +- addons/purchase_analytic_plans/i18n/sl.po | 4 +- addons/purchase_analytic_plans/i18n/sq.po | 4 +- addons/purchase_analytic_plans/i18n/sr.po | 4 +- .../purchase_analytic_plans/i18n/sr@latin.po | 4 +- addons/purchase_analytic_plans/i18n/sv.po | 4 +- addons/purchase_analytic_plans/i18n/tlh.po | 4 +- addons/purchase_analytic_plans/i18n/tr.po | 4 +- addons/purchase_analytic_plans/i18n/uk.po | 4 +- addons/purchase_analytic_plans/i18n/ur.po | 4 +- addons/purchase_analytic_plans/i18n/vi.po | 4 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 4 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 4 +- addons/purchase_double_validation/i18n/ar.po | 4 +- addons/purchase_double_validation/i18n/bg.po | 4 +- addons/purchase_double_validation/i18n/ca.po | 4 +- addons/purchase_double_validation/i18n/da.po | 4 +- addons/purchase_double_validation/i18n/de.po | 4 +- addons/purchase_double_validation/i18n/es.po | 4 +- .../purchase_double_validation/i18n/es_CR.po | 4 +- .../purchase_double_validation/i18n/es_EC.po | 4 +- addons/purchase_double_validation/i18n/fi.po | 4 +- addons/purchase_double_validation/i18n/fr.po | 4 +- addons/purchase_double_validation/i18n/gl.po | 4 +- addons/purchase_double_validation/i18n/hr.po | 4 +- addons/purchase_double_validation/i18n/hu.po | 16 +- addons/purchase_double_validation/i18n/it.po | 4 +- addons/purchase_double_validation/i18n/ja.po | 4 +- addons/purchase_double_validation/i18n/nl.po | 4 +- addons/purchase_double_validation/i18n/pl.po | 4 +- addons/purchase_double_validation/i18n/pt.po | 4 +- .../purchase_double_validation/i18n/pt_BR.po | 4 +- addons/purchase_double_validation/i18n/ro.po | 4 +- addons/purchase_double_validation/i18n/ru.po | 4 +- addons/purchase_double_validation/i18n/sl.po | 4 +- addons/purchase_double_validation/i18n/sv.po | 4 +- addons/purchase_double_validation/i18n/tr.po | 4 +- .../purchase_double_validation/i18n/zh_CN.po | 4 +- addons/purchase_requisition/i18n/ar.po | 4 +- addons/purchase_requisition/i18n/bg.po | 4 +- addons/purchase_requisition/i18n/ca.po | 4 +- addons/purchase_requisition/i18n/da.po | 4 +- addons/purchase_requisition/i18n/de.po | 4 +- addons/purchase_requisition/i18n/es.po | 4 +- addons/purchase_requisition/i18n/es_CR.po | 4 +- addons/purchase_requisition/i18n/fi.po | 4 +- addons/purchase_requisition/i18n/fr.po | 4 +- addons/purchase_requisition/i18n/hr.po | 4 +- addons/purchase_requisition/i18n/hu.po | 75 +- addons/purchase_requisition/i18n/id.po | 4 +- addons/purchase_requisition/i18n/it.po | 4 +- addons/purchase_requisition/i18n/ja.po | 4 +- addons/purchase_requisition/i18n/nb.po | 4 +- addons/purchase_requisition/i18n/nl.po | 6 +- addons/purchase_requisition/i18n/pl.po | 4 +- addons/purchase_requisition/i18n/pt.po | 4 +- addons/purchase_requisition/i18n/pt_BR.po | 4 +- addons/purchase_requisition/i18n/ro.po | 4 +- addons/purchase_requisition/i18n/ru.po | 4 +- addons/purchase_requisition/i18n/sl.po | 4 +- addons/purchase_requisition/i18n/sv.po | 4 +- addons/purchase_requisition/i18n/tr.po | 4 +- addons/purchase_requisition/i18n/zh_CN.po | 4 +- addons/report_intrastat/i18n/ar.po | 4 +- addons/report_intrastat/i18n/bg.po | 4 +- addons/report_intrastat/i18n/bs.po | 4 +- addons/report_intrastat/i18n/ca.po | 4 +- addons/report_intrastat/i18n/cs.po | 4 +- addons/report_intrastat/i18n/da.po | 4 +- addons/report_intrastat/i18n/de.po | 4 +- addons/report_intrastat/i18n/es.po | 4 +- addons/report_intrastat/i18n/es_AR.po | 4 +- addons/report_intrastat/i18n/es_CR.po | 4 +- addons/report_intrastat/i18n/et.po | 4 +- addons/report_intrastat/i18n/fi.po | 4 +- addons/report_intrastat/i18n/fr.po | 4 +- addons/report_intrastat/i18n/hr.po | 4 +- addons/report_intrastat/i18n/hu.po | 4 +- addons/report_intrastat/i18n/id.po | 4 +- addons/report_intrastat/i18n/it.po | 4 +- addons/report_intrastat/i18n/ja.po | 4 +- addons/report_intrastat/i18n/ko.po | 4 +- addons/report_intrastat/i18n/lt.po | 4 +- addons/report_intrastat/i18n/nl.po | 6 +- addons/report_intrastat/i18n/nl_BE.po | 4 +- addons/report_intrastat/i18n/pl.po | 4 +- addons/report_intrastat/i18n/pt.po | 4 +- addons/report_intrastat/i18n/pt_BR.po | 4 +- addons/report_intrastat/i18n/ro.po | 4 +- addons/report_intrastat/i18n/ru.po | 4 +- addons/report_intrastat/i18n/sl.po | 4 +- addons/report_intrastat/i18n/sq.po | 4 +- addons/report_intrastat/i18n/sv.po | 4 +- addons/report_intrastat/i18n/tlh.po | 4 +- addons/report_intrastat/i18n/tr.po | 4 +- addons/report_intrastat/i18n/uk.po | 4 +- addons/report_intrastat/i18n/vi.po | 4 +- addons/report_intrastat/i18n/zh_CN.po | 4 +- addons/report_intrastat/i18n/zh_TW.po | 4 +- addons/report_webkit/i18n/ar.po | 4 +- addons/report_webkit/i18n/bg.po | 4 +- addons/report_webkit/i18n/ca.po | 4 +- addons/report_webkit/i18n/da.po | 4 +- addons/report_webkit/i18n/de.po | 4 +- addons/report_webkit/i18n/es.po | 4 +- addons/report_webkit/i18n/es_CR.po | 4 +- addons/report_webkit/i18n/fi.po | 4 +- addons/report_webkit/i18n/fr.po | 4 +- addons/report_webkit/i18n/hr.po | 4 +- addons/report_webkit/i18n/hu.po | 67 +- addons/report_webkit/i18n/it.po | 4 +- addons/report_webkit/i18n/ja.po | 4 +- addons/report_webkit/i18n/nl.po | 4 +- addons/report_webkit/i18n/pl.po | 4 +- addons/report_webkit/i18n/pt.po | 4 +- addons/report_webkit/i18n/pt_BR.po | 4 +- addons/report_webkit/i18n/ro.po | 4 +- addons/report_webkit/i18n/ru.po | 4 +- addons/report_webkit/i18n/sv.po | 4 +- addons/report_webkit/i18n/tr.po | 4 +- addons/report_webkit/i18n/zh_CN.po | 4 +- addons/resource/i18n/ar.po | 4 +- addons/resource/i18n/bg.po | 4 +- addons/resource/i18n/ca.po | 4 +- addons/resource/i18n/cs.po | 4 +- addons/resource/i18n/da.po | 4 +- addons/resource/i18n/de.po | 4 +- addons/resource/i18n/es.po | 4 +- addons/resource/i18n/es_CR.po | 4 +- addons/resource/i18n/es_EC.po | 4 +- addons/resource/i18n/et.po | 4 +- addons/resource/i18n/fi.po | 4 +- addons/resource/i18n/fr.po | 4 +- addons/resource/i18n/gl.po | 4 +- addons/resource/i18n/hr.po | 4 +- addons/resource/i18n/hu.po | 25 +- addons/resource/i18n/it.po | 4 +- addons/resource/i18n/ja.po | 4 +- addons/resource/i18n/lt.po | 4 +- addons/resource/i18n/mn.po | 4 +- addons/resource/i18n/nl.po | 4 +- addons/resource/i18n/pl.po | 4 +- addons/resource/i18n/pt.po | 4 +- addons/resource/i18n/pt_BR.po | 4 +- addons/resource/i18n/ro.po | 4 +- addons/resource/i18n/ru.po | 4 +- addons/resource/i18n/sl.po | 4 +- addons/resource/i18n/sv.po | 4 +- addons/resource/i18n/tr.po | 4 +- addons/resource/i18n/vi.po | 4 +- addons/resource/i18n/zh_CN.po | 4 +- addons/sale/i18n/ar.po | 4 +- addons/sale/i18n/bg.po | 4 +- addons/sale/i18n/bs.po | 4 +- addons/sale/i18n/ca.po | 4 +- addons/sale/i18n/cs.po | 4 +- addons/sale/i18n/da.po | 4 +- addons/sale/i18n/de.po | 4 +- addons/sale/i18n/el.po | 4 +- addons/sale/i18n/es.po | 190 +- addons/sale/i18n/es_AR.po | 4 +- addons/sale/i18n/es_CL.po | 4 +- addons/sale/i18n/es_CR.po | 4 +- addons/sale/i18n/es_EC.po | 4 +- addons/sale/i18n/es_MX.po | 4 +- addons/sale/i18n/et.po | 4 +- addons/sale/i18n/eu.po | 4 +- addons/sale/i18n/fi.po | 4 +- addons/sale/i18n/fr.po | 4 +- addons/sale/i18n/gl.po | 4 +- addons/sale/i18n/hr.po | 4 +- addons/sale/i18n/hu.po | 454 ++-- addons/sale/i18n/id.po | 4 +- addons/sale/i18n/is.po | 8 +- addons/sale/i18n/it.po | 4 +- addons/sale/i18n/ja.po | 4 +- addons/sale/i18n/ko.po | 4 +- addons/sale/i18n/lo.po | 4 +- addons/sale/i18n/lt.po | 4 +- addons/sale/i18n/lv.po | 4 +- addons/sale/i18n/mn.po | 4 +- addons/sale/i18n/nb.po | 4 +- addons/sale/i18n/nl.po | 4 +- addons/sale/i18n/nl_BE.po | 4 +- addons/sale/i18n/oc.po | 4 +- addons/sale/i18n/pl.po | 61 +- addons/sale/i18n/pt.po | 4 +- addons/sale/i18n/pt_BR.po | 204 +- addons/sale/i18n/ro.po | 4 +- addons/sale/i18n/ru.po | 4 +- addons/sale/i18n/sk.po | 4 +- addons/sale/i18n/sl.po | 4 +- addons/sale/i18n/sq.po | 4 +- addons/sale/i18n/sr.po | 4 +- addons/sale/i18n/sr@latin.po | 4 +- addons/sale/i18n/sv.po | 4 +- addons/sale/i18n/th.po | 4 +- addons/sale/i18n/tlh.po | 4 +- addons/sale/i18n/tr.po | 4 +- addons/sale/i18n/uk.po | 4 +- addons/sale/i18n/vi.po | 4 +- addons/sale/i18n/zh_CN.po | 4 +- addons/sale/i18n/zh_TW.po | 4 +- addons/sale_analytic_plans/i18n/ar.po | 4 +- addons/sale_analytic_plans/i18n/bg.po | 4 +- addons/sale_analytic_plans/i18n/bs.po | 4 +- addons/sale_analytic_plans/i18n/ca.po | 4 +- addons/sale_analytic_plans/i18n/cs.po | 4 +- addons/sale_analytic_plans/i18n/da.po | 4 +- addons/sale_analytic_plans/i18n/de.po | 4 +- addons/sale_analytic_plans/i18n/el.po | 4 +- addons/sale_analytic_plans/i18n/es.po | 4 +- addons/sale_analytic_plans/i18n/es_AR.po | 4 +- addons/sale_analytic_plans/i18n/es_CL.po | 4 +- addons/sale_analytic_plans/i18n/es_CR.po | 4 +- addons/sale_analytic_plans/i18n/et.po | 4 +- addons/sale_analytic_plans/i18n/fi.po | 4 +- addons/sale_analytic_plans/i18n/fr.po | 4 +- addons/sale_analytic_plans/i18n/gl.po | 4 +- addons/sale_analytic_plans/i18n/hr.po | 4 +- addons/sale_analytic_plans/i18n/hu.po | 6 +- addons/sale_analytic_plans/i18n/id.po | 4 +- addons/sale_analytic_plans/i18n/it.po | 4 +- addons/sale_analytic_plans/i18n/ja.po | 4 +- addons/sale_analytic_plans/i18n/ko.po | 4 +- addons/sale_analytic_plans/i18n/lt.po | 4 +- addons/sale_analytic_plans/i18n/mn.po | 4 +- addons/sale_analytic_plans/i18n/nb.po | 4 +- addons/sale_analytic_plans/i18n/nl.po | 4 +- addons/sale_analytic_plans/i18n/nl_BE.po | 4 +- addons/sale_analytic_plans/i18n/oc.po | 4 +- addons/sale_analytic_plans/i18n/pl.po | 4 +- addons/sale_analytic_plans/i18n/pt.po | 4 +- addons/sale_analytic_plans/i18n/pt_BR.po | 4 +- addons/sale_analytic_plans/i18n/ro.po | 4 +- addons/sale_analytic_plans/i18n/ru.po | 4 +- addons/sale_analytic_plans/i18n/sk.po | 4 +- addons/sale_analytic_plans/i18n/sl.po | 4 +- addons/sale_analytic_plans/i18n/sq.po | 4 +- addons/sale_analytic_plans/i18n/sr.po | 4 +- addons/sale_analytic_plans/i18n/sr@latin.po | 4 +- addons/sale_analytic_plans/i18n/sv.po | 4 +- addons/sale_analytic_plans/i18n/tlh.po | 4 +- addons/sale_analytic_plans/i18n/tr.po | 4 +- addons/sale_analytic_plans/i18n/uk.po | 4 +- addons/sale_analytic_plans/i18n/vi.po | 4 +- addons/sale_analytic_plans/i18n/zh_CN.po | 4 +- addons/sale_analytic_plans/i18n/zh_TW.po | 4 +- addons/sale_crm/i18n/ar.po | 4 +- addons/sale_crm/i18n/bg.po | 4 +- addons/sale_crm/i18n/bs.po | 4 +- addons/sale_crm/i18n/ca.po | 4 +- addons/sale_crm/i18n/cs.po | 4 +- addons/sale_crm/i18n/da.po | 4 +- addons/sale_crm/i18n/de.po | 4 +- addons/sale_crm/i18n/el.po | 4 +- addons/sale_crm/i18n/es.po | 10 +- addons/sale_crm/i18n/es_AR.po | 4 +- addons/sale_crm/i18n/es_CL.po | 4 +- addons/sale_crm/i18n/es_CR.po | 4 +- addons/sale_crm/i18n/et.po | 4 +- addons/sale_crm/i18n/fi.po | 4 +- addons/sale_crm/i18n/fr.po | 4 +- addons/sale_crm/i18n/gl.po | 4 +- addons/sale_crm/i18n/hr.po | 4 +- addons/sale_crm/i18n/hu.po | 4 +- addons/sale_crm/i18n/id.po | 4 +- addons/sale_crm/i18n/it.po | 4 +- addons/sale_crm/i18n/ja.po | 4 +- addons/sale_crm/i18n/ko.po | 4 +- addons/sale_crm/i18n/lt.po | 4 +- addons/sale_crm/i18n/lv.po | 4 +- addons/sale_crm/i18n/mn.po | 4 +- addons/sale_crm/i18n/nb.po | 4 +- addons/sale_crm/i18n/nl.po | 4 +- addons/sale_crm/i18n/nl_BE.po | 4 +- addons/sale_crm/i18n/pl.po | 4 +- addons/sale_crm/i18n/pt.po | 4 +- addons/sale_crm/i18n/pt_BR.po | 9 +- addons/sale_crm/i18n/ro.po | 4 +- addons/sale_crm/i18n/ru.po | 4 +- addons/sale_crm/i18n/sk.po | 4 +- addons/sale_crm/i18n/sl.po | 4 +- addons/sale_crm/i18n/sq.po | 4 +- addons/sale_crm/i18n/sv.po | 4 +- addons/sale_crm/i18n/tlh.po | 4 +- addons/sale_crm/i18n/tr.po | 4 +- addons/sale_crm/i18n/uk.po | 4 +- addons/sale_crm/i18n/vi.po | 4 +- addons/sale_crm/i18n/zh_CN.po | 10 +- addons/sale_crm/i18n/zh_TW.po | 4 +- addons/sale_journal/i18n/ar.po | 4 +- addons/sale_journal/i18n/bg.po | 4 +- addons/sale_journal/i18n/bs.po | 4 +- addons/sale_journal/i18n/ca.po | 4 +- addons/sale_journal/i18n/cs.po | 4 +- addons/sale_journal/i18n/da.po | 4 +- addons/sale_journal/i18n/de.po | 4 +- addons/sale_journal/i18n/el.po | 4 +- addons/sale_journal/i18n/es.po | 4 +- addons/sale_journal/i18n/es_AR.po | 4 +- addons/sale_journal/i18n/es_CL.po | 4 +- addons/sale_journal/i18n/es_CR.po | 4 +- addons/sale_journal/i18n/et.po | 4 +- addons/sale_journal/i18n/fi.po | 4 +- addons/sale_journal/i18n/fr.po | 4 +- addons/sale_journal/i18n/gl.po | 4 +- addons/sale_journal/i18n/hr.po | 4 +- addons/sale_journal/i18n/hu.po | 4 +- addons/sale_journal/i18n/id.po | 4 +- addons/sale_journal/i18n/it.po | 4 +- addons/sale_journal/i18n/ja.po | 4 +- addons/sale_journal/i18n/ko.po | 4 +- addons/sale_journal/i18n/lt.po | 4 +- addons/sale_journal/i18n/lv.po | 4 +- addons/sale_journal/i18n/mn.po | 4 +- addons/sale_journal/i18n/nb.po | 4 +- addons/sale_journal/i18n/nl.po | 4 +- addons/sale_journal/i18n/nl_BE.po | 4 +- addons/sale_journal/i18n/pl.po | 4 +- addons/sale_journal/i18n/pt.po | 4 +- addons/sale_journal/i18n/pt_BR.po | 4 +- addons/sale_journal/i18n/ro.po | 4 +- addons/sale_journal/i18n/ru.po | 4 +- addons/sale_journal/i18n/sk.po | 4 +- addons/sale_journal/i18n/sl.po | 4 +- addons/sale_journal/i18n/sq.po | 4 +- addons/sale_journal/i18n/sv.po | 4 +- addons/sale_journal/i18n/tlh.po | 4 +- addons/sale_journal/i18n/tr.po | 4 +- addons/sale_journal/i18n/uk.po | 4 +- addons/sale_journal/i18n/vi.po | 4 +- addons/sale_journal/i18n/zh_CN.po | 4 +- addons/sale_journal/i18n/zh_TW.po | 4 +- addons/sale_margin/i18n/ar.po | 4 +- addons/sale_margin/i18n/bg.po | 4 +- addons/sale_margin/i18n/ca.po | 4 +- addons/sale_margin/i18n/da.po | 4 +- addons/sale_margin/i18n/de.po | 4 +- addons/sale_margin/i18n/el.po | 4 +- addons/sale_margin/i18n/es.po | 4 +- addons/sale_margin/i18n/es_CL.po | 4 +- addons/sale_margin/i18n/es_CR.po | 4 +- addons/sale_margin/i18n/et.po | 4 +- addons/sale_margin/i18n/fi.po | 4 +- addons/sale_margin/i18n/fr.po | 4 +- addons/sale_margin/i18n/hr.po | 4 +- addons/sale_margin/i18n/hu.po | 4 +- addons/sale_margin/i18n/it.po | 4 +- addons/sale_margin/i18n/ja.po | 4 +- addons/sale_margin/i18n/mn.po | 4 +- addons/sale_margin/i18n/nb.po | 4 +- addons/sale_margin/i18n/nl.po | 4 +- addons/sale_margin/i18n/pl.po | 4 +- addons/sale_margin/i18n/pt.po | 4 +- addons/sale_margin/i18n/pt_BR.po | 4 +- addons/sale_margin/i18n/ro.po | 4 +- addons/sale_margin/i18n/ru.po | 4 +- addons/sale_margin/i18n/sk.po | 4 +- addons/sale_margin/i18n/sl.po | 4 +- addons/sale_margin/i18n/sv.po | 4 +- addons/sale_margin/i18n/tr.po | 4 +- addons/sale_margin/i18n/zh_CN.po | 4 +- addons/sale_mrp/i18n/ar.po | 4 +- addons/sale_mrp/i18n/bg.po | 4 +- addons/sale_mrp/i18n/ca.po | 4 +- addons/sale_mrp/i18n/da.po | 4 +- addons/sale_mrp/i18n/de.po | 4 +- addons/sale_mrp/i18n/es.po | 4 +- addons/sale_mrp/i18n/es_CL.po | 4 +- addons/sale_mrp/i18n/es_CR.po | 4 +- addons/sale_mrp/i18n/et.po | 4 +- addons/sale_mrp/i18n/fi.po | 4 +- addons/sale_mrp/i18n/fr.po | 4 +- addons/sale_mrp/i18n/gl.po | 4 +- addons/sale_mrp/i18n/hr.po | 4 +- addons/sale_mrp/i18n/hu.po | 4 +- addons/sale_mrp/i18n/it.po | 4 +- addons/sale_mrp/i18n/ja.po | 4 +- addons/sale_mrp/i18n/mn.po | 4 +- addons/sale_mrp/i18n/nb.po | 4 +- addons/sale_mrp/i18n/nl.po | 4 +- addons/sale_mrp/i18n/nl_BE.po | 4 +- addons/sale_mrp/i18n/pl.po | 4 +- addons/sale_mrp/i18n/pt.po | 4 +- addons/sale_mrp/i18n/pt_BR.po | 4 +- addons/sale_mrp/i18n/ro.po | 4 +- addons/sale_mrp/i18n/ru.po | 8 +- addons/sale_mrp/i18n/sl.po | 4 +- addons/sale_mrp/i18n/sr@latin.po | 4 +- addons/sale_mrp/i18n/sv.po | 4 +- addons/sale_mrp/i18n/tr.po | 4 +- addons/sale_mrp/i18n/zh_CN.po | 4 +- addons/sale_order_dates/i18n/ar.po | 4 +- addons/sale_order_dates/i18n/bg.po | 4 +- addons/sale_order_dates/i18n/ca.po | 4 +- addons/sale_order_dates/i18n/da.po | 4 +- addons/sale_order_dates/i18n/de.po | 4 +- addons/sale_order_dates/i18n/el.po | 4 +- addons/sale_order_dates/i18n/es.po | 4 +- addons/sale_order_dates/i18n/es_CL.po | 4 +- addons/sale_order_dates/i18n/es_CR.po | 4 +- addons/sale_order_dates/i18n/fi.po | 4 +- addons/sale_order_dates/i18n/fr.po | 4 +- addons/sale_order_dates/i18n/gl.po | 4 +- addons/sale_order_dates/i18n/hr.po | 4 +- addons/sale_order_dates/i18n/hu.po | 4 +- addons/sale_order_dates/i18n/id.po | 4 +- addons/sale_order_dates/i18n/it.po | 4 +- addons/sale_order_dates/i18n/ja.po | 4 +- addons/sale_order_dates/i18n/mn.po | 4 +- addons/sale_order_dates/i18n/nb.po | 4 +- addons/sale_order_dates/i18n/nl.po | 4 +- addons/sale_order_dates/i18n/pl.po | 4 +- addons/sale_order_dates/i18n/pt.po | 4 +- addons/sale_order_dates/i18n/pt_BR.po | 4 +- addons/sale_order_dates/i18n/ro.po | 4 +- addons/sale_order_dates/i18n/ru.po | 8 +- addons/sale_order_dates/i18n/sk.po | 4 +- addons/sale_order_dates/i18n/sl.po | 4 +- addons/sale_order_dates/i18n/sr@latin.po | 4 +- addons/sale_order_dates/i18n/sv.po | 4 +- addons/sale_order_dates/i18n/tr.po | 4 +- addons/sale_order_dates/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/ar.po | 4 +- addons/sale_stock/i18n/bg.po | 4 +- addons/sale_stock/i18n/bs.po | 4 +- addons/sale_stock/i18n/ca.po | 4 +- addons/sale_stock/i18n/cs.po | 4 +- addons/sale_stock/i18n/da.po | 4 +- addons/sale_stock/i18n/de.po | 4 +- addons/sale_stock/i18n/el.po | 4 +- addons/sale_stock/i18n/es.po | 12 +- addons/sale_stock/i18n/et.po | 4 +- addons/sale_stock/i18n/fi.po | 4 +- addons/sale_stock/i18n/fr.po | 4 +- addons/sale_stock/i18n/gl.po | 4 +- addons/sale_stock/i18n/hr.po | 4 +- addons/sale_stock/i18n/hu.po | 105 +- addons/sale_stock/i18n/id.po | 4 +- addons/sale_stock/i18n/is.po | 4 +- addons/sale_stock/i18n/it.po | 4 +- addons/sale_stock/i18n/ja.po | 4 +- addons/sale_stock/i18n/ko.po | 4 +- addons/sale_stock/i18n/lo.po | 4 +- addons/sale_stock/i18n/lt.po | 4 +- addons/sale_stock/i18n/lv.po | 4 +- addons/sale_stock/i18n/mn.po | 4 +- addons/sale_stock/i18n/nb.po | 4 +- addons/sale_stock/i18n/nl.po | 4 +- addons/sale_stock/i18n/oc.po | 4 +- addons/sale_stock/i18n/pl.po | 4 +- addons/sale_stock/i18n/pt.po | 4 +- addons/sale_stock/i18n/pt_BR.po | 13 +- addons/sale_stock/i18n/ro.po | 4 +- addons/sale_stock/i18n/ru.po | 36 +- addons/sale_stock/i18n/sk.po | 4 +- addons/sale_stock/i18n/sl.po | 4 +- addons/sale_stock/i18n/sq.po | 4 +- addons/sale_stock/i18n/sr.po | 4 +- addons/sale_stock/i18n/sr@latin.po | 4 +- addons/sale_stock/i18n/sv.po | 4 +- addons/sale_stock/i18n/th.po | 4 +- addons/sale_stock/i18n/tlh.po | 4 +- addons/sale_stock/i18n/tr.po | 4 +- addons/sale_stock/i18n/uk.po | 4 +- addons/sale_stock/i18n/vi.po | 4 +- addons/sale_stock/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/zh_TW.po | 4 +- addons/share/i18n/ar.po | 4 +- addons/share/i18n/bg.po | 4 +- addons/share/i18n/ca.po | 4 +- addons/share/i18n/cs.po | 4 +- addons/share/i18n/da.po | 4 +- addons/share/i18n/de.po | 4 +- addons/share/i18n/es.po | 6 +- addons/share/i18n/es_CR.po | 4 +- addons/share/i18n/et.po | 4 +- addons/share/i18n/fi.po | 4 +- addons/share/i18n/fr.po | 4 +- addons/share/i18n/gl.po | 4 +- addons/share/i18n/hr.po | 4 +- addons/share/i18n/hu.po | 174 +- addons/share/i18n/it.po | 4 +- addons/share/i18n/ja.po | 4 +- addons/share/i18n/mn.po | 4 +- addons/share/i18n/nl.po | 4 +- addons/share/i18n/pl.po | 4 +- addons/share/i18n/pt.po | 4 +- addons/share/i18n/pt_BR.po | 6 +- addons/share/i18n/ro.po | 4 +- addons/share/i18n/ru.po | 48 +- addons/share/i18n/sv.po | 4 +- addons/share/i18n/tr.po | 4 +- addons/share/i18n/zh_CN.po | 4 +- addons/stock/i18n/ar.po | 4 +- addons/stock/i18n/bg.po | 4 +- addons/stock/i18n/bs.po | 4 +- addons/stock/i18n/ca.po | 4 +- addons/stock/i18n/cs.po | 4 +- addons/stock/i18n/da.po | 4 +- addons/stock/i18n/de.po | 4 +- addons/stock/i18n/el.po | 4 +- addons/stock/i18n/es.po | 19 +- addons/stock/i18n/es_AR.po | 4 +- addons/stock/i18n/es_CL.po | 4 +- addons/stock/i18n/es_CR.po | 4 +- addons/stock/i18n/es_DO.po | 4 +- addons/stock/i18n/es_EC.po | 4 +- addons/stock/i18n/es_MX.po | 4 +- addons/stock/i18n/es_VE.po | 4 +- addons/stock/i18n/et.po | 4 +- addons/stock/i18n/fi.po | 4 +- addons/stock/i18n/fr.po | 4 +- addons/stock/i18n/gl.po | 4 +- addons/stock/i18n/hr.po | 6 +- addons/stock/i18n/hu.po | 64 +- addons/stock/i18n/id.po | 4 +- addons/stock/i18n/it.po | 4 +- addons/stock/i18n/ja.po | 4 +- addons/stock/i18n/ko.po | 4 +- addons/stock/i18n/lt.po | 4 +- addons/stock/i18n/lv.po | 6 +- addons/stock/i18n/mk.po | 4 +- addons/stock/i18n/mn.po | 4 +- addons/stock/i18n/nb.po | 4 +- addons/stock/i18n/nl.po | 4 +- addons/stock/i18n/nl_BE.po | 4 +- addons/stock/i18n/pl.po | 53 +- addons/stock/i18n/pt.po | 4 +- addons/stock/i18n/pt_BR.po | 702 ++++-- addons/stock/i18n/ro.po | 4 +- addons/stock/i18n/ru.po | 319 +-- addons/stock/i18n/sl.po | 2 +- addons/stock/i18n/sq.po | 4 +- addons/stock/i18n/sr.po | 4 +- addons/stock/i18n/sr@latin.po | 4 +- addons/stock/i18n/sv.po | 4 +- addons/stock/i18n/th.po | 4 +- addons/stock/i18n/tlh.po | 4 +- addons/stock/i18n/tr.po | 4 +- addons/stock/i18n/uk.po | 4 +- addons/stock/i18n/vi.po | 4 +- addons/stock/i18n/zh_CN.po | 4 +- addons/stock/i18n/zh_TW.po | 4 +- addons/stock_invoice_directly/i18n/ar.po | 4 +- addons/stock_invoice_directly/i18n/bg.po | 4 +- addons/stock_invoice_directly/i18n/bs.po | 4 +- addons/stock_invoice_directly/i18n/ca.po | 4 +- addons/stock_invoice_directly/i18n/cs.po | 4 +- addons/stock_invoice_directly/i18n/da.po | 4 +- addons/stock_invoice_directly/i18n/de.po | 4 +- addons/stock_invoice_directly/i18n/el.po | 4 +- addons/stock_invoice_directly/i18n/es.po | 4 +- addons/stock_invoice_directly/i18n/es_AR.po | 4 +- addons/stock_invoice_directly/i18n/es_CL.po | 4 +- addons/stock_invoice_directly/i18n/es_CR.po | 4 +- addons/stock_invoice_directly/i18n/et.po | 4 +- addons/stock_invoice_directly/i18n/fi.po | 4 +- addons/stock_invoice_directly/i18n/fr.po | 4 +- addons/stock_invoice_directly/i18n/gl.po | 4 +- addons/stock_invoice_directly/i18n/hr.po | 4 +- addons/stock_invoice_directly/i18n/hu.po | 6 +- addons/stock_invoice_directly/i18n/id.po | 4 +- addons/stock_invoice_directly/i18n/it.po | 4 +- addons/stock_invoice_directly/i18n/ja.po | 4 +- addons/stock_invoice_directly/i18n/ko.po | 4 +- addons/stock_invoice_directly/i18n/lt.po | 4 +- addons/stock_invoice_directly/i18n/lv.po | 4 +- addons/stock_invoice_directly/i18n/mk.po | 4 +- addons/stock_invoice_directly/i18n/mn.po | 4 +- addons/stock_invoice_directly/i18n/nb.po | 4 +- addons/stock_invoice_directly/i18n/nl.po | 4 +- addons/stock_invoice_directly/i18n/nl_BE.po | 4 +- addons/stock_invoice_directly/i18n/oc.po | 4 +- addons/stock_invoice_directly/i18n/pl.po | 4 +- addons/stock_invoice_directly/i18n/pt.po | 4 +- addons/stock_invoice_directly/i18n/pt_BR.po | 4 +- addons/stock_invoice_directly/i18n/ro.po | 4 +- addons/stock_invoice_directly/i18n/ru.po | 4 +- addons/stock_invoice_directly/i18n/sl.po | 4 +- addons/stock_invoice_directly/i18n/sq.po | 4 +- addons/stock_invoice_directly/i18n/sr.po | 4 +- .../stock_invoice_directly/i18n/sr@latin.po | 4 +- addons/stock_invoice_directly/i18n/sv.po | 4 +- addons/stock_invoice_directly/i18n/tr.po | 4 +- addons/stock_invoice_directly/i18n/uk.po | 4 +- addons/stock_invoice_directly/i18n/vi.po | 4 +- addons/stock_invoice_directly/i18n/zh_CN.po | 4 +- addons/stock_invoice_directly/i18n/zh_TW.po | 4 +- addons/stock_location/i18n/ar.po | 4 +- addons/stock_location/i18n/bg.po | 4 +- addons/stock_location/i18n/bs.po | 4 +- addons/stock_location/i18n/ca.po | 4 +- addons/stock_location/i18n/cs.po | 4 +- addons/stock_location/i18n/da.po | 4 +- addons/stock_location/i18n/de.po | 4 +- addons/stock_location/i18n/el.po | 4 +- addons/stock_location/i18n/es.po | 8 +- addons/stock_location/i18n/es_AR.po | 4 +- addons/stock_location/i18n/es_CL.po | 4 +- addons/stock_location/i18n/es_CR.po | 4 +- addons/stock_location/i18n/et.po | 4 +- addons/stock_location/i18n/fi.po | 4 +- addons/stock_location/i18n/fr.po | 4 +- addons/stock_location/i18n/gl.po | 4 +- addons/stock_location/i18n/hr.po | 4 +- addons/stock_location/i18n/hu.po | 64 +- addons/stock_location/i18n/id.po | 4 +- addons/stock_location/i18n/it.po | 4 +- addons/stock_location/i18n/ja.po | 4 +- addons/stock_location/i18n/ko.po | 4 +- addons/stock_location/i18n/lt.po | 4 +- addons/stock_location/i18n/lv.po | 4 +- addons/stock_location/i18n/mk.po | 4 +- addons/stock_location/i18n/mn.po | 4 +- addons/stock_location/i18n/nb.po | 4 +- addons/stock_location/i18n/nl.po | 4 +- addons/stock_location/i18n/nl_BE.po | 4 +- addons/stock_location/i18n/pl.po | 4 +- addons/stock_location/i18n/pt.po | 4 +- addons/stock_location/i18n/pt_BR.po | 27 +- addons/stock_location/i18n/ro.po | 4 +- addons/stock_location/i18n/ru.po | 8 +- addons/stock_location/i18n/sl.po | 4 +- addons/stock_location/i18n/sq.po | 4 +- addons/stock_location/i18n/sv.po | 4 +- addons/stock_location/i18n/tlh.po | 4 +- addons/stock_location/i18n/tr.po | 4 +- addons/stock_location/i18n/uk.po | 4 +- addons/stock_location/i18n/vi.po | 4 +- addons/stock_location/i18n/zh_CN.po | 4 +- addons/stock_location/i18n/zh_TW.po | 4 +- addons/stock_no_autopicking/i18n/ar.po | 4 +- addons/stock_no_autopicking/i18n/bg.po | 4 +- addons/stock_no_autopicking/i18n/bs.po | 4 +- addons/stock_no_autopicking/i18n/ca.po | 4 +- addons/stock_no_autopicking/i18n/cs.po | 4 +- addons/stock_no_autopicking/i18n/da.po | 4 +- addons/stock_no_autopicking/i18n/de.po | 4 +- addons/stock_no_autopicking/i18n/el.po | 4 +- addons/stock_no_autopicking/i18n/es.po | 4 +- addons/stock_no_autopicking/i18n/es_AR.po | 4 +- addons/stock_no_autopicking/i18n/es_CL.po | 4 +- addons/stock_no_autopicking/i18n/es_CR.po | 4 +- addons/stock_no_autopicking/i18n/et.po | 4 +- addons/stock_no_autopicking/i18n/fi.po | 4 +- addons/stock_no_autopicking/i18n/fr.po | 4 +- addons/stock_no_autopicking/i18n/gl.po | 4 +- addons/stock_no_autopicking/i18n/hr.po | 4 +- addons/stock_no_autopicking/i18n/hu.po | 4 +- addons/stock_no_autopicking/i18n/id.po | 4 +- addons/stock_no_autopicking/i18n/it.po | 4 +- addons/stock_no_autopicking/i18n/ja.po | 4 +- addons/stock_no_autopicking/i18n/ko.po | 4 +- addons/stock_no_autopicking/i18n/lt.po | 4 +- addons/stock_no_autopicking/i18n/lv.po | 4 +- addons/stock_no_autopicking/i18n/mk.po | 4 +- addons/stock_no_autopicking/i18n/mn.po | 4 +- addons/stock_no_autopicking/i18n/nl.po | 4 +- addons/stock_no_autopicking/i18n/nl_BE.po | 4 +- addons/stock_no_autopicking/i18n/oc.po | 4 +- addons/stock_no_autopicking/i18n/pl.po | 4 +- addons/stock_no_autopicking/i18n/pt.po | 4 +- addons/stock_no_autopicking/i18n/pt_BR.po | 4 +- addons/stock_no_autopicking/i18n/ro.po | 4 +- addons/stock_no_autopicking/i18n/ru.po | 4 +- addons/stock_no_autopicking/i18n/sl.po | 4 +- addons/stock_no_autopicking/i18n/sq.po | 4 +- addons/stock_no_autopicking/i18n/sr@latin.po | 4 +- addons/stock_no_autopicking/i18n/sv.po | 4 +- addons/stock_no_autopicking/i18n/tlh.po | 4 +- addons/stock_no_autopicking/i18n/tr.po | 4 +- addons/stock_no_autopicking/i18n/uk.po | 4 +- addons/stock_no_autopicking/i18n/vi.po | 4 +- addons/stock_no_autopicking/i18n/zh_CN.po | 4 +- addons/stock_no_autopicking/i18n/zh_TW.po | 4 +- addons/subscription/i18n/ar.po | 4 +- addons/subscription/i18n/bg.po | 4 +- addons/subscription/i18n/bs.po | 4 +- addons/subscription/i18n/ca.po | 4 +- addons/subscription/i18n/cs.po | 4 +- addons/subscription/i18n/da.po | 4 +- addons/subscription/i18n/de.po | 4 +- addons/subscription/i18n/es.po | 4 +- addons/subscription/i18n/es_AR.po | 4 +- addons/subscription/i18n/es_CR.po | 4 +- addons/subscription/i18n/et.po | 4 +- addons/subscription/i18n/fi.po | 4 +- addons/subscription/i18n/fr.po | 4 +- addons/subscription/i18n/gl.po | 4 +- addons/subscription/i18n/hr.po | 4 +- addons/subscription/i18n/hu.po | 41 +- addons/subscription/i18n/id.po | 4 +- addons/subscription/i18n/it.po | 4 +- addons/subscription/i18n/ja.po | 4 +- addons/subscription/i18n/ko.po | 4 +- addons/subscription/i18n/lt.po | 4 +- addons/subscription/i18n/nl.po | 6 +- addons/subscription/i18n/nl_BE.po | 4 +- addons/subscription/i18n/pl.po | 4 +- addons/subscription/i18n/pt.po | 4 +- addons/subscription/i18n/pt_BR.po | 4 +- addons/subscription/i18n/ro.po | 4 +- addons/subscription/i18n/ru.po | 22 +- addons/subscription/i18n/sl.po | 4 +- addons/subscription/i18n/sq.po | 8 +- addons/subscription/i18n/sv.po | 4 +- addons/subscription/i18n/tlh.po | 4 +- addons/subscription/i18n/tr.po | 4 +- addons/subscription/i18n/uk.po | 4 +- addons/subscription/i18n/vi.po | 4 +- addons/subscription/i18n/zh_CN.po | 4 +- addons/subscription/i18n/zh_TW.po | 4 +- addons/survey/i18n/ar.po | 4 +- addons/survey/i18n/bg.po | 4 +- addons/survey/i18n/ca.po | 4 +- addons/survey/i18n/cs.po | 4 +- addons/survey/i18n/da.po | 4 +- addons/survey/i18n/de.po | 4 +- addons/survey/i18n/es.po | 4 +- addons/survey/i18n/es_CR.po | 4 +- addons/survey/i18n/et.po | 4 +- addons/survey/i18n/fi.po | 4 +- addons/survey/i18n/fr.po | 4 +- addons/survey/i18n/gl.po | 4 +- addons/survey/i18n/hr.po | 4 +- addons/survey/i18n/hu.po | 4 +- addons/survey/i18n/it.po | 4 +- addons/survey/i18n/ja.po | 4 +- addons/survey/i18n/mn.po | 4 +- addons/survey/i18n/nl.po | 6 +- addons/survey/i18n/pl.po | 4 +- addons/survey/i18n/pt.po | 4 +- addons/survey/i18n/pt_BR.po | 32 +- addons/survey/i18n/ro.po | 4 +- addons/survey/i18n/ru.po | 4 +- addons/survey/i18n/sl.po | 4 +- addons/survey/i18n/sr.po | 4 +- addons/survey/i18n/sr@latin.po | 4 +- addons/survey/i18n/sv.po | 4 +- addons/survey/i18n/tr.po | 4 +- addons/survey/i18n/zh_CN.po | 4 +- addons/warning/i18n/ar.po | 4 +- addons/warning/i18n/bg.po | 4 +- addons/warning/i18n/bs.po | 4 +- addons/warning/i18n/ca.po | 4 +- addons/warning/i18n/cs.po | 4 +- addons/warning/i18n/da.po | 4 +- addons/warning/i18n/de.po | 4 +- addons/warning/i18n/el.po | 4 +- addons/warning/i18n/es.po | 10 +- addons/warning/i18n/es_AR.po | 4 +- addons/warning/i18n/es_CR.po | 4 +- addons/warning/i18n/et.po | 4 +- addons/warning/i18n/fi.po | 4 +- addons/warning/i18n/fr.po | 4 +- addons/warning/i18n/gl.po | 4 +- addons/warning/i18n/hr.po | 4 +- addons/warning/i18n/hu.po | 31 +- addons/warning/i18n/id.po | 4 +- addons/warning/i18n/it.po | 4 +- addons/warning/i18n/ja.po | 4 +- addons/warning/i18n/ko.po | 4 +- addons/warning/i18n/lt.po | 4 +- addons/warning/i18n/mn.po | 4 +- addons/warning/i18n/nb.po | 4 +- addons/warning/i18n/nl.po | 4 +- addons/warning/i18n/nl_BE.po | 4 +- addons/warning/i18n/pl.po | 4 +- addons/warning/i18n/pt.po | 4 +- addons/warning/i18n/pt_BR.po | 4 +- addons/warning/i18n/ro.po | 4 +- addons/warning/i18n/ru.po | 14 +- addons/warning/i18n/sl.po | 4 +- addons/warning/i18n/sq.po | 4 +- addons/warning/i18n/sr.po | 4 +- addons/warning/i18n/sr@latin.po | 4 +- addons/warning/i18n/sv.po | 4 +- addons/warning/i18n/tlh.po | 4 +- addons/warning/i18n/tr.po | 4 +- addons/warning/i18n/uk.po | 4 +- addons/warning/i18n/vi.po | 4 +- addons/warning/i18n/zh_CN.po | 10 +- addons/warning/i18n/zh_TW.po | 4 +- addons/web_linkedin/i18n/de.po | 4 +- addons/web_linkedin/i18n/es.po | 4 +- addons/web_linkedin/i18n/fr.po | 4 +- addons/web_linkedin/i18n/hr.po | 4 +- addons/web_linkedin/i18n/hu.po | 4 +- addons/web_linkedin/i18n/it.po | 4 +- addons/web_linkedin/i18n/nl.po | 4 +- addons/web_linkedin/i18n/pl.po | 4 +- addons/web_linkedin/i18n/pt.po | 4 +- addons/web_linkedin/i18n/pt_BR.po | 4 +- addons/web_linkedin/i18n/ro.po | 4 +- addons/web_linkedin/i18n/zh_CN.po | 8 +- addons/web_shortcuts/i18n/de.po | 4 +- addons/web_shortcuts/i18n/es.po | 4 +- addons/web_shortcuts/i18n/fr.po | 4 +- addons/web_shortcuts/i18n/hr.po | 4 +- addons/web_shortcuts/i18n/hu.po | 4 +- addons/web_shortcuts/i18n/it.po | 4 +- addons/web_shortcuts/i18n/nl.po | 4 +- addons/web_shortcuts/i18n/pl.po | 4 +- addons/web_shortcuts/i18n/pt.po | 4 +- addons/web_shortcuts/i18n/pt_BR.po | 4 +- addons/web_shortcuts/i18n/ro.po | 4 +- addons/web_shortcuts/i18n/ru.po | 4 +- addons/web_shortcuts/i18n/sl.po | 4 +- addons/web_shortcuts/i18n/zh_CN.po | 4 +- 5512 files changed, 20867 insertions(+), 14218 deletions(-) create mode 100644 addons/audittrail/i18n/fa_AF.po create mode 100644 addons/auth_oauth_signup/i18n/sv.po create mode 100644 addons/contacts/i18n/sv.po create mode 100644 addons/document_ftp/i18n/vi.po create mode 100644 addons/fleet/i18n/sv.po diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index bd89a42a4f0..fdbdb8897ba 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:23+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index c2d35bdbd94..d7bd684d515 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:55+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index 2e388644e29..213af5089ed 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 45d9a0b76dd..ad4fcb3a923 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index e0a02f07565..95a2b91a223 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:55+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 9d795a8424c..1efe4405f13 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:55+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index d6a007ba619..a6d6858d5f5 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:55+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 37c6b3b5235..8c8ebe86f81 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:04+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index c0772d16248..dc506ee1ed2 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index 255ff8220c8..f2a26edd818 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 86e0959bf34..478db4dd028 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index be5ea5cbd1b..c60f5d91d08 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -260,7 +260,7 @@ msgstr "Informes Belgas" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Validado" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -429,7 +429,7 @@ msgstr "Fecha creación" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Abono de compra" +msgstr "Factura rectificativa de proveedor" #. module: account #: selection:account.journal,type:0 @@ -472,7 +472,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Información del emisor al beneficiario" #. module: account #. openerp-web @@ -493,6 +493,7 @@ msgstr "Plantilla plan contable" #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Modificar: crea el reembolso, concilia y crea una nueva factura borrador" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -755,7 +756,7 @@ msgstr "Cerrar período" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "Rapport du compte commun partenaire" +msgstr "Informe de la cuenta común de empresa" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -804,7 +805,7 @@ msgstr "Configure los números de cuenta bancaria de su compañía" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Crear factura rectificativa" #. module: account #: constraint:account.move.line:0 @@ -834,7 +835,7 @@ msgstr "¿Está seguro que desea crear los asientos?" #: code:addons/account/account_invoice.py:1329 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Factura parcialmente pagada: %s %s de %s %s (%s %s restante)." #. module: account #: view:account.invoice:0 @@ -906,7 +907,9 @@ msgstr "Tipo" msgid "" "Taxes are missing!\n" "Click on compute button." -msgstr "¡Faltan impuestos!" +msgstr "" +"¡Faltan los impuestos!\n" +"Pulse en el botón \"Calcular\"." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -996,7 +999,7 @@ msgid "" " " msgstr "" "

\n" -"No se han encontrado elementos de diario.\n" +"No se han encontrado asientos en el diario.\n" "

\n" " " @@ -1052,7 +1055,7 @@ msgstr "Diario de compra" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Factura pagada" #. module: account #: view:validate.account.move:0 @@ -1932,7 +1935,7 @@ msgstr "Ventas por tipo de cuenta" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 días" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -2076,7 +2079,7 @@ msgstr "Extracto borrador" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Factura validada" #. module: account #: field:account.config.settings,module_account_check_writing:0 @@ -2802,7 +2805,7 @@ msgstr "Propiedades de la cuenta" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Crear una factura rectificativa borrador" #. module: account #: view:account.partner.reconcile.process:0 @@ -3351,7 +3354,7 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transacciones sin conciliar" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3549,7 +3552,7 @@ msgstr "Núm. de dígitos a usar para código de cuenta." #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Plazo de pago del proveedor" #. module: account #: view:account.fiscalyear:0 @@ -3624,7 +3627,7 @@ msgstr "Archivo electrónico" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Referencia de conciliación" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3725,6 +3728,86 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hola ${object.partner_id.name},

\n" +"\n" +"

Hay una nueva factura disponible:

\n" +" \n" +"

\n" +"   REFERENCIAS
\n" +"   Nº de factura: ${object.number}
\n" +"   Total de la factura: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Fecha de factura: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Referencia del pedido: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Su contacto: ${object.user_id.name}\n" +" % endif\n" +"

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

Es posible pagarla directamente con Paypal:

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

Si tiene cualquier pregunta, no dude en contactarnos.

\n" +"

Gracias por elegir ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 @@ -4702,6 +4785,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Se usará este plazo de pago en lugar del predeterminado para los pedidos de " +"venta y las facturas de cliente" #. module: account #: view:account.config.settings:0 @@ -4727,7 +4812,7 @@ msgstr "Asientos validados/asentados" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Sin seguimiento" #. module: account #: view:account.tax.template:0 @@ -4894,7 +4979,7 @@ msgstr "Tipo cuenta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banco y cheques" #. module: account #: field:account.account.template,note:0 @@ -5018,7 +5103,7 @@ msgstr "Plan contable" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Referencia del pago" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5092,7 +5177,7 @@ msgstr "Apuntes a conciliar" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Plantilla para los impuestos" #. module: account #: sql_constraint:account.period:0 @@ -6232,6 +6317,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Se usará este plazo de pago en lugar del predeterminado para los pedidos de " +"compra y las facturas de proveedor" #. module: account #: help:account.automatic.reconcile,power:0 @@ -7065,6 +7152,12 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Si usa plazos de pago, la fecha de vencimiento se calculará automáticamente " +"con la generación de los asientos contables. El plazo de pago puede calcular " +"varias fechas de vencimiento, por ejemplo 50% ahora y 50% en un mes, pero si " +"quiere forzar una fecha de vencimiento, asegúrese que el plazo de pago no se " +"establece en la factura. Si deja vacío el plazo de pago y la fecha de " +"vencimiento, significa pago directo." #. module: account #: code:addons/account/account.py:414 @@ -7312,6 +7405,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Si concilia transacciones, debe verificar también todas la acciones que " +"están enlazadas con ellas porque no se deshabilitarán" #. module: account #: view:account.account.template:0 @@ -7484,7 +7579,7 @@ msgstr "Manual" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Cancelar: crea la factura rectificativa y concilia" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7702,7 +7797,7 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "URL de Paypal" #. module: account #: field:account.config.settings,module_account_voucher:0 @@ -8407,7 +8502,7 @@ msgstr "" #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Importe residual en la moneda" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 @@ -8461,6 +8556,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Factura rectificativa basada en este tipo. No puede modificar o cancelar si " +"la factura ya está conciliada" #. module: account #: field:account.bank.statement.line,sequence:0 @@ -9033,7 +9130,7 @@ msgstr "Saldo final" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Contrapartida centralizada" #. module: account #: help:account.move.line,blocked:0 @@ -9105,7 +9202,7 @@ msgstr "Tipos de cuentas" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Factura (Ref. ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1211 @@ -10199,7 +10296,7 @@ msgstr "No se pueden crear apuntes de compañías diferentes." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Procesamiento periódico" #. module: account #: view:account.invoice.report:0 @@ -10279,7 +10376,7 @@ msgstr "Fecha vencimiento" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Pago inmediato" #. module: account #: code:addons/account/account.py:1464 @@ -10501,7 +10598,7 @@ msgstr "" #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 @@ -10990,6 +11087,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Si rompe la conciliación de las transacciones, debe verificar también todas " +"las acciones enlazadas, ya que no serán deshabilitadas" #. module: account #: code:addons/account/account_move_line.py:1059 @@ -11578,7 +11677,7 @@ msgstr "Cuenta de gastos en plantilla producto" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Plazo de pago de cliente" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 7aa886f9a24..af87f558f34 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index 2e229e7bc1c..4aadb9f3662 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 6dde596f302..a8ea6cdc231 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 4d0c8c9e911..505a3d33404 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index e467a1b61ee..1cd436d9d72 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index db24095e8f4..dbe6df94020 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index 08f81b92230..f901994fa95 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 27c7aa8671c..4e03b31b083 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index 51d14f8542a..90b3cba8923 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index 3f9f256ef4d..f2163fa87c8 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:04+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index 2a9a4dad97f..d28f4a2f667 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index a9733b698e3..a3efa406d9b 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index 64d65b3ef50..9228a7c6a6f 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index 0b053b5cd3c..5671b8d91d2 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:55+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 732f332017b..f8d65b15a7e 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index d707c7007a1..cb24c9ab26f 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 7129dae017f..6515da711fe 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index aa0eddfe5c8..21835aa8c04 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index d3b665aecb8..170fd559557 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index f73073eb305..660cc59c7a5 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 421d037c653..c377eb339c6 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:58+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 89cdb56305c..b8c3ed43698 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -368,7 +368,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Értékesítő" #. module: account #: view:account.bank.statement:0 @@ -662,6 +662,8 @@ msgstr "" #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Nem található időszak vagy több mint egy időszak található a megadott " +"dátumhoz." #. module: account #: model:ir.model,name:account.model_report_account_type_sales @@ -749,6 +751,8 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" +"A tétel dátuma nem esik a megadott időszakba! Meg kell változtatnia a " +"dátumot vagy vegye ki ezt az ellenőrzést a napló beállításnál." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -810,12 +814,12 @@ msgstr "Soronkénti gyűjtőkód tételek" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Jóváírás módja" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Pénzügyi jelentés" #. module: account #: view:account.analytic.journal:0 @@ -840,6 +844,8 @@ msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" +"Hiányzó adósor!\n" +"Kattintson a \"(Frissítés)\"-re az adó újraszámításához." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -877,7 +883,7 @@ msgstr "Gyűjtőnapló" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Küldés Email-ben" #. module: account #: help:account.central.journal,amount_currency:0 @@ -2756,7 +2762,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Következő szállítói számlaszám" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -3049,7 +3055,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Könyvelési időszak" #. module: account #: field:account.config.settings,sale_journal_id:0 @@ -3229,6 +3235,8 @@ msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" +"Adóalap eltérés!\n" +"Kattintson a \"(Frissítés)\"-re az adó újraszámításához." #. module: account #: field:account.partner.ledger,page_split:0 @@ -4725,7 +4733,7 @@ msgstr "Számlatükör" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Átutalási hivatkozás" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5642,7 +5650,7 @@ msgstr "Adóalap tartalmazza az adót" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Szállítói számlaszám" #. module: account #: help:account.payment.term.line,days:0 @@ -6158,7 +6166,7 @@ msgstr "Sorok száma" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(Frissítés)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -7478,7 +7486,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Vevői hivatkozás" #. module: account #: field:account.account.template,parent_id:0 @@ -7946,6 +7954,7 @@ msgstr "Május" #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" +"Az összesítésben szereplő adók nem egyeznek meg a számla sorok adóival." #. module: account #: model:ir.model,name:account.model_account_chart_template diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index cbb3668184b..7a830016f91 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 3ec1c3c33bf..e15ae9f7db9 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:25+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -3766,6 +3766,85 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Ciao ${object.partner_id.name},

\n" +"\n" +"

Una nuova fattura è disponibile per te:

\n" +"\n" +"

\n" +"  RIFERIMENTI
\n" +"  Numero fattura: ${object.number}
\n" +"  Totale fattura: ${object.amount_total} " +"${object.currency_id.name}
\n" +"  Data fattura: ${object.date_invoice}
\n" +"% if object.origin:\n" +"  Riferimento ordine: ${object.origin}
\n" +"% endif\n" +"% if object.user_id:\n" +"  Vostro contatto: ${object.user_id.name}\n" +"% endif\n" +"

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

E' possibile inoltre pagare direttamente con Paypal:

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

Se avete domande, non esitate a contattarci in qualunque momento.

\n" +"

Grazie per avere scelto ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 @@ -9215,7 +9294,7 @@ msgstr "Tipi di conto" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Fattura (Rif ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1211 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index 7f5aca94055..2482b037141 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 768a79d9372..8f1b0b35aaa 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:56+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index 8f250ce322b..403386d12b1 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 90ac6b90a83..f0b141eb011 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index d2370d59afa..7b4920258c6 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index e667228436f..0864cc9e115 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 11:24+0000\n" +"Last-Translator: Andrius Preimantas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -79,7 +79,7 @@ msgstr "Importuoti iš sąskaitos ar mokėjimo" #: code:addons/account/account_move_line.py:1211 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Netinkama sąskaita" #. module: account #: view:account.move:0 @@ -93,6 +93,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"Klaida!\n" +"Rekursiniai ataskaitų šablonai negalimi." #. module: account #. openerp-web @@ -154,7 +156,7 @@ msgstr "Įspėjimas!" #: code:addons/account/account.py:3149 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Įvairių įrašų žurnalas" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -634,7 +636,7 @@ msgstr "Mokesčių nustatymai" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "" +msgstr "Centralizuotas žurnalas" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -702,7 +704,7 @@ msgstr "Atviri įrašai" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "" +msgstr "Žurnalo periodas" #. module: account #: constraint:account.move:0 @@ -868,7 +870,7 @@ msgstr "Išgretinimas" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "" +msgstr "Sąskaitos analitinis žurnalas" #. module: account #: view:account.invoice:0 @@ -969,7 +971,7 @@ msgstr "Iki" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Pirkimų žurnalas" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid @@ -1022,7 +1024,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "" +msgstr "Centralizavimo žurnalas" #. module: account #: selection:account.journal,type:0 @@ -1184,7 +1186,7 @@ msgstr "Kasos aparatai" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Pardavimo grąžinimų žurnalas" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1442,7 +1444,7 @@ msgstr "Priminimo pažyma" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Pradinis balansas" #. module: account #: view:account.invoice:0 @@ -1468,12 +1470,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Žurnalo eilučių analizė" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partneriai" #. module: account #: help:account.bank.statement,state:0 @@ -1677,7 +1679,7 @@ msgstr "Banko sąskaitos išrašų paieška" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Nepatvirtintos įrašo eilutės" +msgstr "Nepatvirtintos žurnalo eilutės" #. module: account #: view:account.chart.template:0 @@ -1897,7 +1899,7 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "Visi partneriai" #. module: account #: view:account.analytic.chart:0 @@ -2101,7 +2103,7 @@ msgstr "" #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "" +msgstr "Žurnalo įrašas" #. module: account #: view:account.invoice:0 @@ -2178,7 +2180,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Žurnalas :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2837,7 +2839,7 @@ msgstr "Data:" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Label" -msgstr "" +msgstr "Žyma" #. module: account #: view:res.partner.bank:0 @@ -3021,7 +3023,7 @@ msgstr "" #: code:addons/account/account.py:1411 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Negalima ištrinti patvirtinto įrašo \"%s\"." #. module: account #: view:account.invoice:0 @@ -3224,7 +3226,7 @@ msgstr "" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Negalima pritaikyti pradinio balanso (neigiama reiškmė)" #. module: account #: selection:account.invoice,type:0 @@ -3567,7 +3569,7 @@ msgstr "Žurnalai" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Likę partneriai" #. module: account #: view:account.subscription:0 @@ -4298,7 +4300,7 @@ msgstr "Pasikartojančios eilutės" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Atvaizduoti partnerius" #. module: account #: view:account.invoice:0 @@ -5049,7 +5051,7 @@ msgstr "" #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "" +msgstr "Šiandien sugretinti partneriai" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5289,7 +5291,7 @@ msgstr "Analitinis balansas -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "" +msgstr "Parinkti įrašai" #. module: account #: code:addons/account/account.py:1416 @@ -5425,7 +5427,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "" +msgstr "Apskaitos ataskaitos" #. module: account #: field:account.move,line_id:0 @@ -5668,7 +5670,7 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Pridėti pradinį balansą" #. module: account #: view:account.invoice.tax:0 @@ -5911,7 +5913,7 @@ msgstr "" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "" +msgstr "Įrašo eilutė" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close @@ -5940,7 +5942,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "" +msgstr "Analitinis žurnalas" #. module: account #: field:account.account,child_id:0 @@ -6145,7 +6147,7 @@ msgstr "Sąsk. fakt. mokesčių sąskaitą" #: model:ir.actions.act_window,name:account.action_account_general_journal #: model:ir.model,name:account.model_account_general_journal msgid "Account General Journal" -msgstr "" +msgstr "Sąskaitos bendrasis žurnalas" #. module: account #: help:account.move,state:0 @@ -6222,7 +6224,7 @@ msgstr "" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "" +msgstr "Įmonė susieta su šiuo žurnalu" #. module: account #: help:account.config.settings,group_multi_currency:0 @@ -6550,7 +6552,7 @@ msgstr "" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "" +msgstr "Žurnalas ir partneris" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6619,6 +6621,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Nėra sukurtas atidarymo/uždarymo periodas, prašau jį sukurti, kad " +"nustatytumėte pradinį balansą." #. module: account #: help:account.tax.template,sequence:0 @@ -7441,7 +7445,7 @@ msgstr "Visa suma, kurią klientas skolingas Jums." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Nepatvirtintos įrašų eilutės" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7925,7 +7929,7 @@ msgstr "" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Įrašo numeris" #. module: account #: view:account.financial.report:0 @@ -8006,7 +8010,7 @@ msgstr "Gretinimo transakcijos" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement msgid "Legal Reports" -msgstr "" +msgstr "Teisinės ataskaitos" #. module: account #: field:account.tax.code,sum_period:0 @@ -8364,7 +8368,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "" +msgstr "Bendros ataskaitos" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 @@ -8983,7 +8987,7 @@ msgstr "" #: code:addons/account/account.py:3150 #, python-format msgid "Opening Entries Journal" -msgstr "Atviri žurnalo įrašai" +msgstr "Atidarymo įrašų žurnalas" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9057,7 +9061,7 @@ msgstr "Įrašo eilutės" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Aktyvūs žurnalai" +msgstr "" #. module: account #: report:account.analytic.account.journal:0 @@ -9862,7 +9866,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "" +msgstr "Bendrieji žurnalai" #. module: account #: view:account.model:0 @@ -9958,7 +9962,7 @@ msgstr "" #: code:addons/account/account_invoice.py:387 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Nėra sukurtų pirkimo/purdavimo žurnalo(-ū)" #. module: account #: view:account.move.line.reconcile.select:0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index d1c94a32736..290f893eef7 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index bb4760b65fc..62685c83dbe 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index 5263ccc02c0..f0ca8fae48e 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index 6d73f61a47c..ee9d9f3692e 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 2cc32c61baf..7f486f149eb 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:04+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 47b121e4604..77e66765914 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index 26c4aea2eb8..d64be52011e 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:57+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 16fe91b14da..fffacd12e69 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index b502adfd6d4..a40f49eb8f6 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -3975,7 +3975,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "VAT :" -msgstr "IVA :" +msgstr "Nº Contribuinte :" #. module: account #: report:account.central.journal:0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 560e5b65888..064f1be8dc0 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -510,6 +510,15 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Se você selecionar 'Arredondar por linha': para cada imposto, o valor do " +"imposto será primeiro calculado e arredondado para cada OC / PV / fatura e, " +"em seguida, estes valores arredondados serão somados, levando ao total deste " +"imposto. Se você selecionar 'Arredondar globalmente': para cada imposto, o " +"valor do imposto será calculado para cada OC / PV / fatura, então estes " +"valores serão somados e, eventualmente, este valor de imposto total será " +"arredondado. Se você vender com impostos incluídos, você deve escolher " +"'Arredondar por linha', porque você certamente quer a soma de seus impostos " +"incluído nas linha de subtotais para ser igual ao valor total com impostos." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -646,12 +655,12 @@ msgstr "O Contador confirma o extrato." #: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 #, python-format msgid "Nothing to reconcile" -msgstr "" +msgstr "Nada a reconciliar" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Precisão decimas nas entradas de diário" #. module: account #: selection:account.config.settings,period:0 @@ -677,6 +686,8 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" +"O diário especificado não tem nenhuma movimentação provisória para este " +"período." #. module: account #: view:account.fiscal.position:0 @@ -692,19 +703,19 @@ msgstr "Diário Centralizado" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "Sequência Principal deve ser diferente da corrente !" +msgstr "A Sequência Principal deve ser diferente da atual!" #. module: account #: code:addons/account/wizard/account_change_currency.py:64 #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "A moeda atual não está configurada corretamente" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Conta de Resultados" #. module: account #: code:addons/account/account_move_line.py:1157 @@ -729,7 +740,7 @@ msgstr "DV" #: code:addons/account/account.py:1551 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Não é possível criar movimento com moeda diferente .." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -766,6 +777,8 @@ msgstr "Período do Diário" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Você não pode criar mais de um movimento por período em um diário " +"centralizado." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -774,6 +787,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Defina a conta analítica que será usado por padrão nas linhas de fatura para " +"reembolso. Deixe em branco se você não quiser usar uma conta analítica sobre " +"as linhas de fatura por padrão." #. module: account #: view:account.account:0 @@ -789,12 +805,12 @@ msgstr "Contas de Recebíveis" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Configure as contas bancárias da sua empresa" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Criar Reembolso" #. module: account #: constraint:account.move.line:0 @@ -824,7 +840,7 @@ msgstr "Voce tem certeza que deseja criar lançamentos?" #: code:addons/account/account_invoice.py:1329 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Fatura parcialmente paga: %s%s de %s%s (%s%s restantes)." #. module: account #: view:account.invoice:0 @@ -838,6 +854,8 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Não é possivel %s fatura que já está reconciliada, primeiro você deve " +"desconciliar. Você somente poderá fazer um reembolso dessa fatura." #. module: account #: selection:account.financial.report,display_detail:0 @@ -917,7 +935,7 @@ msgstr "Faturas de Fornecedores e Reembolsos" #: code:addons/account/account_move_line.py:854 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Entrada já reconciliada" #. module: account #: view:account.move.line.unreconcile.select:0 @@ -945,6 +963,8 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Imprimir relatório com a coluna de moeda, se a moeda for diferente da moeda " +"da empresa." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -954,7 +974,7 @@ msgstr "J.C./Nome do movimento" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Código e Nome da Conta" #. module: account #: selection:account.entries.report,month:0 @@ -984,6 +1004,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nenhum item de diário encontrado.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1637 @@ -993,6 +1017,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Você não pode desconciliar itens de diário se eles foram gerados pelos " +"processos de abertura/fechamento de ano fiscal." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -1015,7 +1041,7 @@ msgstr "Valores" #: model:ir.actions.act_window,name:account.action_tax_code_tree #: model:ir.ui.menu,name:account.menu_action_tax_code_tree msgid "Chart of Taxes" -msgstr "Plano de taxas" +msgstr "Plano de Impostos" #. module: account #: view:account.fiscalyear:0 @@ -1030,12 +1056,12 @@ msgstr "Vencimento" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Diário de Compras" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Fatura paga" #. module: account #: view:validate.account.move:0 @@ -1053,7 +1079,7 @@ msgstr "Valor Total" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "A referencia dessa fatura pelo fornecedor." #. module: account #: selection:account.account,type:0 @@ -1098,7 +1124,7 @@ msgstr "Extrato Bancário" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "Mover linha" +msgstr "Linha de Movimento" #. module: account #: help:account.move.line,tax_amount:0 @@ -1109,7 +1135,7 @@ msgid "" msgstr "" "Se a conta de Impostos é uma conta de códigos de impostos, este campo " "conterá o valor tributado. Se a conta de Impostos for código de imposto " -"base, esse campo conterá a quantia básica (sem impostos)." +"base, esse campo conterá o valor sem impostos." #. module: account #: view:account.analytic.line:0 @@ -1141,7 +1167,7 @@ msgstr "Código" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Recursos" #. module: account #: code:addons/account/account.py:2298 @@ -1177,6 +1203,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar uma conta.\n" +"

\n" +" Ao fazer transações multi-moedas, você pode perder ou ganhar " +"algum valor \n" +"devido a taxa de câmbio. Este menu fornece uma previsão do Lucro ou Perda se " +"as transações\n" +"fossem realizadas hoje. Apenas para contas que possuem uma segunda moeda " +"definida.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1186,7 +1223,7 @@ msgstr "Nome da Conta." #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Abertura com o Saldo do Último Fechamento" #. module: account #: help:account.tax.code,notprintable:0 @@ -1194,6 +1231,8 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Marque esta caixa se você não quiser que qualquer imposto relacionado a este " +"código tributário para apareca nas faturas" #. module: account #: field:report.account.receivable,name:0 @@ -1222,13 +1261,14 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Reembolso " #. module: account #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." msgstr "" +"Não há conta de despesas definida para este produto: \"% s\" (id:% d)." #. module: account #: view:account.tax:0 @@ -1250,7 +1290,7 @@ msgstr "Caixa Registradoras" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Diário de Reembolso de Vendas" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1269,6 +1309,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo registro de caixa.\n" +"

\n" +" Uma Caixa Registradora te permite gerenciar as entradas nos " +"diários de caixa.\n" +"Este recurso fornece uma maneira fácil de acompanhar pagamentos em dinheiro\n" +"                 diariamente. Você pode inserir as moedas que estão em seu " +"caixa, e em seguida,\n" +"fazer os lançamentos quando o dinheiro entra ou sai do caixa.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1286,7 +1337,7 @@ msgstr "Início do Período" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Reembolso" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1296,7 +1347,7 @@ msgstr "Confirme o extrato" #. module: account #: view:account.tax:0 msgid "Account Tax" -msgstr "Conta da taxa" +msgstr "Conta de Imposto" #. module: account #: help:account.account,foreign_balance:0 @@ -1330,6 +1381,8 @@ msgid "" "The amount expressed in the secondary currency must be positif when journal " "item are debit and negatif when journal item are credit." msgstr "" +"O valor expresso em moeda secundária deve ser positivo quando o item do " +"diário são de débito e negativo quando o item do diário for de crédito." #. module: account #: view:account.invoice.cancel:0 @@ -1353,7 +1406,7 @@ msgstr "Impostos Usados em Compras" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "Código da taxa" +msgstr "Código do Imposto" #. module: account #: field:account.account,currency_mode:0 @@ -1363,7 +1416,7 @@ msgstr "Taxa de moedas correntes de saida" #. module: account #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Modelo" #. module: account #: selection:account.analytic.journal,type:0 @@ -1436,7 +1489,7 @@ msgstr "Conta" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "Incluído na quantia base" +msgstr "Incluído no valor base" #. module: account #: view:account.entries.report:0 @@ -1455,7 +1508,7 @@ msgstr "Nível" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Você só pode modificar a moeda em Faturas provisórias." #. module: account #: report:account.invoice:0 @@ -1469,7 +1522,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "Taxas" +msgstr "Impostos" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1526,12 +1579,12 @@ msgstr "Opções de Relatório" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Ano Fiscal a ser Fechado" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Sequencia da Fatura" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1550,11 +1603,13 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Quando um novo demonstrativo é criado a situação será 'Provisório'.\n" +"E depois de receber a confirmação do banco será 'Confirmado'." #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Situação da Fatura" #. module: account #: view:account.bank.statement:0 @@ -1563,7 +1618,7 @@ msgstr "" #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "Extrato bancário" +msgstr "Extrato Bancário" #. module: account #: field:res.partner,property_account_receivable:0 @@ -1576,7 +1631,7 @@ msgstr "Conta de Recebimento" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: account #: selection:account.balance.report,display_account:0 @@ -1592,7 +1647,7 @@ msgstr "Com saldo diferente de zero" msgid "" "There is no default debit account defined \n" "on journal \"%s\"." -msgstr "" +msgstr "Não tem uma conta de débito padrão definida no diário \"%s\"." #. module: account #: view:account.tax:0 @@ -1627,6 +1682,8 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Não há nada para conciliar. Todas as faturas e pagamentos\n" +"                     foram reconciliados, o seu saldo parceiro está em ordem." #. module: account #: field:account.chart.template,code_digits:0 @@ -1645,17 +1702,17 @@ msgstr "Ignorar situação 'Provisório para entradas manuais" #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Não implementado." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "Anotação de crédito" +msgstr "Nota de Crédito" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "eFaturamento & Pagamentos" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1679,7 +1736,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_temp_range msgid "A Temporary table used for Dashboard view" -msgstr "Uma tabela temporária usada para a visão do Dashboard" +msgstr "Uma tabela temporária usada para a visão do Painel" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree4 @@ -1696,7 +1753,7 @@ msgstr "Codigo do caso" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Previsualização do rodapé das Contas Bancárias" #. module: account #: selection:account.account,type:0 @@ -1717,7 +1774,7 @@ msgstr "Registros Recorrentes" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Modelo para posição fiscal" +msgstr "Modelo para Posição Fiscal" #. module: account #: view:account.subscription:0 @@ -1732,12 +1789,12 @@ msgstr "Grupos" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Não taxado" +msgstr "Sem impostos" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Configurações Avançadas" #. module: account #: view:account.bank.statement:0 @@ -1747,7 +1804,7 @@ msgstr "Pesquisar Extratos Bancários" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Itens não postados no diário" +msgstr "Itens de diário não lançados" #. module: account #: view:account.chart.template:0 @@ -1806,6 +1863,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo tipo de conta.\n" +"

\n" +" Um tipo de conta é usado para determinar como uma conta deve " +"ser usada\n" +" em cada diário. O método de diferimento de um tipo de conta " +"determina o \n" +" processo para o fechamento anual. Relatórios como a Folha de " +"Balanço\n" +" e o Relatório de Perdas e Lucros usa a categoria " +"(perdas/lucros ou folha de balanço).\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1836,7 +1906,7 @@ msgstr "Sequência de Ano Fiscal" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Contabilidade Analítica" #. module: account #: report:account.overdue:0 @@ -1855,6 +1925,15 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Se você selecionar 'Arredondar por linha': para cada imposto, o valor do " +"imposto será primeiro calculado e arredondado para cada OC / PV / fatura e, " +"em seguida, estes valores arredondados serão somados, levando ao total deste " +"imposto. Se você selecionar 'Arredondar globalmente': para cada imposto, o " +"valor do imposto será calculado para cada OC / PV / fatura, então estes " +"valores serão somados e, eventualmente, este valor de imposto total será " +"arredondado. Se você vender com impostos incluídos, você deve escolher " +"'Arredondar por linha', porque você certamente quer a soma de seus impostos " +"incluído nas linha de subtotais para ser igual ao valor total com impostos." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all @@ -1866,7 +1945,7 @@ msgstr "Vendas por Tipo de Conta" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 Dias" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1886,12 +1965,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"O diário precisa ter uma contrapartida centralizada sem a opção pular estado " +"provisório marcado." #. module: account #: code:addons/account/account_move_line.py:857 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Algumas entradas já estão reconciliadas" #. module: account #: field:account.tax.code,sum:0 @@ -1909,6 +1990,9 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Escolha o pacote de configuração para configurar o plano de contas \n" +" " +" e impostos automaticamente" #. module: account #: view:account.analytic.account:0 @@ -1918,7 +2002,7 @@ msgstr "Contas Pendentes" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Cancel Fiscal Year Opening Entries" -msgstr "" +msgstr "Cancelar lançamentos de Abertura de Ano Fiscal" #. module: account #: report:account.journal.period.print.sale.purchase:0 @@ -1948,18 +2032,18 @@ msgstr "Recebíveis & Pagáveis" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Gerenciar ordens de pagamento" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Duração" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Último Balanço Fechado" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1991,7 +2075,7 @@ msgstr "Ref. Cliente:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Use este código para a declaração de impostos." #. module: account #: help:account.period,special:0 @@ -2006,12 +2090,12 @@ msgstr "Demonstrativo provisório" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Fatura validada" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Pagar seus fornecedores com cheque" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2022,7 +2106,7 @@ msgstr "Valor do crédito" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: account #: view:account.vat.declaration:0 @@ -2034,6 +2118,13 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Este menu imprime uma declaração de impostos com base em faturas ou " +"pagamentos. Selecione um ou vários períodos do ano fiscal. As informações " +"necessárias para a declaração de imposto é gerado automaticamente pelo " +"OpenERP das faturas (ou pagamentos, em alguns países). Estes dados são " +"atualizados em tempo real. Isso é muito útil, pois permite que você " +"visualize a qualquer momento o imposto que você deve no início e no final do " +"mês ou trimestre." #. module: account #: code:addons/account/account.py:409 @@ -2104,6 +2195,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar uma nova fatura de fornecedor.\n" +"

\n" +" Você pode controlar a fatura de seu fornecedor de acordo " +"com\n" +"                 o que você comprou ou recebeu. O OpenERP também pode gerar\n" +"                 faturas automaticamente a partir de projetos de ordens de " +"compra ou recibos.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 @@ -2120,12 +2221,12 @@ msgstr "Análise de Faturas" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Assistente de composição de Email" #. module: account #: model:ir.model,name:account.model_account_period_close msgid "period close" -msgstr "Período de Fechamento" +msgstr "fechar período" #. module: account #: code:addons/account/account.py:1049 @@ -2134,6 +2235,8 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Este diário já contém itens para este período, portanto, você não pode " +"modificar seu campo empresa." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form @@ -2162,11 +2265,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar um extrato bancário.\n" +"

\n" +" Um extrato bancário é um resumo de todas as transações " +"financeiras\n" +"                 ocorridas ao longo de um período de tempo em uma conta " +"bancária. você\n" +"                 deve receber um periodicamente do seu banco.\n" +"

\n" +" O OpenERP permite conciliar uma linha do demonstrativo " +"diretamente com\n" +"                 a fatura da venda ou compra relacionada.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Moeda padrão da empresa" #. module: account #: field:account.invoice,move_id:0 @@ -2197,7 +2314,7 @@ msgstr "Diário de Venda/Compra" #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "Centro de Custo" +msgstr "Conta analítica" #. module: account #: code:addons/account/account_bank_statement.py:405 @@ -2214,7 +2331,7 @@ msgstr "Válido" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2234,6 +2351,8 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Você não pode alterar o tipo de conta para '%s' por que ela já contém itens " +"de diário!" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance @@ -2243,19 +2362,21 @@ msgstr "Relatório dos Balancetes das Contas Antigas" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Fechar Ano Fiscal" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Diário:" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." msgstr "" +"Uma posição fiscal de imposto pode ser definido apenas uma vez em alguns " +"impostos." #. module: account #: view:account.tax:0 @@ -2267,12 +2388,12 @@ msgstr "Definição do Imposto" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Configurar Contabilidade" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Unidade de Medida referencial" #. module: account #: help:account.journal,allow_date:0 @@ -2288,12 +2409,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Bom trabalho!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Gestão Patrimonial" #. module: account #: view:account.account:0 @@ -2349,6 +2470,8 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Se você quiser que o diário seja controlado na abertura/fechamento, marque " +"esta opção" #. module: account #: view:account.bank.statement:0 @@ -2389,7 +2512,7 @@ msgstr "Abrir Lançamentos" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Próximo número da nota de crédito de fornecedor" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2423,7 +2546,7 @@ msgstr "Este Ano Fiscal" #. module: account #: view:account.tax.chart:0 msgid "Account tax charts" -msgstr "Conta de tabela de impostos" +msgstr "Plano de Impostos" #. module: account #: model:account.payment.term,name:account.account_payment_term_net @@ -2435,12 +2558,12 @@ msgstr "30 Dias Líquidos" #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "Você não tem permissão de abrir o diário %s !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Verificar o Total nas faturas de fornecedor" #. module: account #: selection:account.invoice,state:0 @@ -2497,7 +2620,7 @@ msgstr "Descrição" #: field:account.tax,price_include:0 #: field:account.tax.template,price_include:0 msgid "Tax Included in Price" -msgstr "Taxa incluida no preço" +msgstr "Imposto incluído no preço" #. module: account #: view:account.subscription:0 @@ -2515,7 +2638,7 @@ msgstr "Conta de Receita" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "Este imposto de venda será atribuído por padrão em novos produtos." #. module: account #: report:account.general.ledger_landscape:0 @@ -2605,6 +2728,8 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Você não pode mudar o tipo de conta de 'Fechado' para nenhum outro tipo já " +"que possui itens no diário!" #. module: account #: field:account.invoice.report,account_line_id:0 @@ -2625,6 +2750,11 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"Não é possível criar a fatura.\n" +"O prazo de pagamento deve estar configurado incorretamente, pois o valor " +"calculado é maior do que o valor da fatura. Para evitar problemas de " +"arredondamento, a última linha de seu prazo de pagamento deve ser de do tipo " +"\"saldo\"." #. module: account #: view:account.move:0 @@ -2667,7 +2797,7 @@ msgstr "Posições fiscais" #: code:addons/account/account_move_line.py:578 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Não é possível criar um item de diário em uma conta fechada %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2688,12 +2818,12 @@ msgstr "Situação provisória da fatura" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Propriedades da Conta" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Criar um reembolso provisório" #. module: account #: view:account.partner.reconcile.process:0 @@ -2703,7 +2833,7 @@ msgstr "Reconciliação de Parceiro" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Conta Fin." #. module: account #: field:account.tax,tax_code_id:0 @@ -2732,7 +2862,7 @@ msgstr "Código base" #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." msgstr "" -"Dê a ordem da sequencia quando exibir uma lista de impostos da fatura." +"Define a ordem da sequencia quando exibir uma lista de impostos da fatura." #. module: account #: field:account.tax,base_sign:0 @@ -2807,6 +2937,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma entrada de diário.\n" +"

\n" +" Uma entrada de diário consiste em diversos itens de diário, " +"cada um\n" +" sendo uma transação de débito ou crédito.\n" +"

\n" +" O OpenERP cria automaticamente uma entrada de diário por " +"documento\n" +" contábil: fatura, reembolso, pagamento a fornecedor, " +"demonstrativos\n" +" bancários, etc Então você pode registrar lançamentos de " +"diário manualmente\n" +" somente / geralmente para operações diversas.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2825,7 +2971,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Próximo número de fatura de fornecedor" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2835,7 +2981,7 @@ msgstr "Selecione o período" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "Extratos" +msgstr "Demonstrativos" #. module: account #: report:account.analytic.account.journal:0 @@ -2874,7 +3020,7 @@ msgstr "Conta Analítica" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Imposto Padrão de compra" #. module: account #: view:account.account:0 @@ -2907,7 +3053,7 @@ msgstr "Erro de Configuração!" #: code:addons/account/account_bank_statement.py:433 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Demonstrativo %s confirmado, itens de diário foram criados." #. module: account #: field:account.invoice.report,price_average:0 @@ -2960,7 +3106,7 @@ msgstr "Ref" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Imposto de Compras" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3021,6 +3167,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar um novo ano fiscal.\n" +"

\n" +" Defina ano financeiro de sua empresa de acordo com suas " +"necessidades.\n" +"                 Um exercício é um período no final do qual as contas de uma " +"empresa\n" +"                 compostos (geralmente 12 meses). O exercício é normalmente " +"referido\n" +" pela data em que termina. Por exemplo, a se o ano " +"financeiro de uma empresa\n" +" termina 30 de novembro de 2011, em seguida, tudo entre 1 de " +"dezembro de 2010\n" +" e 30 novembro de 2011 seria conhecido como o ano fiscal de " +"2011. .\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -3057,7 +3220,7 @@ msgstr "Lançamentos Contábeis" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Conta e Período devem pertencer a mesma empresa." #. module: account #: field:account.invoice.line,discount:0 @@ -3088,7 +3251,7 @@ msgstr "Valor da baixa" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3097,12 +3260,14 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"A Fatura selecionada(s) não pode ser confirmada, pois não está em situação " +"'Provisória' ou 'Pro-Forma'." #. module: account #: code:addons/account/account.py:1062 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Você deve escolher os períodos que pertencem à mesma empresa." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3115,17 +3280,17 @@ msgstr "Vendas por Conta" #: code:addons/account/account.py:1411 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Você não pode excluir uma entrada de diário postada \"%s\"." #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Período Contábil" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Diário de Vendas" #. module: account #: code:addons/account/account.py:2298 @@ -3142,6 +3307,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Este diário já contém itens, portanto, você não pode modificar seu campo " +"empresa." #. module: account #: code:addons/account/account.py:409 @@ -3150,6 +3317,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Você precisa de um Diário de Abertura com centralização marcada para definir " +"o balanço inicial." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3212,12 +3381,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transações não conciliadas" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Somente um Modelo de Contas Disponível" #. module: account #: view:account.chart.template:0 @@ -3230,7 +3399,7 @@ msgstr "Conta de Despesas" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: account #: help:account.invoice,period_id:0 @@ -3258,7 +3427,7 @@ msgstr "Valor do código básico" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Taxa de vendas padrão" +msgstr "Imposto de vendas padrão" #. module: account #: help:account.model.line,date_maturity:0 @@ -3328,7 +3497,7 @@ msgstr "Balancete" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Não foi possível adaptar o saldo inicial (valor negativo)." #. module: account #: selection:account.invoice,type:0 @@ -3347,7 +3516,7 @@ msgstr "Escolha o Ano Fiscal" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Intervalo de Datas" #. module: account #: view:account.period:0 @@ -3399,7 +3568,7 @@ msgstr "" #: code:addons/account/account.py:2630 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Não há código de pai para o modelo de conta." #. module: account #: help:account.chart.template,code_digits:0 @@ -3410,7 +3579,7 @@ msgstr "Nro de digitos a ser usado no codigo da conta" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Condições de Pagamento do Fornecedor" #. module: account #: view:account.fiscalyear:0 @@ -3427,6 +3596,8 @@ msgstr "Sempre" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Recursos de contabilidade totais: diários, declarações legais, plano de " +"contas, etc" #. module: account #: view:account.analytic.line:0 @@ -3483,12 +3654,12 @@ msgstr "Arquivo eletrônico" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Ref do Reconciliamento" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "a empresa possui um plano de contas" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3584,11 +3755,93 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Olá ${object.partner_id.name},

\n" +"\n" +"

Uma nova fatura está disponível a você:

\n" +" \n" +"

\n" +"   REFERENCIA
\n" +"   Número da Fatura: ${object.number}
\n" +"   Total da Fatura: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Data da Fatura: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Referência do Pedido: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Seu Contato: ${object.user_id.name}\n" +" % endif\n" +"

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

Também é possivel pagar diretamente através do Paypal:

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

Se você tiver alguma dúvida, não deixe de entrar em contato " +"conosco.

\n" +"

Obrigado por escolher ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Período da conta" #. module: account #: help:account.account,currency_id:0 @@ -3604,9 +3857,9 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" -"Este assistente vai validar todas as entradas de diário de um diário e " -"período particular. Uma vez que os lançamentos do diário estão validados, " -"você não pode atualizá-los mais." +"Este assistente vai validar todas as entradas de um diário e período em " +"particular. Uma vez que os lançamentos forem validados, você não pode mais " +"atualizá-los." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -3617,7 +3870,7 @@ msgstr "Modelo de Plano de Contas" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transações" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3650,7 +3903,7 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the expense account" -msgstr "Deixe vazio para usar a conta de despesas" +msgstr "Deixe em branco para usar a conta de despesas" #. module: account #: field:account.aged.trial.balance,journal_ids:0 @@ -3718,7 +3971,7 @@ msgstr "Configuração do modulo de contabilidade" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Declaração de Imposto da conta" #. module: account #: help:account.bank.statement,name:0 @@ -3739,6 +3992,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Você não pode criar uma fatura em um diário centralizado. Desmarque a caixa " +"contrapartida centralizada no diário relacionada a partir do menu de " +"configuração." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3763,7 +4019,7 @@ msgstr "Fechar um período" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Subtotal de Abertura" #. module: account #: constraint:account.move.line:0 @@ -3771,6 +4027,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Você não pode criar itens de diário com uma moeda secundária sem gravar " +"tanto no campo 'moeda' e 'valor monetário'." #. module: account #: field:account.financial.report,display_detail:0 @@ -3788,7 +4046,7 @@ msgid "" "The amount expressed in the related account currency if not equal to the " "company one." msgstr "" -"O montante expresso na moeda da conta relacionada, se não igual ao de uma " +"O valor expresso na moeda da conta relacionada, se não for igual ao da " "empresa." #. module: account @@ -3799,6 +4057,10 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Conta do paypal (e-mail) para receber pagamentos on-line (cartão de crédito, " +"etc) Se você definir uma conta do paypal, o cliente será capaz de pagar as " +"suas faturas ou cotações com um botão \"Pague com Paypal\" em e-mails " +"automáticos ou através do portal do OpenERP ." #. module: account #: code:addons/account/account_move_line.py:535 @@ -3809,6 +4071,10 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Não é possível encontrar um diário do tipo %s para esta empresa.\n" +"\n" +"Você pode criar um no menu:\n" +"Configuração / Diários / Diários." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile @@ -3827,7 +4093,7 @@ msgstr "Não mostrar na Fatura" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "Plano de taxas" +msgstr "Plano de Impostos" #. module: account #: view:account.journal:0 @@ -3837,7 +4103,7 @@ msgstr "Procurar Diário de Conta" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "Nota fiscal em progresso" +msgstr "Faturas Pendentes" #. module: account #: view:account.invoice.report:0 @@ -3859,6 +4125,12 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Você será capaz de editar e validar esta\n" +"                                     nota de crédito diretamente ou mantê-la " +"provisória,\n" +"                                     esperando o documento a ser emitido " +"pelo\n" +"                                     seu fornecedor / cliente." #. module: account #: view:validate.account.move.lines:0 @@ -3876,6 +4148,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Você não forneceu argumentos suficientes para calcular o saldo inicial, " +"selecione um período e um diário no contexto." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3885,7 +4159,7 @@ msgstr "Transferências" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "Esta empresa possui seu próprio plano de contas" #. module: account #: view:account.chart:0 @@ -3896,7 +4170,7 @@ msgstr "Plano de contas" #: view:cash.box.out:0 #: model:ir.actions.act_window,name:account.action_cash_box_out msgid "Take Money Out" -msgstr "" +msgstr "Efetuar um Saque" #. module: account #: report:account.vat.declaration:0 @@ -3926,6 +4200,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma fatura de cliente.\n" +"

\n" +" Faturação electronica no OpenERP permite facilitar e fixar " +"os\n" +"                pagamentos de clientes. Seu cliente recebe a fatura por e-" +"mail\n" +" e ele pode pagar on-line e / ou importá-lo em seu próprio " +"sistema.\n" +"

\n" +"A conversação com o seu cliente são automaticamente exibidas no\n" +"                 rodapé de cada fatura.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3957,6 +4245,9 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Você não pode modificar uma entrada lançada neste diário.\n" +"Primeiro você deve configurar no diário para permitir cancelar entradas de " +"diário." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -3981,6 +4272,8 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Não existe ano fiscal definido para esta data.\n" +"Por favor crie um a partir da configuração do menu de contabilidade." #. module: account #: view:account.addtmpl.wizard:0 @@ -3992,7 +4285,7 @@ msgstr "Criar Conta" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "As entradas para reconciliar deve pertencer à mesma empresa." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -4012,7 +4305,7 @@ msgstr "Detalhe" #. module: account #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." -msgstr "" +msgstr "Este imposto de compra será atribuído por padrão em novos produtos." #. module: account #: report:account.invoice:0 @@ -4041,7 +4334,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process @@ -4106,7 +4399,7 @@ msgstr "Lançar" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile" -msgstr "Não concilidado" +msgstr "Desconciliar" #. module: account #: view:account.chart.template:0 @@ -4121,8 +4414,8 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" -"A data de vencimento da linha de lançamento gerado pela linha modelo '% s' " -"do modelo '% s' é baseado no prazo de pagamento do parceiro!\n" +"A data de vencimento da linha de lançamento gerado pelo modelo '%s' do " +"modelo '%s' é baseado no prazo de pagamento do parceiro!\n" "Por favor, defina o parceiro sobre ela!" #. module: account @@ -4182,7 +4475,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Verifique o total de faturas de fornecedores" #. module: account #: view:account.tax:0 @@ -4196,6 +4489,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Quando os períodos mensais são criados. O estado é 'Provisório'. No final do " +"período mensal o estado é 'Concluído'." #. module: account #: view:account.invoice.report:0 @@ -4228,7 +4523,7 @@ msgstr "Conta de Pagamento" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Os períodos para gerar entradas de abertura não pode ser encontrado." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4272,7 +4567,7 @@ msgstr "Fator de Multiplicação do Código Tributário" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Um conjunto completo de impostos" #. module: account #: field:account.account,name:0 @@ -4295,7 +4590,7 @@ msgstr "Nenhuma empresa sem configuração!" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Espera um Plano de Contas" #. module: account #: field:account.move.line,date:0 @@ -4306,7 +4601,7 @@ msgstr "Data efetiva" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "O diário precisa ter uma conta padrão de débito e crédito." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree @@ -4323,12 +4618,12 @@ msgstr "ID do Parceiro" #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Diário para escrituras analíticas" +msgstr "Diário para lançamentos analíticos" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4358,13 +4653,15 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Marque esta caixa se você não quiser que qualquer imposto relacionado a este " +"Código de imposto apareça nas faturas." #. module: account #: code:addons/account/account_move_line.py:1061 #: code:addons/account/account_move_line.py:1144 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Você não pode usar uma conta inativa." #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4395,7 +4692,7 @@ msgstr "Dependentes consolidados" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Dados insuficientes!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4403,8 +4700,8 @@ msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." msgstr "" -"Valor de perda ou ganho devido a mudanças na taxa de câmbio ao fazer multi-" -"moeda transações." +"Valor de perda ou ganho devido a taxa de câmbio ao fazer transações multi-" +"moeda." #. module: account #: view:account.analytic.line:0 @@ -4459,7 +4756,7 @@ msgstr "Patrimônio" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Contabilidade e Finanças" #. module: account #: view:account.invoice.confirm:0 @@ -4486,7 +4783,7 @@ msgstr "(Fatura deve ser desconciliada se você quiser abri-la)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Conta Analítica de Impostos da Fatura" #. module: account #: field:account.chart,period_from:0 @@ -4524,6 +4821,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Este prazo de pagamento será usado em vez do padrão nos pedidos de venda e " +"faturas dos clientes" #. module: account #: view:account.config.settings:0 @@ -4531,6 +4830,7 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Se você colocar \"%(year)s\" no prefixo, ele será substituído pelo ano atual." #. module: account #: help:account.account,active:0 @@ -4544,12 +4844,12 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Itens do Diário Postados" +msgstr "Itens do Diário Lançados" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Sem Cobrança" #. module: account #: view:account.tax.template:0 @@ -4568,6 +4868,9 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Como exemplo, uma precisão decimal de 2 permitirá entradas de diário como: " +"9,99 reais, enquanto que uma precisão decimal de 4 irá permitir entradas de " +"diário como: 0,0231 reais." #. module: account #: field:account.account,shortcut:0 @@ -4605,7 +4908,7 @@ msgstr "Cancelar as Faturas Selecionadas" #: code:addons/account/account_bank_statement.py:423 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "Você tem que atribuir um diário analítico sobre a '%s' diário!" +msgstr "Você tem que atribuir um diário analítico no diário '%s' !" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4631,6 +4934,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para configurar uma nova conta bancária. \n" +"

\n" +" Configurar a conta bancária de sua empresa e selecionar aquelas " +"que devem\n" +"             aparecer no rodapé dos relatórios.\n" +"

\n" +"Se você usar a aplicação de contabilidade do OpenERP, diários e\n" +"             contas serão criados automaticamente com base nesses dados.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4638,6 +4952,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Erro!\n" +"Você não pode criar códigos de imposto recursivos." #. module: account #: constraint:account.period:0 @@ -4645,6 +4961,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Erro!\n" +"A duração do período(s) é / são inválidas." #. module: account #: field:account.entries.report,month:0 @@ -4661,12 +4979,12 @@ msgstr "Mês" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "" +msgstr "Você não pode alterar o código de conta que contém itens de diário!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Seqüência de fatura do fornecedor" #. module: account #: code:addons/account/account_invoice.py:587 @@ -4676,13 +4994,15 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Não é possível encontrar um plano de contas, você deve criar um a partir de " +"Configurações \\ Configuração \\ Menu Contabilidade \\." #. module: account #: field:account.entries.report,product_uom_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de Medida do Produto" #. module: account #: field:res.company,paypal_account:0 @@ -4697,7 +5017,7 @@ msgstr "Tipo de Conta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banco e Cheques" #. module: account #: field:account.account.template,note:0 @@ -4725,7 +5045,7 @@ msgstr "Deixe em branco para usar a data atual" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Subtotal de Fechamento" #. module: account #: field:account.tax,base_code_id:0 @@ -4737,7 +5057,7 @@ msgstr "Código Base da Conta" #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Você tem que fornecer uma conta para os ajustes / diferença cambial." #. module: account #: help:res.company,paypal_account:0 @@ -4781,19 +5101,19 @@ msgstr "Marque se você deseja exibir Contas com saldo 0 também." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Reconciliação de Lancamentos de Abertura" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:24 #, python-format msgid "Last Reconciliation:" -msgstr "" +msgstr "Última Reconciliação:" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Equilibrado" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4807,6 +5127,8 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Não existe empresa sem plano de contas. O assistente, portanto, não será " +"executado." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart @@ -4821,7 +5143,7 @@ msgstr "Plano de Conta" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Referencia de Pagamento" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4890,12 +5212,12 @@ msgstr "Notas de Crédito" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Itens de Diário a Reconciliar" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Modelos para Impostos" #. module: account #: sql_constraint:account.period:0 @@ -4905,12 +5227,12 @@ msgstr "O nome do período deve ser único por empresa!" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Moeda por país da empresa." #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Cálculo de Impostos" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4947,6 +5269,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Erro!\n" +"Você não pode criar uma conta que tem conta-pai de empresa diferente." #. module: account #: code:addons/account/account_invoice.py:631 @@ -4957,6 +5281,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Não é possível encontrar um diário do tipo %s para esta empresa.\n" +"\n" +"Você pode criar um no menu:\n" +"Configurações \\ Diários \\ Diários." #. module: account #: report:account.vat.declaration:0 @@ -4982,7 +5310,7 @@ msgstr "Modelos Recorrentes" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Filhos / Sub Impostos" #. module: account #: xsl:account.transfer:0 @@ -5002,7 +5330,7 @@ msgstr "Atua como uma conta padrão para o valor do crédito" #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Descreva por que você está tirando dinheiro do caixa:" #. module: account #: selection:account.invoice,state:0 @@ -5014,12 +5342,12 @@ msgstr "Cancelado" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "Permite que você coloque as faturas em um estado pro-forma." #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "Unidade de definição das moedas" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -5028,6 +5356,8 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Ele adiciona a coluna de moeda nos relatórios se a moeda for diferente da " +"moeda da empresa." #. module: account #: code:addons/account/account.py:3346 @@ -5067,7 +5397,7 @@ msgstr "Fatura Cancelada" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Minhas Faturas" #. module: account #: selection:account.bank.statement,state:0 @@ -5077,7 +5407,7 @@ msgstr "Novo" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Imposto de Vendas" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5102,12 +5432,15 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Quando o período no diário é criado. A situação é 'Provisório'. Se um " +"relatório for impresso a situação fica 'Impresso'. Quando todas as " +"transações são feitas, a situação muda para 'Concluído'." #. module: account #: code:addons/account/account.py:3157 #, python-format msgid "MISC" -msgstr "MISC" +msgstr "DIVER" #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -5130,7 +5463,7 @@ msgstr "Faturas" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Marque esta caixa se esta empresa é uma entidade legal." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5176,7 +5509,7 @@ msgstr "Verificar" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "ou" #. module: account #: view:account.invoice.report:0 @@ -5247,6 +5580,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Defina a conta que será definida por padrão para Impostos em linhas de " +"faturas. Deixe em branco para usar a conta de despesa." #. module: account #: code:addons/account/account.py:890 @@ -5262,7 +5597,7 @@ msgstr "Lançamento do Diário para Revisão" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Arredondamento Global" #. module: account #: view:account.bank.statement:0 @@ -5282,6 +5617,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Por favor, verifique o valor da fatura!\n" +"O total codificado não corresponde ao total calculado." #. module: account #: field:account.account,active:0 @@ -5297,7 +5634,7 @@ msgstr "Ativo" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "Controle de Caixa" #. module: account #: field:account.analytic.balance,date2:0 @@ -5327,7 +5664,7 @@ msgstr "Saldo por Tipo de Conta" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Não existe uma conta %s no diário %s." #. module: account #: model:res.groups,name:account.group_account_user @@ -5340,14 +5677,14 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" -"A partir deste ponto de vista, tem uma análise da sua tesouraria. Ela resume " -"o balanço de cada lançamentos contábeis feitas em contas de liquidez por " +"A partir desta visão, você tem uma análise da sua tesouraria. Ela resume o " +"balanço de cada lançamentos contábeis feitas em contas de liquidez por " "período." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Gerente Financeiro" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5368,7 +5705,7 @@ msgstr "Movimentos" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Linhas do Caixa" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5381,6 +5718,8 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Se você não marcar esta caixa, você será capaz de fazer o faturamento e " +"pagamentos, mas não a contabilidade (Itens de diário, plano de contas, ...)" #. module: account #: view:account.period:0 @@ -5458,12 +5797,14 @@ msgstr "Movimentos de destino" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"O movimento não pode ser excluído se associado a uma fatura. (Fatura: %s - " +"ID do Movimento: %s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Números de Unidades de Abertura" #. module: account #: field:account.subscription,period_type:0 @@ -5530,7 +5871,7 @@ msgstr "Ano" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Ele indica que a fatura foi enviada." #. module: account #: field:account.tax.template,description:0 @@ -5545,11 +5886,14 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Não é possível criar uma seqüência automática para esta peça.\n" +"Coloque uma seqüência na definição do diário para numeração automática ou " +"crie uma seqüência manualmente para esta peça." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "Fatura Pro Forma " #. module: account #: selection:account.subscription,period_type:0 @@ -5615,6 +5959,8 @@ msgstr "Computar Código (se tipo=código)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Não é possível encontrar um plano de contas para esta empresa, você deve " +"criar um." #. module: account #: selection:account.analytic.journal,type:0 @@ -5675,6 +6021,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: account #: field:account.tax,child_depend:0 @@ -5692,6 +6041,12 @@ msgid "" "entry was reconciled, either the user pressed the button \"Fully " "Reconciled\" in the manual reconciliation process" msgstr "" +"Data em que os lançamentos contábeis do parceiro foram totalmente " +"reconciliado pela última vez. Ela difere da data da última reconciliação " +"feita para este parceiro, pois aqui nós retratam o fato de que nada mais era " +"de se reconciliar nesta data. Isto pode ser conseguido em duas formas: ou a " +"data da última reconciliação de débito / crédito, ou definida pelo usuário " +"no botão \"totalmente reconciliado\" no processo de reconciliação manual" #. module: account #: field:account.journal,update_posted:0 @@ -5738,13 +6093,14 @@ msgstr "account.installer" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Recalcular impostos e total" #. module: account #: code:addons/account/account.py:1103 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" +"Você não pode modificar/excluir um diário com entradas para este período." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5754,7 +6110,7 @@ msgstr "Incluir no Valor Base" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Número de Fatura de Fornecedor" #. module: account #: help:account.payment.term.line,days:0 @@ -5776,6 +6132,8 @@ msgstr "Calcular Valor" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Você não pode adicionar/modificar entradas no diário %s em um período %s já " +"fechado." #. module: account #: view:account.journal:0 @@ -5800,7 +6158,7 @@ msgstr "Início do período" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Visualizar Patrimônio" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -5832,6 +6190,9 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Selecione aqui o tipo de valorização relacionada com esta linha de prazo de " +"pagamento. Note que você deve ter sua última linha com o tipo \"Saldo\" que " +"todo o valor será calculado." #. module: account #: field:account.partner.ledger,initial_balance:0 @@ -5872,12 +6233,13 @@ msgstr "Diário de Lançamentos do Fim do Ano" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Reembolso Provisório " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" msgstr "" +"Preencha o formulário, se você colocar dinheiro na caixa registradora:" #. module: account #: view:account.payment.term.line:0 @@ -5937,7 +6299,7 @@ msgstr "Data de Pagamento" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Linhas de Abertura do Caixa" #. module: account #: view:account.analytic.account:0 @@ -5962,7 +6324,7 @@ msgstr "Moeda do valor" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Rodada por linha" #. module: account #: report:account.analytic.account.balance:0 @@ -6000,6 +6362,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Este prazo de pagamento será usado em vez do padrão de ordens de compra e " +"faturas de fornecedores" #. module: account #: help:account.automatic.reconcile,power:0 @@ -6014,7 +6378,7 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "Você deve definir a duração do período superior a 0." #. module: account #: view:account.fiscal.position.template:0 @@ -6025,7 +6389,7 @@ msgstr "Modelo de Posição Fiscal" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Reembolso Provisório" #. module: account #: view:account.analytic.chart:0 @@ -6063,18 +6427,20 @@ msgstr "Reconciliar com Baixa" #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." msgstr "" +"Você não pode criar itens de diário em uma conta do tipo visualização." #. module: account #: selection:account.payment.term.line,value:0 #: selection:account.tax,type:0 msgid "Fixed Amount" -msgstr "Quantidade fixa" +msgstr "Valor fixo" #. module: account #: code:addons/account/account_move_line.py:1059 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Você não pode mudar o imposto, você deve remover e recriar as linhas." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile @@ -6198,7 +6564,7 @@ msgstr "Mapeamento Fiscal" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Escolha a Empresa" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open @@ -6215,7 +6581,7 @@ msgstr "Qtd máx:" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "Fatura de Reembolso" +msgstr "Reembolso de Fatura" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6263,6 +6629,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar uma conta.\n" +"

\n" +" Uma conta é parte de um livro que permite a sua empresa\n" +"                registrar todos os tipos de transações de débito e crédito.\n" +"\n" +" Empresas apresentam as suas contas anuais em duas partes " +"principais: o\n" +"                 balanço patrimonial e demonstração do resultado do " +"exercício (DRE).\n" +" As contas anuais de uma empresa são obrigados por lei\n" +"                 para revelar uma determinada quantidade de informação.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6273,7 +6653,7 @@ msgstr "# de Linhas" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(atualizar)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6313,7 +6693,7 @@ msgstr "Saldo é calculado com base no balanço inicial e linhas de transação" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Conta de Perdas" #. module: account #: field:account.tax,account_collected_id:0 @@ -6336,6 +6716,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Todas as entradas de diário criadas manualmente estão no estado \"não " +"lançada\", mas você pode definir a opção de pular essa fase no diário " +"relacionado. Nesse caso, elas irão se comportar como entradas de diário " +"criadas automaticamente pelo sistema na validação de documentos (faturas, " +"extratos bancários ...) e será criado como 'Lançado'." #. module: account #: field:account.payment.term.line,days:0 @@ -6349,6 +6734,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Você não pode validar esta entrada porque a conta \"%s\" não pertence ao " +"plano de contas \"%s\"." #. module: account #: view:account.financial.report:0 @@ -6407,7 +6794,7 @@ msgstr "Empresa relacionada a este diário" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Permite ambiente multi moeda" #. module: account #: view:account.subscription:0 @@ -6490,7 +6877,7 @@ msgstr "Linha Analítica" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modelos" #. module: account #: code:addons/account/account_invoice.py:1095 @@ -6499,6 +6886,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Você não pode cancelar uma fatura que está parcialmente paga. Você precisa " +"desconciliar as entradas de pagamento relacionados antes." #. module: account #: field:product.template,taxes_id:0 @@ -6533,6 +6922,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar um reembolso que você recebeu de um " +"fornecedor.\n" +"

\n" +" Em vez de criar o reembolso do fornecedor manualmente, você " +"pode gerar\n" +"                 reembolsos e reconciliar-los diretamente na fatura do " +"fornecedor relacionada.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6583,7 +6982,7 @@ msgstr "Mostrar plano filho" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Banco & Caixa" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6669,13 +7068,13 @@ msgstr "Recebimento" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Você não pode criar itens de diário em uma conta fechada." #. module: account #: code:addons/account/account_invoice.py:610 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." -msgstr "" +msgstr "A empresa da linha da fatura e a empresa da fatura são diferentes" #. module: account #: view:account.invoice:0 @@ -6696,7 +7095,7 @@ msgstr "A moeda da conta relacionada é diferente da moeda da empresa." #: code:addons/account/installer.py:48 #, python-format msgid "Custom" -msgstr "" +msgstr "Personalizado" #. module: account #: view:account.analytic.account:0 @@ -6717,13 +7116,14 @@ msgstr "Patrimônio Líquido" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Conta de Transferência Interna" #. module: account #: code:addons/account/wizard/pos_box.py:33 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" +"Por favor, verifique se o campo 'Diário' está definido no extrato bancário" #. module: account #: selection:account.tax,type:0 @@ -6733,7 +7133,7 @@ msgstr "Porcentagem" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Arredondar Globalmente" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6743,7 +7143,7 @@ msgstr "Diário & Parceiro" #. module: account #: field:account.automatic.reconcile,power:0 msgid "Power" -msgstr "Energia" +msgstr "Potência" #. module: account #: code:addons/account/account.py:3417 @@ -6765,7 +7165,7 @@ msgstr "Número da Fatura" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Diferença" #. module: account #: help:account.tax,include_base_amount:0 @@ -6801,6 +7201,12 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Se você usar os termos de pagamento, a data de vencimento será calculado " +"automaticamente a geração de lançamentos contábeis. O prazo de pagamento " +"pode calcular várias datas de vencimento, por exemplo, 50% agora e 50% em um " +"mês, mas se você quiser forçar uma data de vencimento, certifique-se que o " +"prazo de pagamento não está definido na fatura. Se você manter o prazo de " +"pagamento e a data de vencimento vazio, significa pagamento a vista." #. module: account #: code:addons/account/account.py:414 @@ -6809,6 +7215,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Não há período de abertura / fechamento definido, por favor, crie um para " +"definir o saldo inicial." #. module: account #: help:account.tax.template,sequence:0 @@ -6836,12 +7244,12 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erro de Usuário!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Descartar" #. module: account #: selection:account.account,type:0 @@ -6859,7 +7267,7 @@ msgstr "Itens de Diário Analítico" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Possui uma empresa padrão" #. module: account #: view:account.fiscalyear.close:0 @@ -6917,7 +7325,7 @@ msgstr "" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Supplier Refund" -msgstr "Devolução para Fornecedor" +msgstr "Reembolso de Fornecedor" #. module: account #: field:account.bank.statement,move_line_ids:0 @@ -6959,6 +7367,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Não há prazo definido para esta data: %s.\n" +"Por favor, crie um." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -7009,6 +7419,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Percentagens para Linha prazo de pagamento deve estar entre 0 e 1, exemplo: " +"0,02 para 2%." #. module: account #: report:account.invoice:0 @@ -7029,7 +7441,7 @@ msgstr "Conta da categoria de despesas" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "O Nome do Imposto deve ser único por empresa!" #. module: account #: view:account.bank.statement:0 @@ -7042,6 +7454,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Se você desconciliar as transações, você também deve verificar todas as " +"ações que estão associadas a essas operações, porque não serão desativadas" #. module: account #: view:account.account.template:0 @@ -7076,6 +7490,8 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Você não pode fornecer uma moeda secundária, se é a mesmo da principal da " +"empresa." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -7163,13 +7579,13 @@ msgstr "Lucros e Perdas (Conta de Despesa)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Transações Totais" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Você não pode remover uma conta que contém itens de diário." #. module: account #: code:addons/account/account.py:1024 @@ -7213,13 +7629,13 @@ msgstr "Manual" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Cancelar: criar o reembolso e reconcilia" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Você precisa definir uma data inicial." #. module: account #: view:account.automatic.reconcile:0 @@ -7251,8 +7667,8 @@ msgid "" "you've set." msgstr "" "Se você selecionou para filtrar por data ou período, este campo permite que " -"você adicione uma linha para exibir a quantidade de débito / crédito / " -"equilíbrio que precede o filtro que você definiu." +"você adicione uma linha para exibir a quantidade de débito / crédito / saldo " +"que precede o filtro que você definiu." #. module: account #: view:account.bank.statement:0 @@ -7267,7 +7683,7 @@ msgstr "Lançamentos de Diário" #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Nenhum período encontrado na fatura." #. module: account #: help:account.partner.ledger,page_split:0 @@ -7313,6 +7729,7 @@ msgstr "Todos os lançamentos" #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." msgstr "" +"Você só pode reconciliar itens de diário que pertencem ao mesmo parceiro." #. module: account #: view:account.journal.select:0 @@ -7373,6 +7790,8 @@ msgstr "Conjunto Completo de Impostos" msgid "" "Selected Entry Lines does not have any account move enties in draft state." msgstr "" +"Os lançamentos selecionados não possuem movimentação contábil na situação " +"provisória." #. module: account #: view:account.chart.template:0 @@ -7402,6 +7821,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Erro de configuração!\n" +"A moeda escolhida deve ser partilhada pelas contas padrão também." #. module: account #: code:addons/account/account.py:2256 @@ -7427,12 +7848,12 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Url do Paypal" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Gerenciar os pagamentos de clientes" #. module: account #: help:report.invoice.created,origin:0 @@ -7451,6 +7872,8 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Erro!\n" +"A data de início do ano fiscal deve preceder a data de término." #. module: account #: view:account.tax.template:0 @@ -7466,7 +7889,7 @@ msgstr "Faturas de Clientes" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Diversos" #. module: account #: view:account.analytic.line:0 @@ -7489,6 +7912,9 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Você não pode validar uma entrada não balanceada.\n" +"Certifique-se de que você configurou condições de pagamento corretamente.\n" +"A última linha do prazo de pagamento deve ser do tipo \"Saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 @@ -7522,7 +7948,7 @@ msgstr "Documento de Origem" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "Contas bancárias como exibidas no rodapé de cada documento impresso" #. module: account #: constraint:account.account:0 @@ -7531,6 +7957,9 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Erro de configuração!\n" +"Você não pode definir as contas filhas a uma conta com tipo interno " +"diferente de \"Visualização\"." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7540,7 +7969,7 @@ msgstr "Relatório Contábil" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Moeda da Conta" #. module: account #: report:account.invoice:0 @@ -7554,6 +7983,8 @@ msgid "" "You can not delete an invoice which is not cancelled. You should refund it " "instead." msgstr "" +"Você não pode excluir uma fatura que não foi cancelada. Você deve fazer o " +"reembolso." #. module: account #: help:account.tax,amount:0 @@ -7606,7 +8037,7 @@ msgstr "Abertura de Contas de Despesas" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Referência do Cliente" #. module: account #: field:account.account.template,parent_id:0 @@ -7622,7 +8053,7 @@ msgstr "Preço" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Linhas de Fechamento do Caixa" #. module: account #: view:account.bank.statement:0 @@ -7663,7 +8094,7 @@ msgstr "Agrupar por ano da Data da Fatura" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Impostos de Compra (%)" #. module: account #: help:res.partner,credit:0 @@ -7673,12 +8104,12 @@ msgstr "Valor total que este cliente deve a você." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "Itens de Diário Desequilibrados" +msgstr "Itens de Diário não balanceados" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Modelos de Gráficos" #. module: account #: field:account.journal.period,icon:0 @@ -7714,7 +8145,7 @@ msgstr "Fechado Em" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Linha do Extrato Bancário" +msgstr "Linha do Demonstrativo Bancário" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 @@ -7729,7 +8160,7 @@ msgstr "Entradas de Abertura da Conta de Receitas" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Permite faturas pro-forma" #. module: account #: view:account.bank.statement:0 @@ -7766,12 +8197,12 @@ msgstr "Criar lançamentos" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Moeda principal da empresa" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7799,7 +8230,7 @@ msgstr "Diário de Conta" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Método de aredondamento de imposto" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7816,6 +8247,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Use esta opção se você deseja cancelar uma fatura que não deveria\n" +"                                     ter sido emitida. A nota de crédito " +"será criada, validada e reconciliada\n" +"                                     com a fatura. Você não será capaz de " +"alterar a nota de crédito." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7851,6 +8287,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Não há conta de crédito padrão definido\n" +"no diário \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7889,6 +8327,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar uma nova conta analítica.\n" +"

\n" +" O plano de contas possui uma estrutura definida pela\n" +"                 exigência legal do país. O plano de contas analítico \n" +" deve refletir suas necessidades da empresa em\n" +"                 termo de relatórios de custos / receitas.\n" +"

\n" +"Eles geralmente são estruturados por contratos, projetos, produtos ou\n" +"                 departamentos. A maioria das operações do OpenERP " +"(faturas,\n" +"                 quadros de horários, despesas, etc) geram entradas " +"analíticas sobre o\n" +"                 conta relacionada.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view @@ -8013,6 +8467,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Esta data será usado como a data da fatura para a nota de crédito e o " +"período será escolhido de acordo!" #. module: account #: view:product.template:0 @@ -8026,6 +8482,8 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Você tem que definir um código para a conta bancária definida no plano de " +"contas selecionado." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -8094,18 +8552,17 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" -"O campo de seqüência é usado para ordenar os recursos a partir de seqüências " -"mais baixos aos mais altos." +"O campo de seqüência é usado para ordenar os recursos do menor ao maior." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Valor residual em Moeda" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Seqüência de nota de crédito" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -8154,6 +8611,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Reembolso baseados neste tipo. Você não pode modificar e cancelar se a " +"fatura já está reconciliada" #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8171,7 +8630,7 @@ msgstr "Seqüência" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Conta do Paypal" #. module: account #: selection:account.print.journal,sort_selection:0 @@ -8190,11 +8649,13 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Erro!\n" +"Você não pode criar contas recursivas." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8204,7 +8665,7 @@ msgstr "Relaciona ao item de diário gerado automaticamente." #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8227,7 +8688,7 @@ msgstr "Balanço Calculado" #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Você deve escolher pelo menos um registro." #. module: account #: field:account.account,parent_id:0 @@ -8239,7 +8700,7 @@ msgstr "Superior (Conta-pai)" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Lucro" #. module: account #: help:account.payment.term.line,days2:0 @@ -8286,7 +8747,7 @@ msgstr "Linha do Caixa Físico" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Pacote de Contabilidade" #. module: account #: report:account.third_party_ledger:0 @@ -8314,12 +8775,12 @@ msgstr "Aviso!" #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Método de Arredondamento de Imposto" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8376,7 +8837,7 @@ msgstr "Selecione uma moeda para ser usada na fatura" #: code:addons/account/account_invoice.py:873 #, python-format msgid "No Invoice Lines !" -msgstr "Sem Linhas na Fatura !" +msgstr "Sem Linhas na Fatura!" #. module: account #: view:account.financial.report:0 @@ -8440,6 +8901,7 @@ msgstr "Balanço analítico invertido -" msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." msgstr "" +"Esta é umareconciliação produzida pela abertura de um novo ano fiscal?." #. module: account #: view:account.analytic.line:0 @@ -8456,7 +8918,7 @@ msgstr "Parceiro Associado" #: code:addons/account/account_invoice.py:1428 #, python-format msgid "You must first select a partner !" -msgstr "Voce precisa selecionar um parceiro primeiro !" +msgstr "Voce precisa primeiro selecionar um parceiro!" #. module: account #: field:account.invoice,comment:0 @@ -8473,7 +8935,7 @@ msgstr "Total Residual" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Controle de Abertura de Caixa" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8500,7 +8962,7 @@ msgstr "A situação da fatura é Aberto" #: field:account.subscription,state:0 #: field:report.invoice.created,state:0 msgid "Status" -msgstr "Posição" +msgstr "Situação" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8513,7 +8975,7 @@ msgstr "Livro-razão de Custo" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Nenhum Ano Fiscal definido para esta empresa" #. module: account #: view:account.invoice:0 @@ -8544,7 +9006,7 @@ msgstr "Diário de Devolução de Compra" #: code:addons/account/account.py:1297 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Por favor defina a sequência no diário." #. module: account #: help:account.tax.template,amount:0 @@ -8574,6 +9036,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Isto permite automatizar cartas de cobrança para faturas não pagas, com " +"lembretes multi-nível.\n" +"                 Isso instala o módulo account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8618,12 +9083,12 @@ msgstr "Total líquido:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Selecione um período inicial e final" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Próximo número de fatura" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8667,6 +9132,9 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Este assistente irá remover as entradas de diário do final do ano do ano " +"fiscal selecionado. Note que você pode executar este assistente muitas vezes " +"para o mesmo ano fiscal." #. module: account #: report:account.invoice:0 @@ -8717,7 +9185,7 @@ msgstr "Saldo Final" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Contrapartida Centralizada" #. module: account #: help:account.move.line,blocked:0 @@ -8754,6 +9222,12 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Use esta opção se você deseja cancelar uma fatura e criar uma nova.\n" +"                                     A nota de crédito será criada, validada " +"e reconciliada\n" +"                                     com a fatura atual. A nova fatura, " +"provisória, será criada\n" +"                                     para que você possa editá-la." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8764,7 +9238,7 @@ msgstr "Importação automática de extrato de banco" #: code:addons/account/account_invoice.py:389 #, python-format msgid "Unknown Error!" -msgstr "" +msgstr "Erro Desconhecido!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile @@ -8774,7 +9248,7 @@ msgstr "Reconciliar movimento bancário" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Aplicar" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8786,7 +9260,7 @@ msgstr "Tipos de Conta" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Fatura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1211 @@ -8795,6 +9269,8 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Você não pode usar esta conta geral neste diário, verifique a aba 'Controles " +"de Entrada' no diário relacionado." #. module: account #: field:account.account.type,report_type:0 @@ -8813,12 +9289,12 @@ msgstr "Categoria P&L / BS" #: model:process.node,name:account.process_node_supplierreconciliation0 #, python-format msgid "Reconciliation" -msgstr "Conciliação" +msgstr "Reconciliação" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "Manter vazio para usar a conta de receita" +msgstr "Deixe em branco para usar a conta de receita" #. module: account #: view:account.invoice:0 @@ -8855,6 +9331,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um diário.\n" +"

\n" +" Um diário é usado para registrar as transações de todos os " +"dados\n" +" contábeis relacionados ao dia-a-dia da empresa.\n" +"

\n" +" Uma empresa pode criar um diário por meio de pagamento " +"(dinheiro,\n" +"                 contas bancárias, cheques), um diário de compras, um diário " +"de vendas\n" +"                 e um para informações diversas.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state @@ -8954,7 +9444,7 @@ msgstr "Fornecedores" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "Tipos de contas permitidas (vazio para não controlar)" +msgstr "Tipos de contas permitidas (em branco para não controlar)" #. module: account #: help:account.move.line,amount_residual:0 @@ -8983,6 +9473,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Esta opção permite-lhe obter mais detalhes sobre a forma como os seus saldos " +"são calculados. Porque ele está consumindo espaço, nós não permitimos a usá-" +"lo ao fazer uma comparação." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -8992,13 +9485,15 @@ msgstr "Fechar Ano Fiscal" #. module: account #: sql_constraint:account.account:0 msgid "The code of the account must be unique per company !" -msgstr "O código da conta deve ser único por empresa !" +msgstr "O código da conta deve ser único por empresa!" #. module: account #: help:product.category,property_account_expense_categ:0 #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Essa conta será usada para valorização da saída de estoque usando o preço de " +"custo." #. module: account #: view:account.invoice:0 @@ -9036,7 +9531,7 @@ msgstr "Contas permitidas (Vazio para não controlar)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Impostos de Vendas (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -9061,6 +9556,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir uma nova entrada recorrente.\n" +"

\n" +" Lançamentos recorrentes ocorre com base em uma data " +"específica\n" +"                 ou seja, data que corresponde à assinatura de um contrato " +"ou um\n" +"                 acordo com um cliente ou de um fornecedor. Você pode criar " +"tal\n" +"                 entradas para automatizar os lançamentos no sistema.\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -9103,6 +9610,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Isso permite que você escreva e imprima cheques.\n" +"                 Isso instala o módulo account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9141,7 +9650,7 @@ msgstr "" #: code:addons/account/account_move_line.py:1009 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "O movimento da conta (%s) para a centralização foi confirmada." #. module: account #: report:account.analytic.account.journal:0 @@ -9180,6 +9689,9 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Você pode selecionar aqui o diário usar para a nota de crédito que será " +"criada. Se você deixar esse campo vazio, ele vai usar o mesmo diário da " +"fatura atual." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9209,7 +9721,7 @@ msgstr "Modelo errado!" #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Modelo de Imposto" #. module: account #: field:account.invoice.refund,period:0 @@ -9229,6 +9741,10 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Você não pode fazer esta modificação em uma entrada reconciliada. Você pode " +"apenas alterar alguns campos não legais ou você deve desconciliar primeiro. " +"\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9275,14 +9791,14 @@ msgstr "As faturas provisórias são conferidas, validadas e impressas." #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "Nota Interna" +msgstr "Anotação Interna" #. module: account #: constraint:account.account:0 @@ -9291,11 +9807,15 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Erro de configuração!\n" +"Você não pode selecionar um tipo de conta com um método de diferimento " +"diferente de \"Não conciliadas\" para contas com tipo interno \"a Pagar / " +"Receber\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "A empresa possui um ano fiscal" #. module: account #: help:account.tax,child_depend:0 @@ -9311,7 +9831,7 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Você não pode desativar uma conta que possui lançamentos de diário." #. module: account #: selection:account.tax,applicable_type:0 @@ -9355,7 +9875,7 @@ msgstr "Período de" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Unidade da Moeda" #. module: account #: code:addons/account/account.py:3147 @@ -9378,6 +9898,10 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Uma vez que as faturas provisórias são confirmados, você não será capaz de\n" +"                         modificá-las. A fatura receberá um número exclusivo " +"e itens de\n" +"                         diário serão criados em seu plano de contas." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9392,7 +9916,7 @@ msgstr "Situação do fechamento de Ano Fiscal e períodos" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Diário de Devolução de Vendas" #. module: account #: view:account.analytic.line:0 @@ -9416,7 +9940,7 @@ msgstr "Criar Fatura" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Configurar dados Contábeis" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9436,6 +9960,8 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Por favor, verifique se no campo 'Conta de transferência interna' é definido " +"no método de pagamento '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 @@ -9476,6 +10002,14 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * 'Provisório' é quando o usuário cria uma fatura não confirmada.\n" +"* 'Pro-forma' é quando a fatura está em pronta mas não tem um número de " +"fatura.\n" +"* 'Aberto' é usado quando o usuário cria a fatura, um número de fatura é " +"gerado e permanece aberto até o pagamento.\n" +"* 'Pago' é definido automaticamente quando a fatura é paga. As entradas de " +"diário relacionadas podem ou não ser reconciliadas.\n" +"* 'Cancelada' é usado quando o usuário cancelar a fatura." #. module: account #: field:account.period,date_stop:0 @@ -9495,7 +10029,7 @@ msgstr "Relatórios Financeiros" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Ver Passivo" #. module: account #: report:account.account.balance:0 @@ -9543,7 +10077,7 @@ msgstr "Empresas que referenciam o parceiro" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Solicitar Reembolso" #. module: account #: view:account.move.line:0 @@ -9573,13 +10107,13 @@ msgstr "Contas a Receber" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Seqüência da nota de crédito do Fornecedor" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Fatura já reconciliada." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9591,6 +10125,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Isso permite que você crie e gerencie suas ordens de pagamento, para\n" +"                     * Servir como base para um plug-in fácil de vários " +"mecanismos eletrônicos de pagamento, e\n" +"                     * Fornecer uma maneira mais eficiente de gerenciar o " +"pagamentos de faturas.\n" +"                 Isso instala o módulo account_payment." #. module: account #: xsl:account.transfer:0 @@ -9608,7 +10148,7 @@ msgstr "Conta de Recebimento" #: code:addons/account/account_move_line.py:827 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Para reconciliar, a empresa deve ser a mesma para todas as entradas." #. module: account #: field:account.account,balance:0 @@ -9680,13 +10220,13 @@ msgstr "Gerar Lançamentos Iniciais de Abertura do Ano Fiscal" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "Filtros Por" +msgstr "Filtrar Por" #. module: account #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Número de Unidades" #. module: account #: model:process.node,note:account.process_node_manually0 @@ -9711,12 +10251,12 @@ msgstr "Movimento" #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Ação Inválida!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Data / Período" #. module: account #: report:account.central.journal:0 @@ -9735,11 +10275,14 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Erro!\n" +"O período é inválido. Ou alguns períodos estão sobrepostos ou datas do " +"período estão fora do ano fiscal." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Não há nada em atraso com este cliente." #. module: account #: help:account.tax,account_paid_id:0 @@ -9747,6 +10290,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Defina a conta que será usada por padrão em linhas de fatura para reembolso. " +"Deixe em branco para usar a conta de despesa." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9757,7 +10302,7 @@ msgstr "Cria uma conta com o modelo selecionado abaixo desta conta pai." #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Origem" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9780,11 +10325,13 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Este campo contém a informação relacionada com a numeração dos lançamentos " +"neste diário." #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Enviada" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9795,7 +10342,7 @@ msgstr "Relatório Comum" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Imposto padrão de vendas" #. module: account #: report:account.overdue:0 @@ -9806,12 +10353,12 @@ msgstr "Saldo:" #: code:addons/account/account.py:1547 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Não é possível criar movimentos para empresas diferentes." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Processamento Periódico" #. module: account #: view:account.invoice.report:0 @@ -9880,7 +10427,7 @@ msgstr "Finalizar Período" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Visualizar Despesa" #. module: account #: field:account.move.line,date_maturity:0 @@ -9891,13 +10438,13 @@ msgstr "Data de vencimento" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Pagamento Imediato" #. module: account #: code:addons/account/account.py:1464 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralização" #. module: account #: help:account.journal,type:0 @@ -9918,7 +10465,7 @@ msgstr "" #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "Inscriçãoda conta" +msgstr "Conta de Assinatura" #. module: account #: report:account.overdue:0 @@ -9980,14 +10527,14 @@ msgstr "Faturas Provisórias" #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Colocar dinheiro em" #. module: account #: selection:account.account.type,close_method:0 #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Não conciliado" +msgstr "Não Conciliado" #. module: account #: code:addons/account/account_invoice.py:894 @@ -10039,7 +10586,7 @@ msgstr "A partir de contas analíticas" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Configure seu Ano Fiscal" #. module: account #: field:account.period,name:0 @@ -10053,6 +10600,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"As fatura selecionada(s) não podem ser canceladas pois já estão como " +"'Cancelado' ou 'Concluído'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -10087,6 +10636,10 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Você não pode fazer esta modificação em uma entrada confirmada. Você pode " +"apenas alterar alguns campos não legais ou você deve desconfirmar a entrada " +"de diário primeiro.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -10097,6 +10650,12 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Isso permite aos contadores gerenciar orçamentos analíticos e cruzados.\n" +"                 Uma vez que os orçamentos mestre e os orçamentos são " +"definidos,\n" +"                 os gerentes de projeto pode definir o valor planejado em " +"cada conta analítica.\n" +"                 Isso instala o módulo account_budget." #. module: account #: field:account.bank.statement.line,name:0 @@ -10156,7 +10715,7 @@ msgstr "Crédito" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Fatura Provisória " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10172,7 +10731,7 @@ msgstr "Modelo de Lançamento de Diário" #: code:addons/account/account.py:1064 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "O período inicial deve vir antes do período final." #. module: account #: field:account.invoice,number:0 @@ -10257,7 +10816,7 @@ msgstr "Lucro (Prejuízo) para relatório" #: code:addons/account/account_invoice.py:387 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Não existe diário de Venda/Compra definido." #. module: account #: view:account.move.line.reconcile.select:0 @@ -10336,7 +10895,7 @@ msgstr "Tipo interno" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Gerar lançamentos antes" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10436,6 +10995,8 @@ msgstr "Situações" #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Essa conta será usada para valorizar o estoque de saída usando o preço de " +"venda." #. module: account #: field:account.invoice,check_total:0 @@ -10458,12 +11019,12 @@ msgstr "Total" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Não é possível %s provisória/proforma/cancelar a fatura." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Conta Analítica de Reembolso de Imposto" #. module: account #: view:account.move.bank.reconcile:0 @@ -10530,7 +11091,7 @@ msgstr "Data de Vencimento" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Motivo" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10559,7 +11120,7 @@ msgstr "Criar Períodos Mensais" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "Sinal Para o Pai" +msgstr "Registro para o superior" #. module: account #: model:ir.model,name:account.model_account_balance_report @@ -10582,7 +11143,7 @@ msgstr "" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "Esvaziar as contas ? " +msgstr "Esvaziar as contas? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -10590,12 +11151,15 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Se você desconciliar as transações, você também deve verificar se todas as " +"ações que estão associadas a essas operações, porque não vai ser desativar " +"automaticamente" #. module: account #: code:addons/account/account_move_line.py:1059 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Não é possível alterar o imposto!" #. module: account #: constraint:account.bank.statement:0 @@ -10624,6 +11188,10 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"A partir deste relatório, você pode ter uma visão geral do valor faturado " +"para o seu cliente. A ferramenta de busca também pode ser usado para " +"personalizar seus relatórios de faturas e assim, combinar esta análise de " +"acordo com suas necessidades." #. module: account #: view:account.partner.reconcile.process:0 @@ -10644,7 +11212,7 @@ msgstr "A situação da fatura é Concluída" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Gerenciar o acompanhamento de cobrança ao clientes" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10720,7 +11288,7 @@ msgstr "Contas de recebimento" #: code:addons/account/account_move_line.py:783 #, python-format msgid "Already reconciled." -msgstr "" +msgstr "Já reconciliada" #. module: account #: selection:account.model.line,date_maturity:0 @@ -10774,6 +11342,7 @@ msgstr "Manualmente" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Este é um campo utilizado apenas para uso interno e não deve ser mostrado" #. module: account #: selection:account.entries.report,month:0 @@ -10794,6 +11363,7 @@ msgstr "Agrupar por mês da fatura" #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Não existe conta de entrada definida para este produto: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -10857,6 +11427,8 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"A unidade de medida seleccionada não é compatível com a unidade de medida do " +"produto." #. module: account #: view:account.fiscal.position:0 @@ -10880,6 +11452,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo código de imposto.\n" +"

\n" +"Dependendo do país, um código fiscal é geralmente uma célula para preencher\n" +"                 em sua declaração de imposto legal. O OpenERP permite que " +"você defina a\n" +"                 estrutura tributária e cada cálculo do imposto será " +"registrado em \n" +"                 uma ou vários código tributário.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10906,6 +11489,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Escolha o período e o diário que deseja preencher.\n" +"

\n" +" Esta visualização pode ser usado por contadores de forma a " +"registrar rapidamente\n" +"               entradas no OpenERP. Se você quiser registrar uma fatura do " +"fornecedor,\n" +"               começe a gravação da linha de conta da despesa. O OpenERP irá " +"propor a você\n" +" o Imposto relacionado com esta conta e a contrapartida " +"\"Conta a Pagar\".\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10915,7 +11511,7 @@ msgstr "A conta de receita ou despesa relacionada ao produto selecionado." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Instalar mais modelos de gráfico" #. module: account #: report:account.general.journal:0 @@ -10963,6 +11559,8 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Você não pode remover/desativar uma conta que está definida em um cliente ou " +"fornecedor." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -10974,6 +11572,7 @@ msgstr "Validar Linhas de Movimento de Contas" msgid "" "The fiscal position will determine taxes and accounts used for the partner." msgstr "" +"A posição fiscal irá determinar os impostos e contas usadas para o parceiro." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -10989,7 +11588,7 @@ msgstr "Assim que a reconciliação é feita, a fatura pode ser paga." #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "A nova moeda não está configurada corretamente." #. module: account #: view:account.account.template:0 @@ -11006,6 +11605,7 @@ msgstr "Impostos de fatura manual" #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" +"A condição de pagamento do fornecedor não possui uma linha de pagamento." #. module: account #: field:account.account,parent_right:0 @@ -11018,7 +11618,7 @@ msgstr "Superior a direita" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Nunca" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -11039,7 +11639,7 @@ msgstr "Do parceiro" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Anotações Internas" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -11072,7 +11672,7 @@ msgstr "Modelo de Conta" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Perda" #. module: account #: selection:account.entries.report,month:0 @@ -11087,7 +11687,7 @@ msgstr "Fevereiro" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Números da Unidade de Fechamento" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11144,7 +11744,7 @@ msgstr "Contas de despesas no modelo do produto" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Condições de Pagamento do Cliente" #. module: account #: help:accounting.report,label_filter:0 @@ -11158,7 +11758,7 @@ msgstr "" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "Arredondamento por linha" #. module: account #: help:account.move.line,amount_residual_currency:0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index b3b3c38284e..4d1b5077ee2 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:35+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index f22ab9bf6d8..4b72de1a050 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:58+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -81,7 +81,7 @@ msgstr "Импорт из счета или платежного поручен #: code:addons/account/account_move_line.py:1211 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Плохой счет !" #. module: account #: view:account.move:0 @@ -95,6 +95,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"Ошибка!\n" +"Нельзя создать рекурсивный шаблон счета." #. module: account #. openerp-web @@ -198,7 +200,7 @@ msgstr "Заголовок столбца" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Кол-во цифр в коде счета" #. module: account #: help:account.analytic.journal,type:0 @@ -242,7 +244,7 @@ msgstr "Бельгийские отчеты" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Утверждено" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -320,12 +322,12 @@ msgstr "Отменить сверку счета" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Управление бюджетом" #. module: account #: view:product.template:0 msgid "Purchase Properties" -msgstr "Свойства покупки" +msgstr "Свойства закупок" #. module: account #: help:account.financial.report,style_overwrite:0 @@ -341,7 +343,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Разрешить мульти-валютность" #. module: account #: code:addons/account/account_invoice.py:73 @@ -362,12 +364,12 @@ msgstr "Июнь" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Вы должны выбрать счета для сверки." #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Позволяет использовать аналитический учет." #. module: account #: view:account.invoice:0 @@ -375,7 +377,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Продавец" #. module: account #: view:account.bank.statement:0 @@ -441,7 +443,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Период :" #. module: account #: field:account.account.template,chart_template_id:0 @@ -482,7 +484,7 @@ msgstr "Сумма выраженная в дополнительной друг #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Доступные монеты" #. module: account #: field:accounting.report,enable_filter:0 @@ -535,7 +537,7 @@ msgstr "Родительская цель" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Определяет порядок вывода строки счета." #. module: account #: field:account.bank.statement,account_id:0 @@ -604,12 +606,12 @@ msgstr "Бухгалтер подтверждает документ." #: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 #, python-format msgid "Nothing to reconcile" -msgstr "" +msgstr "Нечего сверять" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Десятичная точность проводок журнала" #. module: account #: selection:account.config.settings,period:0 @@ -634,7 +636,7 @@ msgstr "Значение отчёта" msgid "" "Specified journal does not have any account move entries in draft state for " "this period." -msgstr "" +msgstr "В указанном журнале нет ни одной черновой проводки за этот период." #. module: account #: view:account.fiscal.position:0 @@ -657,12 +659,12 @@ msgstr "Основная нумерация должна отличаться о #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Текущая валюта настроена неправильно." #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Счет прибыли" #. module: account #: code:addons/account/account_move_line.py:1157 @@ -685,7 +687,7 @@ msgstr "КнП" #: code:addons/account/account.py:1551 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Нельзя сделать движение по валюте отличной от.." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -743,12 +745,12 @@ msgstr "Счета к получению" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Настройка банковских счетов компании" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Создать возврат" #. module: account #: constraint:account.move.line:0 @@ -778,7 +780,7 @@ msgstr "Вы действительно хотите создать провод #: code:addons/account/account_invoice.py:1329 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Счет частично оплачен: %s%s из %s%s (%s%s остаток)." #. module: account #: view:account.invoice:0 @@ -871,7 +873,7 @@ msgstr "Счета поставщиков и возмещения" #: code:addons/account/account_move_line.py:854 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Проводка уже сверена." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -888,7 +890,7 @@ msgstr "Журнал аналитики" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Отправить по эл.почте" #. module: account #: help:account.central.journal,amount_currency:0 @@ -908,7 +910,7 @@ msgstr "Код журн./Операция" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Код и название счета" #. module: account #: selection:account.entries.report,month:0 @@ -984,12 +986,12 @@ msgstr "Срок" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Журнал покупок" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Счет оплачен" #. module: account #: view:validate.account.move:0 @@ -1007,7 +1009,7 @@ msgstr "Общая сумма" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Описание счета, как предоставил поставщик." #. module: account #: selection:account.account,type:0 @@ -1068,7 +1070,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "Закупки" +msgstr "Покупки" #. module: account #: field:account.model,lines_id:0 @@ -1095,7 +1097,7 @@ msgstr "Код" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Возможности" #. module: account #: code:addons/account/account.py:2298 @@ -1176,13 +1178,13 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Возврат " #. module: account #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Для этого товара не определен счет расходов : \"%s\" (id:%d)." #. module: account #: view:account.tax:0 @@ -1204,7 +1206,7 @@ msgstr "Кассы" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Журнал возврата продаж" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1240,7 +1242,7 @@ msgstr "Начало периода" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Возвраты" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1298,7 +1300,7 @@ msgstr "Код будет выводиться в отчётах." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "Налоги используемые в закупках" +msgstr "Налоги используемые при покупке" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1317,7 +1319,7 @@ msgstr "Исходящий курс валют" #. module: account #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Шаблон" #. module: account #: selection:account.analytic.journal,type:0 @@ -1409,7 +1411,7 @@ msgstr "Уровень" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Изменить валюту можно только в черновике счета." #. module: account #: report:account.invoice:0 @@ -1480,12 +1482,12 @@ msgstr "Параметры отчета" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Финансовый год для закрыть" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Нумерация счета" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1508,7 +1510,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Статус счета" #. module: account #: view:account.bank.statement:0 @@ -1530,7 +1532,7 @@ msgstr "Счет к получению" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (копия)" #. module: account #: selection:account.balance.report,display_account:0 @@ -1599,17 +1601,17 @@ msgstr "Пропускать состояние \"Черновик\" при ру #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Не реализовано." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "Кредит-нота" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "Эл. счета и платежи" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1690,7 +1692,7 @@ msgstr "Без налога" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Расширенные настройки" #. module: account #: view:account.bank.statement:0 @@ -1789,7 +1791,7 @@ msgstr "Последовательность финансовых лет" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Аналитический учет" #. module: account #: report:account.overdue:0 @@ -1819,7 +1821,7 @@ msgstr "Продажи по типу счета" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 дней" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1844,7 +1846,7 @@ msgstr "" #: code:addons/account/account_move_line.py:857 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Некоторые записи уже сверены." #. module: account #: field:account.tax.code,sum:0 @@ -1901,12 +1903,12 @@ msgstr "Дебиторы и кредиторы" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Управление платежными распоряжениями" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Длительность" #. module: account #: view:account.bank.statement:0 @@ -1944,7 +1946,7 @@ msgstr "Ссылка на клиента:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Используйте этот код для налоговой декларации." #. module: account #: help:account.period,special:0 @@ -1959,12 +1961,12 @@ msgstr "Черновик документа" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Счет утвержден" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Оплата поставщикам чеком" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1975,7 +1977,7 @@ msgstr "Сумма кредита" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: account #: view:account.vat.declaration:0 @@ -2073,7 +2075,7 @@ msgstr "Анализ счетов" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Мастер составления эл. почты" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2119,7 +2121,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Валюта компании по умолчанию" #. module: account #: field:account.invoice,move_id:0 @@ -2167,7 +2169,7 @@ msgstr "Корректный" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Подписчики" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2196,14 +2198,14 @@ msgstr "Сальдовая ведомость по счету" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Закрыть финансовый год" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Журнал :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2220,12 +2222,12 @@ msgstr "Определение налога" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Настройка учета" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Базовая единица измерения" #. module: account #: help:account.journal,allow_date:0 @@ -2241,12 +2243,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Молодец!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Управление активами" #. module: account #: view:account.account:0 @@ -2387,7 +2389,7 @@ msgstr "30 рабочих дней" #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "У вас нет прав открыть журнал %s !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total @@ -2560,7 +2562,7 @@ msgstr "" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Позиция счета" #. module: account #: view:account.addtmpl.wizard:0 @@ -2618,7 +2620,7 @@ msgstr "Системы налогообложения" #: code:addons/account/account_move_line.py:578 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Нельзя создать элемент журнала по закрытому счету %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2639,12 +2641,12 @@ msgstr "Состояние счета - \"Черновик\"" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Параметры счета" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Создать черновик возврата" #. module: account #: view:account.partner.reconcile.process:0 @@ -2654,7 +2656,7 @@ msgstr "Сверка с контрагентом" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Фин. счет" #. module: account #: field:account.tax,tax_code_id:0 @@ -2774,7 +2776,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Следующий номер счета поставщика" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2823,7 +2825,7 @@ msgstr "Счёт аналитики" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Налог на покупку по умолчанию" #. module: account #: view:account.account:0 @@ -2856,7 +2858,7 @@ msgstr "Ошибка конфигурации!" #: code:addons/account/account_bank_statement.py:433 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Распоряжение %s подтверждено, элементы журнала созданы." #. module: account #: field:account.invoice.report,price_average:0 @@ -2909,7 +2911,7 @@ msgstr "Ссылка" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Налог на покупку" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3005,7 +3007,7 @@ msgstr "Бухгалтерские проводки" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Счет и период должны относиться к одной компании." #. module: account #: field:account.invoice.line,discount:0 @@ -3035,7 +3037,7 @@ msgstr "Количество к списанию" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3049,7 +3051,7 @@ msgstr "" #: code:addons/account/account.py:1062 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Вы должны выбрать периоды относящиеся к одной компании." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3062,17 +3064,17 @@ msgstr "Продажи по бух. счетам" #: code:addons/account/account.py:1411 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Нельзя удалить проведенную проводку журнала \"%s\"." #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Период учета" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Журнал продаж" #. module: account #: code:addons/account/account.py:2298 @@ -3089,6 +3091,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Этот журнал уже содержит элементы , поэтому вы не можете изменить поле " +"компания." #. module: account #: code:addons/account/account.py:409 @@ -3177,7 +3181,7 @@ msgstr "Счет расходов" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Описание" #. module: account #: help:account.invoice,period_id:0 @@ -3294,7 +3298,7 @@ msgstr "Закрыть отчетный год" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Период" #. module: account #: view:account.period:0 @@ -3357,7 +3361,7 @@ msgstr "Кол-во цифр для использования в коде сч #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Условия оплаты поставщику" #. module: account #: view:account.fiscalyear:0 @@ -3373,7 +3377,7 @@ msgstr "Всегда" #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "Полный бухгалтерский учет: журналы, декларации, планы счетов и т.п." #. module: account #: view:account.analytic.line:0 @@ -3435,7 +3439,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Компания имеет план счетов" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3562,7 +3566,7 @@ msgstr "Шаблоны планов счетов" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Транзакции" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3820,6 +3824,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Вы не предоставили достаточно аргументов, чтобы вычислить начальный баланс, " +"пожалуйста, выберите период и журнал в контексте." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3829,7 +3835,7 @@ msgstr "Переводы" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "Эта компания имеет свой собственный план счетов" #. module: account #: view:account.chart:0 @@ -3936,7 +3942,7 @@ msgstr "Создать счет" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "Записи для сверки должны относиться к одной компании." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3957,6 +3963,7 @@ msgstr "Подробности" #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." msgstr "" +"Это налог на покупку будет использован по умолчанию для новых товаров." #. module: account #: report:account.invoice:0 @@ -3985,7 +3992,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process @@ -4244,7 +4251,7 @@ msgstr "Дата вступления в силу" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "Журнал должен иметь кредитовый и дебетовый счета по умолчанию." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree @@ -4261,7 +4268,7 @@ msgstr "ID партнера" #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: account #: help:account.journal,analytic_journal_id:0 @@ -4302,7 +4309,7 @@ msgstr "" #: code:addons/account/account_move_line.py:1144 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Вы не можете использовать неактивный счет ." #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4333,7 +4340,7 @@ msgstr "Субсчета" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Недостаточно данных!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4397,7 +4404,7 @@ msgstr "Активы" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Бухгалтерия и финансы" #. module: account #: view:account.invoice.confirm:0 @@ -4462,6 +4469,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Это условие оплаты будет использоваться вместо используемого по умолчанию " +"для заказов продаж и счетов." #. module: account #: view:account.config.settings:0 @@ -4487,7 +4496,7 @@ msgstr "Проведенные элементы журнала" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Нет напоминаний" #. module: account #: view:account.tax.template:0 @@ -4576,6 +4585,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Ошибка!\n" +"Нельзя создавать рекурсивные коды налогов." #. module: account #: constraint:account.period:0 @@ -4604,7 +4615,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Нумерация счетов поставщиков" #. module: account #: code:addons/account/account_invoice.py:587 @@ -4620,7 +4631,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Ед. изм. товара" #. module: account #: field:res.company,paypal_account:0 @@ -4635,7 +4646,7 @@ msgstr "Тип счета" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Банк и чеки" #. module: account #: field:account.account.template,note:0 @@ -4725,12 +4736,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:24 #, python-format msgid "Last Reconciliation:" -msgstr "" +msgstr "Последняя сверка:" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Сбалансировано" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4748,7 +4759,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Настроить параметры учета" #. module: account #: model:ir.model,name:account.model_account_chart @@ -4827,12 +4838,12 @@ msgstr "Кредит-ноты" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Элементы журнала для сверки" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Шаблоны для налогов" #. module: account #: sql_constraint:account.period:0 @@ -4847,7 +4858,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Расчет налога" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4884,6 +4895,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Ошибка!\n" +"Нельзя создать счет, который имеет родительский счет другой компании." #. module: account #: code:addons/account/account_invoice.py:631 @@ -4939,7 +4952,7 @@ msgstr "Выступает в качестве счета по умолчани #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Опишите, почему вы берете деньги из кассы:" #. module: account #: selection:account.invoice,state:0 @@ -4970,7 +4983,7 @@ msgstr "" #: code:addons/account/account.py:3346 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Налог на покупку %.2f%%" #. module: account #: view:account.subscription.generate:0 @@ -5004,7 +5017,7 @@ msgstr "Отмененный счет" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Мои счета" #. module: account #: selection:account.bank.statement,state:0 @@ -5014,7 +5027,7 @@ msgstr "Новый" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Налог с продаж" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5044,7 +5057,7 @@ msgstr "" #: code:addons/account/account.py:3157 #, python-format msgid "MISC" -msgstr "" +msgstr "РАЗНОЕ" #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -5067,7 +5080,7 @@ msgstr "Счета" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Отметьте если эта компания является юридическим лицом." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5113,7 +5126,7 @@ msgstr "Проверка" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "или" #. module: account #: view:account.invoice.report:0 @@ -5216,6 +5229,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Пожалуйста, проверьте цены в счете !\n" +"Введенный итог не совпадает с вычисленным." #. module: account #: field:account.account,active:0 @@ -5261,7 +5276,7 @@ msgstr "Баланс по типу счета" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Нет счета %s в журнале %s." #. module: account #: model:res.groups,name:account.group_account_user @@ -5278,7 +5293,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Финансовый менеджер" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5299,7 +5314,7 @@ msgstr "Операции" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Позиции кассы" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5455,7 +5470,7 @@ msgstr "Год" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Он указывает, что счет был отправлен." #. module: account #: field:account.tax.template,description:0 @@ -5474,7 +5489,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "Предварительный счет " #. module: account #: selection:account.subscription,period_type:0 @@ -5505,7 +5520,7 @@ msgstr "Балансовая ведомость" #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Прибыль и убыток (счет доходов)" #. module: account #: field:account.journal,allow_date:0 @@ -5539,7 +5554,7 @@ msgstr "Вычислить код (если тип=код)" #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." -msgstr "" +msgstr "Не могу найти план счетов для этой компании, надо создать." #. module: account #: selection:account.analytic.journal,type:0 @@ -5600,6 +5615,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 "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: account #: field:account.tax,child_depend:0 @@ -5663,13 +5680,13 @@ msgstr "account.installer" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Перерасчет налогов и итога" #. module: account #: code:addons/account/account.py:1103 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Нельзя изменить/удалить журнал с проводками за этот период." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5679,7 +5696,7 @@ msgstr "Включить в базовую сумму" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Номер счета поставщика" #. module: account #: help:account.payment.term.line,days:0 @@ -5699,7 +5716,7 @@ msgstr "Расчет суммы" #: code:addons/account/account_move_line.py:1108 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." -msgstr "" +msgstr "Нельзя добавлять/изменять записи в закрытый период %s журнала %s." #. module: account #: view:account.journal:0 @@ -7563,7 +7580,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Налог на покупку (%)" #. module: account #: help:res.partner,credit:0 @@ -8659,7 +8676,7 @@ msgstr "Сверка операции по банку" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -9261,7 +9278,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Журнал возврата покупок" #. module: account #: view:account.analytic.line:0 @@ -10110,7 +10127,7 @@ msgstr "" #: code:addons/account/account_invoice.py:387 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Не определен журнал продаж/покупок" #. module: account #: view:account.move.line.reconcile.select:0 @@ -10586,7 +10603,7 @@ msgstr "Диапазон" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Элементы журнала аналитики, связанные с журналом покупок" #. module: account #: help:account.account,type:0 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index 33674660703..f0204bf7ced 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:58+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index d7ba5caef63..f2ba155984f 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 0d23a76cc31..8d7bff85f80 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index b1cd1c1232a..1d2857ad053 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:23+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index 8f5248dcf86..32fe0574458 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:58+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index d5a41fc9e83..0c9a8c0a782 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 5e910e0630d..34f699a2fe4 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index b8ab776142b..af93397128d 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index b3b64357eb9..e3f0bdd768f 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index 73673e3e1ac..a66e802a07b 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index 6374bababc7..baadccc69c0 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 16bbc2fb5c9..acae813da40 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index c736a52bbe9..979413a4f8b 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:59+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index c842cb87435..de1e3df4fba 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index b7466dc30e5..0f28440ceaf 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 9756c80082b..e11a9d71886 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 7d4e20ff5cd..d0a6db8742a 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 062ffa40113..d1244316111 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:00+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 3f4c0f2bbe9..aa3e00f21b7 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:01+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:30+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 06ef3b46bfa..9fc933ab59d 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index ac04315b393..562c2758aa1 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index 5f63e231c9f..aa02140c37c 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index 17faba2a236..5fc6f6b97e8 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index ce6c2d55f00..9206f20e181 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index def27b5ecae..048231799d7 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index 01d1574d72d..88540a03300 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-30 10:18+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index bb0ea5dbe5f..450d7feb133 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index ae42b2b8168..8754df7e88d 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 55b29ef3d75..059c637abe5 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index ef308e51d5f..56668c557b3 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 510e900f64a..67b3f037634 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index e196d7641fb..50789a14d57 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index d81584746cd..6be595cd76a 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index a86dcef742e..1c3d68dfa6a 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index c66b85a9805..c4bcda8fe7c 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index 364a24c0700..5f882943c30 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index e22a782304d..8d605c7d136 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index f97d165b4c8..0fb1007851d 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 5996bf676be..abe9d60bd5a 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index dd70e811912..0952ba8c10f 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index 0046ed26641..3774724502b 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index 3e3bfeb6ab2..b3b02f746d7 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 14497039fb1..7fd9a94295e 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index bbf2222997f..b568f2e6259 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 461187f40cc..d92e436b262 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index 8be3d780271..7d1d8f21c07 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index db05faeb817..cf9b68ed1ec 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 386f2c40741..c010c5d563f 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 3ee9d35d364..90129994221 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index 34febc2da1f..24ca280ec0c 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index 0c897d7d2a8..6ce88f58ee9 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 547a5e020fd..c785fa53b8a 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 2ad36c23d7e..fff5596e187 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index 415eb936872..5ac6ffd9174 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index a883c932c9d..1b65b778fb1 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index 51f0af10071..ca014272ca7 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 491695548b8..798683c64d4 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index 3121352c102..0816b611b1a 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index b729b33c472..27105810630 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 87e9240bf30..075a7cc4031 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index 9f7fdd697a6..104aa652ed9 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 48c665ca242..7dca469f03d 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index 38ef10baf8c..7db15c1bb07 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,10 +14,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Открыть меню учета" diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index c86ca30966a..0c245dc3a24 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index f82fa23b309..b5cb4981ace 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 9412e599683..6538531ea79 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index 0005dbc3ae1..dab66df5e62 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index 7834807fa73..daf0763e7b6 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index ae4894f371c..3b8deb623d4 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -8,16 +8,16 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:23+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Öppna bokföringsmenyn" diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index 81d01372271..3ce379df2dd 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 132d637aef6..3841c29b7ec 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 5af27dcc9b0..4b92e9ae1b0 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 9aa0484f1f4..40c7aaf8b14 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index d32a43577ff..2af3961eaeb 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index 226e8096d00..3577baee80e 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 0d683a6c040..ac517b038b3 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index f856a80f259..944d7de6098 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 80853a7c690..860aa7ddb2e 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 7ef1cfd1f99..ac427bd4064 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index 14de2fb3d65..9df3f53f5c4 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 7ea8e295372..9632dfbe83a 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index 3c298cac3e6..b7290bbf6a0 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index cb8031855f7..374f5f7c4fd 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index b3bd2f4ea7d..33b758e1d10 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 6164bda48c0..1787fdca2df 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 816ff7c6bfe..d9e2ae12570 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -109,7 +109,7 @@ msgstr "" #: code:addons/account_analytic_analysis/account_analytic_analysis.py:462 #, python-format msgid "Sales Order Lines of %s" -msgstr "" +msgstr "Líneas del pedido de venta de %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 @@ -173,7 +173,7 @@ msgstr "Fecha fin" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Gestor contable" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 @@ -274,7 +274,7 @@ msgstr "o ver" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Contratos de clientes" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -510,7 +510,7 @@ msgstr "Fecha última factura" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "Unidades restantes" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -614,12 +614,12 @@ msgstr "Uso obligatorio de plantillas" #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Plantilla de contrato" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Done" -msgstr "" +msgstr "Unidades realizadas" #. module: account_analytic_analysis #: help:account.analytic.account,total_cost:0 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index e0e19dd3aae..3f32d5edd24 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index db57fa305fb..7382384a843 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index ce730ff51a3..519efd6fc99 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index aaae883cd65..75c77dd7c47 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index 524baf9fa16..39f458593e0 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index c27c9ae8181..6371b278977 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index 990c8bb5bed..603b650796a 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index f40a2fca098..11e578f7475 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index b9ab814e450..a3f14848e19 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 38743587783..9dbfc685ed3 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index 837886ae308..e5ed3cce79f 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 0bc5068df3c..ebb8dee07d7 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index d53121213f0..792750f79f8 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 9cfbc7e31b8..6e33af78ccb 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index a1a7a401dca..eaea0539cee 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -109,7 +109,7 @@ msgstr "Somma delle linee timesheet fatturate di questo contratto." #: code:addons/account_analytic_analysis/account_analytic_analysis.py:462 #, python-format msgid "Sales Order Lines of %s" -msgstr "" +msgstr "Linea ordine di vendita di %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 @@ -174,7 +174,7 @@ msgstr "Data fine" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Gestore Contabile" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 @@ -276,7 +276,7 @@ msgstr "o vista" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Contratti clienti" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -511,7 +511,7 @@ msgstr "Ultima data di fatturazione" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "Unità rimanenti" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -616,12 +616,12 @@ msgstr "Uso dei modelli obbligatorio" #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Modello contratto" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Done" -msgstr "" +msgstr "Unità fatte" #. module: account_analytic_analysis #: help:account.analytic.account,total_cost:0 diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 8ce7c840359..457e58a341a 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index 2e1e0a41e12..2a37a266018 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 8ee4cff5a74..2a404c675d3 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 3ac5165f61e..9c13d409963 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index 5f20690fffa..8715202c08b 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index 0a75f27f99d..0fe0f29dd45 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index 3baff2f451c..9d8e81ddcc0 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index a462a300c74..22281200a91 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 927f5855c48..401d79bd409 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index 7f087c3632b..12ae5460f34 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index a7090c68696..ca7aa8d9f8c 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 9609237b22b..9bbe95ab37a 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index c3d5168b5bc..d102d34b88c 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index 5e9aaa0ac30..e195ca5a13c 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index c2b4e824af3..1c9fc1dff26 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index d2cb7b8509d..87742297f42 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 3cb8fbd2a5b..8caf3d40c8a 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 5b9b2d0030d..ac4488fbde5 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 68c01a27028..04f0401bf6e 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index e8cb3fb2c46..e42b5c803f5 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 47450309708..72b86486130 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 3dcca936a18..6b7ff909035 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index bd97e793b89..ab3f573ab06 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 68237b6dd72..8e426e4b600 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 8cb764d4564..a9697c72451 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index 0e514346126..abe0437b7a5 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 46d8d8251a9..f69184a5a8a 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index 476ab1f1beb..15b09a8bc31 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 900ab6ad497..1960b21d0aa 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index aa7580f2e1f..f1c1bb45c60 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 22bcb097bb9..024765b9804 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index 92d272a8dea..dea5cfd1642 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index fa661628009..fb6eba9d5fd 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index 74100c42e1b..c222b94674a 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index ae83f36b15b..10ed4af4b03 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -41,6 +41,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Seleccione un producto que utilizará la cuenta analítica especificada en la " +"analítica por defecto (por ejemplo, creando una nueva factura de cliente o " +"un pedido de venta, si se selecciona este producto, automáticamente lo " +"tomará como una cuenta analítica)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -65,6 +69,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Seleccione una empresa que utilizará la cuenta analítica especificada en la " +"analítica por defecto (por ejemplo, creando una nueva factura de cliente o " +"un pedido de ventas, si se seleccionamos esta empresa, automáticamente la " +"tomará como una cuenta analítica)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -120,6 +128,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Seleccione una compañía que utilizará la cuenta analítica especificada en la " +"analítica por defecto (por ejemplo, creando una nueva factura de cliente o " +"un pedido de ventas, si se seleccionamos esta compañía, automáticamente la " +"tomará como una cuenta analítica)" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index d4be47b5e9d..a841e4529d4 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index a1ad9b6a0c6..9ee1318dd49 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index c208715eb0e..c798054dbb3 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 8c8d59e02d8..1f0bedae931 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index cfa687b8208..198760b7c14 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index 61fa9bdf703..c337c02bf32 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index 8dd71da730d..0619ec0c25e 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index 678b1eb9f5f..3c8935e5c05 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index f4aad45f76d..77fe4992128 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:35+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index f2220e3188e..3667b903147 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index bdd75dbcabf..c85c99be5e3 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index de63dfdd5c0..45c57d80507 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index d1e4230e973..6aa08077387 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index d50d01df10b..b297c0cfcff 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index cb3afd19433..d459eaa1750 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -41,6 +41,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Seleziona un prodotto che utilizzerà il conto analitico specificato nel " +"conto analitico default (es.: crea nuova fattura cliente o ordine di " +"vendita, se viene selezionato questo prodotto, esso prenderà automaticamente " +"il conto analitico impostato)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -65,6 +69,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Seleziona un partner che utilizzerà il conto analitico specificato nel conto " +"analitico default (es.: crea nuova fattura cliente o ordine di vendita, se " +"viene selezionato questo partner, esso prenderà automaticamente il conto " +"analitico impostato)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -120,6 +128,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Seleziona una azienda che utilizzerà il conto analitico specificato nel " +"conto analitico default (es.: crea nuova fattura cliente o ordine di " +"vendita, se viene selezionata questa azienda, essa prenderà automaticamente " +"il conto analitico impostato)" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index 4f635eaeb34..f75582e36f6 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index 4d830f2cae9..1c576997faf 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 65b0660a656..962a8a223ad 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index 4da4b5da1c6..8879a7ef715 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 622588ed1e3..cb8156b028c 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index 8c3f515bc96..64d200da196 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 7686103d9ef..cd703f295f9 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 0a09b932b57..ea037d676bb 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 655f5804845..09ebcac7f7e 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index bb741b23ae2..5342da20b20 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index d94e258d774..9701ac18e5b 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 15c1311437b..0b325dd783d 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 3c7ebb11637..39d41ef841a 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index cc96abf0449..93120bb2f97 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index 415ea20cfca..9480096422c 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index 70ffc6e9bc8..4b586374da3 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-26 13:41+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:52+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index 23370966e79..d404a07cd55 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index a797ec68c03..d25767e2a28 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index 9c8ea8ffb6d..5b7861ecd09 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index ab9a38477ba..bd48db5aea3 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index ffad4ba4dfd..39c644a7df3 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index a2987d3faee..b8ca2aa3b77 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index 1f4f90731af..21c5d5cb55b 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:02+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index abe47efd1cb..bd03d581882 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index 249db5b75c7..1d3dee0d72e 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 887b157cbf8..4af4ea7f773 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index 4f6d963b9ec..9c8220eba26 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 0ab1b9f0a77..2229eeb7009 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index cc0c979f28a..10a43712d8b 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index 0c558d0b7af..958bede76bb 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index 05824a3360f..eefd88a1cf9 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index 7f811aaa61f..aadd330958a 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index 4507c58115f..6fbee637a24 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index a981695dde0..04958760fa8 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index 75fc509b43f..bce4f8b11da 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index db1b679df69..6a16621cbe2 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index c8d743ea819..6825cad0f0b 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index a891d555195..a90a8d45bfe 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index 97550b480bc..18f509622bd 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index 0483dfe9b7b..d5543d201f5 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index 425924bbcd0..63a7fbff567 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index 3f618b6ce34..5d76cdeff08 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index 5ee08f7aaaa..a715dc83401 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index 8d887882f59..9f8d44549f0 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index 34d9eec7ec1..e17a6a1f2c2 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index 53f3c20bb2a..221f9f47516 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index 362abe2e59e..b32669b4e4a 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index 832e0a5d987..8121f9ba5e7 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index 8955541419a..aecbb0b95fb 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index 9862394d4b7..dde58d8326f 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index e472db06645..82c7648c158 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index af3169f339e..c00ced7dd02 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index ccd4d121eb9..8a66a436dc9 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index 4b215438924..72d0f98c26f 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index 50d32ac9ff1..b8640537e39 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 5196485ec9a..c9461305295 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index 621d2392525..d8318139561 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -322,7 +322,7 @@ msgstr "Geef een naam en code in voordat u het model opslaat." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Quantity" -msgstr "Aantal" +msgstr "Hoeveelheid" #. module: account_analytic_plans #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_multi_plan_action diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index d6ba3fb735d..4ec9b6e6d25 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index 7f96cdd8a68..083981220fe 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index c87faf4b815..7936acb61eb 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index 3a6ee947353..d1278dc08db 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index bfb6aa4b0c9..17963e6235d 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index bfd099165e6..ca0e77ca93b 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index 0b9917e6511..a07a9330aac 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -143,7 +143,7 @@ msgstr "Счет 3 уровня" #: view:account.crossovered.analytic:0 #: view:analytic.plan.create.model:0 msgid "or" -msgstr "" +msgstr "или" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line @@ -282,7 +282,7 @@ msgstr "Позиция банковской выписки" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -298,7 +298,7 @@ msgstr "Печать перекрестной аналитики" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "User Error!" -msgstr "" +msgstr "Ошибка пользователя!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index 3ebd0e2bbb8..87fbc4c065b 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-28 18:22+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 90bac7e5b97..b5fb46ccc79 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index a595875cceb..cc316767ea6 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index a12f91bca7b..5792f711044 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index 4fd554c24b2..b7cb3c8c959 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index 5586591eae7..0f8b1c127c2 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index 726d1bd20c5..07c8c989148 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index ff65f4d70cd..a81eb597f9a 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index 558e38fa699..5985abde16f 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 1470e49a478..dd05bdabbf1 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 9de45dbc999..5b67659a7d4 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index cc14df8f71b..ef9020591bd 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index 2eaa4a69542..1feac378d5c 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 6eac0328ea4..705786caf36 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index 154dbf91e49..adf2e7824ec 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 10:20+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index 089aaf1b697..a2957e58e0b 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index a9786ab99d5..a456ef48867 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index fc63161e2be..9cbe7913a6e 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index f927d46a309..1e91d8dc034 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index c012d4ca14b..45a2032ce99 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index 7f92c8f0b2c..ceaa7a05c09 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index 44ae94b2d5d..ff87345acf8 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index e55e1e76dac..37d8729d6b3 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index b51a3a354ea..ddba7cdbbc1 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index 057ab64ecab..edc615a7eab 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index bc542c4a316..b6634a89e4b 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index 70a8f8c769d..d9ef1b4bc82 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index 49aa506d295..ce28266f32e 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index fa3af7b9980..492d5550b6b 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index c2def8cbd6d..498f660e37e 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index b2c28ae0cc6..c34b0e627d4 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 158fdc6cf43..adbfb443f3b 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index ad74e18b3f5..55119e4302a 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index a97ac583f7e..53eee3d65d7 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 255e46c5a0b..f760938f30d 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index 6cb5533baab..ab41092b7d3 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 36ccce4fd28..13f519786d8 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index a4e3a01d661..8fabfe521da 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 54259cfb415..98d613e6e5b 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index 567d318a48c..245efe820d2 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index 7ba00e65030..d4a00a4ddc1 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index b762fd08979..06f3ea60dc8 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index 655df9a49cb..1baea37e4fb 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index bd98569949d..eafb5463e9e 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 608db8330a2..8b963160138 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 2748c8c881c..703a0ea266c 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index e7c0f46a6a1..4c1f82e1018 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index a6735d0a3a7..34dc2a763d7 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index 782c47e313f..32f7db99fff 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index 29c506031b1..de9906bd14b 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index c3894c044db..853cc5d2fef 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index 363fc91daac..36ca01f2693 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 7583a2a87bb..09a4a602e8d 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index 3b6d12b9a74..2ea9713dcc6 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 893c2dd7f0e..8a19701a02a 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index c1c6a58c57d..5646c3d5d78 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index 3c774e123ab..afd4215e3aa 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index a342f917f9c..ad78d269177 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 430a7420c17..9a0b93c00c0 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index 79068f850d6..9a80858d45f 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 72917c8627a..bdd3efb63a0 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -148,7 +148,7 @@ msgstr "Es el importe que prevee tener que no puede depreciar" #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "La cantidad de tiempo entre dos amortizaciones, en meses" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 @@ -265,7 +265,7 @@ msgstr "Cambiar duración" #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "El número de amortizaciones para amortizar el activo" #. module: account_asset #: view:account.asset.category:0 @@ -295,7 +295,7 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Amortización del siguiente período" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -346,7 +346,7 @@ msgstr "Buscar categoría de activo" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "meses" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line @@ -609,7 +609,7 @@ msgstr "Método de depreciación" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "Amortización actual" #. module: account_asset #: field:account.asset.asset,name:0 @@ -654,6 +654,10 @@ msgid "" " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" " * Degressive: Calculated on basis of: Residual Value * Degressive Factor" msgstr "" +"Escoja el método a utilizar para calcular la cantidad de líneas de " +"amortización:\n" +" * Lineal: Calculado en base a: Valor bruto / número de amortizaciones\n" +" * Decreciente: Calculado en base a: Valor residual * Factor decreciente" #. module: account_asset #: field:account.asset.depreciation.line,move_check:0 diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index 8d88c7fff8b..136063f4a92 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index 71669cec300..b013e0ee6ac 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 1241afe60ac..b53599903b2 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index f7337b278bf..7af2d4f6aab 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index bc7c394f642..4d0d50ac151 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index d22df540523..c2b71a09865 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index d32b479b54f..27008c02e93 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 9a79cd34da7..a6c224c6972 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index 96bde490bd3..12c00b51238 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index b384cd454eb..933f02940a1 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index 4e0d2ad4dcd..23c04701be6 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 15c0e8a2d6b..397540d9be8 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 3d33736016a..71f03d74170 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index ce965f313d2..9b17b20d924 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index 4dfa72b7ca4..08bf99f9fcf 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index 0da33b8dae6..ba1104275c6 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 85cd10dc5d3..d9e8730c268 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 52d892d506a..cd4a164ae6b 100755 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 7fa9f999650..1055d55afa7 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index ffc7659ab72..4b337c81884 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index ffe6b23677f..81ef611069c 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index 95de1b122b6..b51ebade32f 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 14412f6d13e..3ff11c7df6c 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-29 11:31+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 0948bda37f7..7c81d74b8ec 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index 800927444f7..9f9243195f5 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index b5ecf5e90c5..08fc5b7f2ab 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index 96e138893c7..bd55005bd8d 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index 50bc3fa8636..6f7f35ade7b 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index 21a35eda14a..1c1270307e5 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index 978605534fb..d6d3d5164f6 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index 5a4ff05b8c8..3efec746187 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index 07c31ff858a..8c078df86af 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Información del emisor al beneficiario" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -208,7 +208,7 @@ msgstr "Nombre" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index ab474d6cca9..e3f9f823f93 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index cc532b5743e..34a680da347 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index a456abf69cb..7d70b875848 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index 848a1f87c4c..65382171062 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index e6b92ea64de..a3907c05ac0 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 2d6cb025558..59a2f58e0a9 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index 715785a9138..1d5f9a2cf14 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index 58e04f58119..30910c80dcb 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 8e76d30b9d4..42eb37fbcb7 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index bc158ff240c..beb529093c4 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index c98498178ab..411e1974031 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index c521bb3476a..a228b5af441 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/i18n/nl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Opdrachtgever aan Begunstigde Informatie" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -207,7 +207,7 @@ msgstr "Naam" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index aa4409abd12..f2d6c7aa762 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 80d0534cb10..3b5ff400c52 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index cb824d523e0..33f03111ebf 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index 40da495165b..79b5d433b9c 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index 9fbb8342604..f6726c50999 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 21:58+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index fef0d4e4c64..d4014a9efd4 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index 1de6e0fabda..35805d449e0 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index 15a9ed3e2a9..7e3f6583e49 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index c7a4a17d76e..6db28cd3763 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 5d1d1ab8fb7..bead8c116ed 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 9b81aadfe1f..fcf1f33df29 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index 47009e0b0b8..49ab9405fb5 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index eda6eff9935..34deebf9b9f 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index ac7d9428740..d3778e9ba7d 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index 4cec31dc02a..4f0f1a92969 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index 4f14e4caf8f..dc04f2dd68f 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index eaaf17679f9..bd29fbc8a7a 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index 4fa7c2fb8b2..f3618d75e58 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index 16b494ead6e..cfd1526f04a 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 060912639db..97589f890f8 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 70737f3c3d2..a008f48ee96 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 29f31ff8be9..aad41468bbd 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index c4c542556af..d0de30c0646 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index d2bde9b9e31..25670deae71 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index cd6610b1a8d..7172922afd2 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index c569d440894..12165e33aca 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index 3d779027e2a..2388da96e36 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index ee46c716a7e..1dada31d51c 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index dfc8053497c..07bc384b809 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index 43213a6c749..f97ac32b4b6 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index 696bcf7f3b1..9ad00337861 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index 1c6200cd5f5..b8bad78ea6c 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index 6f7a557673a..fb6862778f2 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 679483c9c46..2e8fbc61656 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 5bdbb8b783c..83e73e7c69b 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index b51abc312c7..6840d3addc2 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index aed0639f480..11367351bdb 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index a8f51fe3eaf..2b9dc601cc4 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 643e379c950..2cdab49e195 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 9a9fb5af3f3..45446459ac2 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 8d9a67c629a..6b84b1c74bd 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index f64af8ae68d..61dc6b38478 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 3edf6782de0..62b28107134 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index 43f3074773e..4c58286de9f 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index 8846b0fbecf..2176041d6f5 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index bc2cd3fa16e..baef575a7b1 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index 29b329afb29..dfa1cf18cfa 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index fa9b6c5af8a..8c7faa28da0 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index f56ebecb05a..d4d52bd5715 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 658758d0868..a873a376a09 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 2f73edaf07d..5ff67b15900 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 9bb21a121ed..96dc180da3a 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index 82dd4fdcded..ef037cdeac2 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 03d70827278..7fbfffd971e 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index 0eec212b877..25fc5ee5152 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 5fb9fe9ff20..7953fe25326 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index de23d142a9b..ac0a210da3a 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index 594d98c07dc..be93402d383 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index 6bb32b013c5..c6a5fb7157d 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index 5a8e7112199..bafa3ce2e27 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index d28d2e4eef9..f34abc4cc91 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 092ef249c67..2a52d6a1bfa 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index f60da132318..06c0323b0f2 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index e11a07a07f2..adc04aabde4 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index 0b84f1a1120..d3f890bd773 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index a403aa9fbdc..d84c2528dc5 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index 4773e93dfe1..8870b303fbd 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index a65982fec3b..7a6f52c23ef 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index f3dbbf88da3..87c1fb26d22 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index 3e2b217d82f..f3d68253626 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index 79a1cebac56..89c01f3022a 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index 89fa700dbce..a797d403ec3 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index 879c11fb48f..eb95010b1f9 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 9dc4f333ed3..007b13b7e5b 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 4bd5907a08a..3830328de5e 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index 913a2ee8386..f4ba179b421 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index 3426bf00ce9..33a2ddc043e 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index d9265954f68..e7429b7cc42 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index d9aac72f2e4..955e7f4e26d 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 3879c704a00..12da23342d7 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index 4f68ddd628b..66ea24e5ceb 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index 3305c56e877..c233f8e6d22 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 949aaf3e19f..baef959b83e 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index 8fe782af293..c39a868645f 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index 41ca7358286..348af9fc808 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index 3224118e8f9..cbcab0a269d 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index 9a87b409907..06b9b0eca47 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index cef3a0ca569..99283dba116 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index 2fbc826a11e..e07cc50053c 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 741d8f4600a..0691c6c1f3f 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index de44c51dfb6..f0669651d50 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index fbb636fa721..8efb9290f2e 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 8c9c07ccf9d..9a7a5fb5afc 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index 3d2088c8e69..4cdfd62888c 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index 2415fb5ba07..3a6d5c4aa29 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 05c9e3e4149..76821cb13e6 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 9f6bac4a447..f2933132ca5 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 581865c32ec..f42466b4aae 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index 213ec9c3abb..6e65774b057 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index a10b5c4b951..63a764ea5aa 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 075883ff563..e01500dffea 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 5ff462fc1ad..f73c41ac503 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 01bc4d1ee0d..d5478d56cb0 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index 747bcb20319..12723c636ae 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index 3e9333db960..52b8293b8ec 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 61e86cdcc24..ece43e3ecb4 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index 69b8287e3cf..adbd3da0cc7 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index f9fe88272af..d2ca9bebe61 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:03+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index c1e182f3609..9ae07dbfddc 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index 516effebb5d..19f99348a29 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index 0aaf938f242..45811a5da9e 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index 52cd4a2ce6d..fdca1dab4e1 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index b6a4858f739..b141a5be106 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index 2044b353ef3..0d1330c7a1a 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 8ee6818f0ba..5a1862d1f7a 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index 581a6f3bef3..6406cc7e24c 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index 56457c7cda9..5fa9215547e 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 2626a7e08c2..03de25d645a 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index e6ef2780c7b..bb382a00a1f 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 9072a0fe07f..74ca4ee12be 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index ef771683919..e45003e91ac 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index 58623a3fa06..d874a974046 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index f0eff1f058d..5d9410bcec3 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index 6064c1b85a5..0f8ce0ea907 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index 7cc57c921a5..e4174545d7c 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index 4796f1c7a1c..43e47077bb9 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index b47d30672a6..96392ab5d19 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index bb4a3bf2973..3f5d78c3c52 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index 782a9779094..1a0c505377e 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index 68d2c872234..fee0684846b 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index 6eee3ce61c0..a2e7f0a1c47 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index f7080faeced..ceff82442e0 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index 739d799b779..a2e71b0efab 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-24 05:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index bba96cff484..29c286caeba 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information @@ -25,4 +25,4 @@ msgstr "Kontabilitate-plan minimoa kendu" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Kontuen diagramak" diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index cdfadacafc9..0bf3edb412f 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index ff2d0dbc682..162cdecefa3 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index fba95dda7b7..d0489306d57 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index af233724e06..aa4b9c5e823 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index c5789a046da..a5946a03841 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index c3856de68a5..b781f2c3297 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index 985db6c172e..fd4e133eca7 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index 5102dc3c2ea..953f10b061f 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index c2287080773..d778fe366ae 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index 66ac9e43ca4..6bc4264d02f 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 1613e01ebef..7103fb46b22 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index 8e35fa9665d..f86571d927d 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index aad91f415e0..532c82e102c 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index 21a68f66ff1..ce255206cbb 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index 88f2932a26f..6eb815cb1a2 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index d878c8dde3a..3dd9b1b9df7 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index e5ff094a260..96532ba715c 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index 999dbeb812e..d056805030f 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index 5d5c978ab2d..820b7bc6072 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index d2863e16772..faae90b5724 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index 65af7cf2dae..51bc11df971 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index 5a6e2ee4cd8..0f235b241cd 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index 3e03ea56ce8..de777dae9f5 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index a022f65ac4e..1f9c005a1da 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index f29813e2de9..99a78da8409 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index 13b1b614d9c..da48f9f603c 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index d342c9f6785..f37086c21e9 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index 0789d80b8a2..df0e113dcd6 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index 99e1e760808..f7265a317a1 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index e3379b6e0d5..39f0bdb3962 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index 9b639d47916..291e870e6e2 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 81f9457abd0..1886b81a115 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index f9dfe58a19a..db66424e06c 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 5db50ee8350..4bc9813aaeb 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index d67b60365bb..eb49721480f 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 061727c0bd8..52af379c446 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index e993ab9735c..fc0477490aa 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index 829701ec117..1d495b67c15 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index eb68f4292c2..03a35e77a7c 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index a4e2d5da677..82e52108cb3 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index e95d92a5700..42f2560695a 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index b779825cab4..43ab8c74349 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -58,13 +58,13 @@ msgstr "Cheque en la parte de abajo" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_account_check_write msgid "Print Check in Batch" -msgstr "" +msgstr "Imprimir cheques en lote" #. module: account_check_writing #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "One of the printed check already got a number." -msgstr "" +msgstr "Uno de los cheques impresos ya tiene un número." #. module: account_check_writing #: help:account.journal,allow_check_writing:0 @@ -111,7 +111,7 @@ msgstr "Importe original" #. module: account_check_writing #: field:res.company,check_layout:0 msgid "Check Layout" -msgstr "" +msgstr "Disposición del cheque" #. module: account_check_writing #: field:account.voucher,allow_check:0 @@ -183,12 +183,12 @@ msgstr "Compañías" #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "¡Error!" #. module: account_check_writing #: help:account.check.write,check_number:0 msgid "The number of the next check number to be printed." -msgstr "" +msgstr "Nº del siguiente cheque a ser impreso." #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -216,7 +216,7 @@ msgstr "Comprobante contable" #. module: account_check_writing #: view:account.check.write:0 msgid "or" -msgstr "" +msgstr "o" #. module: account_check_writing #: field:account.voucher,amount_in_word:0 @@ -226,19 +226,19 @@ msgstr "Cantidad en palabras" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write msgid "Prin Check in Batch" -msgstr "" +msgstr "Imprimir cheques en lote" #. module: account_check_writing #: view:account.check.write:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: account_check_writing #: field:account.check.write,check_number:0 msgid "Next Check Number" -msgstr "" +msgstr "Nº del próximo cheque" #. module: account_check_writing #: view:account.check.write:0 msgid "Check" -msgstr "" +msgstr "Cheque" diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index a892cbf2947..2f8b5891a04 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index 4539e372394..8daa75c8f38 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index 54d479a0746..cd493f51e73 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index cfc8aea4842..7e09f0c80ed 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index acb6945fb6e..65a55df68c7 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index cd55521959c..fdc81281e64 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index cdc13f2f088..05d162322c4 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index fc183b48400..e8fb0f444c0 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index 2b924e92d7d..e2d0a301824 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index dc62f215084..a24d47e724a 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index 88bfdba9123..2956a779882 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index ed8701c8682..879328701b8 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index 13dc4b09008..942f75f53d6 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 832d276852b..75e37566135 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index b7776a5f0c9..7105e29ac1d 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index 55c45489172..41695c70b70 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index d0a88e703b9..b781d00dbfd 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:52+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index 6d3d7b7fcf2..39676212944 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 4621afb16b6..2e12805f98b 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 133e212cb59..84608562f85 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index 8b7c50a9ad4..4e4c52a912b 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index 918d7b9eebd..539591dc4da 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 79669076db1..d715ba3cea7 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 0759bc4b196..2cb4f399c12 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 256ed5a22f9..9da31e28911 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index a2882dbd1b2..97ecb8abe20 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index ad05fa312c2..5e3741e6442 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 513c093f3b9..761e1fbc4b4 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index af460ae9351..bde6fd5600d 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index eef3ca3de3e..a8e3bd26181 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index 9f80d0897b3..debd140dd39 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index d7cf49872e6..82e07565c7d 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -23,7 +23,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} Recordatorio de pago" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -126,6 +126,8 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Ésta es la próxima acción a realizar. Se establecerá automáticamente cuando " +"la empresa llegue al nivel de seguimiento que requiere una acción manual. " #. module: account_followup #: view:res.partner:0 @@ -155,6 +157,26 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Estimado %(partner_name)s,\n" +"\n" +"Estamos decepcionados de ver que a pesar de enviarle un recordatorio, su " +"cuenta está ahora seriamente atrasada.\n" +"\n" +"Es esencial que realice el pago inmediatamente, o de lo contrario tendremos " +"que considerar parar su cuenta, lo que significa que no podremos " +"suministrarle más bienes/servicios a su empresa.\n" +"\n" +"Por favor, tome las medidas adecuadas para realizar el pago en los próximos " +"8 días.\n" +"\n" +"Si hay algún problema con el pago de la factura del que no tenemos " +"conocimiento, no dude en contactar con nuestro departamento de contabilidad, " +"para que podamos resolver el asunto rápidamente.\n" +"\n" +"Se acompañan los detalles de los pagos vencidos a continuación.\n" +"\n" +"Saludos cordiales,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -192,6 +214,37 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Estimado/a ${object.name},

\n" +"

\n" +"Si no ha habido equivocación por nuestra parte, parece que el siguiente " +"importe permanece sin pagar. Por favor, tome las medidas apropiadas para " +"realizar este pago en los próximos 8 días.\n" +"\n" +"Si ha realizado el pago después de que se enviara este correo, por favor " +"ignore este mensaje. No dude en contactar con nuestro departamento de " +"contabilidad.\n" +"

\n" +"
\n" +"Saludos cordiales,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -252,6 +305,12 @@ msgid "" " same customer, the actions of the most \n" " overdue invoice will be executed." msgstr "" +"Para recordar a los clientes el pago de sus facturas, puede definir diversas " +"acciones dependiendo de lo atrasada que sea la deuda. Estas acciones se " +"empaquetan en niveles de seguimiento que son lanzados cuando la fecha de " +"vencimiento de una factura sobrepasa cierto número de días. Si hay otras " +"facturas vencidas para el mismo cliente, se ejecutarán las acciones para la " +"factura más atrasada." #. module: account_followup #: report:account_followup.followup.print:0 @@ -282,7 +341,7 @@ msgstr "Al ser procesado, imprimirá una carta" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "" +msgstr "Pero fecha vencida" #. module: account_followup #: view:account_followup.stat:0 @@ -344,6 +403,47 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Estimado/a ${object.name},

\n" +"

\n" +"\n" +"Estimado %(partner_name)s,\n" +"\n" +"Estamos decepcionados de ver que a pesar de enviarle un recordatorio, su " +"cuenta está ahora seriamente atrasada.\n" +"\n" +"Es esencial que realice el pago inmediatamente, o de lo contrario tendremos " +"que considerar parar su cuenta, lo que significa que no podremos " +"suministrarle más bienes/servicios a su empresa.\n" +"\n" +"Por favor, tome las medidas adecuadas para realizar el pago en los próximos " +"8 días.\n" +"\n" +"Si hay algún problema con el pago de la factura del que no tenemos " +"conocimiento, no dude en contactar con nuestro departamento de contabilidad, " +"para que podamos resolver el asunto rápidamente.\n" +"\n" +"Se acompañan los detalles de los pagos vencidos a continuación.\n" +"

\n" +"
\n" +"Saludos cordiales,\n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -466,7 +566,7 @@ msgstr "Mensaje impreso" #: code:addons/account_followup/wizard/account_followup_print.py:155 #, python-format msgid "Anybody" -msgstr "" +msgstr "Cualquiera" #. module: account_followup #: help:account_followup.followup.line,send_email:0 @@ -508,6 +608,8 @@ msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." msgstr "" +"Puede asignar un usuario a este campo de manera opcional, lo que lo hará " +"responsable para la acción." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results @@ -566,6 +668,8 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" msgstr "" +"Si no se especifica en el próximo nivel de seguimiento, se enviará con la " +"plantilla de correo electrónico por defecto" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 @@ -590,6 +694,10 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" +"Ésta es la fecha en la que se necesita un seguimiento manual. La fecha se " +"establecerá a la actual cuando la empresa llegue a un nivel que requiera una " +"acción manual. Puede ser práctica establecerla manualmente por ejemplo para " +"ver si se cumple lo prometido." #. module: account_followup #: view:res.partner:0 @@ -650,6 +758,36 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Estimado ${object.name},

\n" +"

\n" +"A pesar de varios recordatorios, su cuenta aún no está arreglada.\n" +"A menos que haga el pago completo en los próximos 8 días, podrán tomarse " +"acciones legales para la recuperación de la deuda sin más notificaciones.\n" +"Confiamos en que está acción no sea necesaria y los detalles de los pagos " +"vencidos se muestran a continuación.\n" +"En caso de alguna consulta con respecto a este asunto, no dude en contactar " +"con nuestro departamento de contabilidad.\n" +"

\n" +"
\n" +"Saludos cordiales,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -682,11 +820,27 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Estimado/a %(partner_name)s,\n" +"\n" +"A pesar de varios recordatorios, su cuenta aún no está arreglada.\n" +"\n" +"A menos que haga el pago completo en los próximos 8 días, podrán tomarse " +"acciones legales para la recuperación de la deuda sin más notificaciones.\n" +"\n" +"Confiamos en que está acción no sea necesaria y los detalles de los pagos " +"vencidos se muestran a continuación.\n" +"\n" +"En caso de alguna consulta con respecto a este asunto, no dude en contactar " +"con nuestro departamento de contabilidad.\n" +"\n" +"Saludos cordiales,\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Importe adeudado" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -727,6 +881,9 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"A continuación está el historial de las transacciones de este cliente. Puede " +"marcar \"No seguir\" para excluirlo de las siguientes acciones de " +"seguimiento." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -776,7 +933,7 @@ msgstr "Haber" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 msgid "Amount Overdue" -msgstr "" +msgstr "Importe atrasado" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -824,6 +981,34 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Estimado/a ${object.name},

\n" +"

\n" +"Si no ha habido equivocación por nuestra parte, parece que el siguiente " +"importe permanece sin pagar. Por favor, tome las medidas apropiadas para " +"realizar este pago en los próximos 8 días.\n" +"\n" +"Si ha realizado el pago después de que se enviara este correo, por favor " +"ignore este mensaje. No dude en contactar con nuestro departamento de " +"contabilidad.\n" +"

\n" +"
\n" +"Saludos cordiales,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -864,6 +1049,18 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Dear %(partner_name)s,\n" +"\n" +"Si no ha habido equivocación por nuestra parte, parece que el siguiente " +"importe permanece sin pagar. Por favor, tome las medidas apropiadas para " +"realizar este pago en los próximos 8 días.\n" +"\n" +"Si ha realizado el pago después de que se enviara este correo, por favor " +"ignore este mensaje. No dude en contactar con nuestro departamento de " +"contabilidad.\n" +"\n" +"Saludos cordiales,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 @@ -946,6 +1143,9 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" +"Esta acción enviará correos electrónicos de seguimiento, imprimirá las " +"cartas y establecerá las acciones manuales por cliente, de acuerdo a los " +"niveles de seguimiento definidos." #. module: account_followup #: field:account_followup.followup.line,name:0 @@ -1030,6 +1230,21 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Estimado/a %(partner_name)s,\n" +"\n" +"A pesar de varios recordatorios, su cuenta aún no está arreglada.\n" +"\n" +"A menos que haga el pago completo en los próximos 8 días, podrán tomarse " +"acciones legales para la recuperación de la deuda sin más notificaciones.\n" +"\n" +"Confiamos en que está acción no sea necesaria y los detalles de los pagos " +"vencidos se muestran a continuación.\n" +"\n" +"En caso de alguna consulta con respecto a este asunto, no dude en contactar " +"con nuestro departamento de contabilidad.\n" +"\n" +"Saludos cordiales,\n" #. module: account_followup #: help:account_followup.print,partner_lang:0 @@ -1092,7 +1307,7 @@ msgstr " carta(s) en el informe" #. module: account_followup #: view:res.partner:0 msgid "Partners with Overdue Credits" -msgstr "" +msgstr "Empresas con créditos vencidos" #. module: account_followup #: view:res.partner:0 diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index f34fa924ea0..9cee440996b 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 88366ebf8a2..a1b7939543e 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index 231c2d29eca..0e507231d0b 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 63159554ce3..e56e4e1f416 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 393e4600f3a..bdbd98ad094 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index cdef368259e..9d731f87ebf 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index 4e7f9b95087..4d1654b1b29 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index 1fcae941d42..e287f8684e6 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index cec84ab0981..a8841cca36f 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index fba0229ad32..ef98e93084e 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index 8e1f4d60e30..bb39c7524c0 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 35eed70b925..987a15f3ce7 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index fe045b8aa91..9601da3f4c5 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -285,7 +285,7 @@ msgstr "Se eseguito, verrà stampata una lettera" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "" +msgstr "Scadenza peggiore" #. module: account_followup #: view:account_followup.stat:0 @@ -550,7 +550,7 @@ msgstr "Ricerca Sollecito di Pagamento" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Linea movimento conto" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 @@ -692,6 +692,24 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Gentile %(partner_name)s,\n" +"\n" +"Nonostante diversi solleciti, la Vostra posizione contabile non è stata " +"ancora risolta.\n" +"\n" +"A meno che il pagamento completo non sia realizzato nei prossimi 8 giorni, " +"verrà intrapresa l'azione legale per il recupero del credito senza ulteriore " +"preavviso.\n" +"\n" +"Confido che questa azione non si renda necessaria indichiamo, a tal scopo, i " +"dettagli dei pagamenti da effettuare qui sotto.\n" +"\n" +"In caso di qualsiasi domanda in merito, non esitate a contattare il nostro " +"ufficio contabilità.\n" +"\n" +"Cordiali saluti,\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 @@ -706,7 +724,7 @@ msgstr "Ultimo Sollecito di Pagamento" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Scarica lettere" #. module: account_followup #: field:account_followup.print,company_id:0 @@ -726,6 +744,8 @@ msgid "" "When processing, it will set the manual action to be taken for that " "customer. " msgstr "" +"Quando processato, verrà impostata una azione manuale da prendere per quel " +"cliente. " #. module: account_followup #: view:res.partner:0 @@ -871,6 +891,18 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Gentile %(partner_name)s,\n" +"\n" +"Se non abbiamo commesso un errore, sembra che il seguente importo non sia " +"ancora stato pagato. Prego prendete le appropriate misure nell'ordine di " +"portare aveti qesto pagamento nei prossimi 8 giorni.\n" +"\n" +"Nel caso il pagamento sia già stato predisposto prima dell'invio della " +"presente, prego ignorate il messaggio. Non esitate a contattare il nostro " +"personale contabile in merito.\n" +"\n" +"Cordiali saluti,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 @@ -1057,6 +1089,11 @@ msgid "" "installed\n" " using to top right icon." msgstr "" +"Scrivete qui l'introduzione nella lettera,\n" +"in accordo col livello di follow-up. E' \n" +"possibile usare le sequenti keywords nel testo. Non \n" +"dimenticare di tradurre in tutte le lingue installate\n" +"utilizzando l'icona in alto a destra" #. module: account_followup #: view:account_followup.stat:0 @@ -1089,7 +1126,7 @@ msgstr "Statistiche Sollecito di Pagamento per Partner" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " letter(s) in report" -msgstr "" +msgstr " lettera(e) nel report" #. module: account_followup #: view:res.partner:0 @@ -1115,6 +1152,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliccare per definire i livelli follow-up e le loro azioni correlate.\n" +"

\n" +"Per ogni step, specificare le azioni che dovranno essere intraprese e i " +"giorni di ritardo.\n" +"E' possibile usare i messaggi modello, di stampa e invio mail, per inviare " +"specifici \n" +"messaggi al cliente.

\n" +" " #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -1125,7 +1171,7 @@ msgstr "Lettera di Sollecito di Pagamento di " #. module: account_followup #: view:res.partner:0 msgid "The" -msgstr "" +msgstr "Il" #. module: account_followup #: view:account_followup.print:0 @@ -1180,12 +1226,12 @@ msgstr "Stampa di prova" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": Nome utente" #. module: account_followup #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Contabilità" #. module: account_followup #: field:account_followup.stat,blocked:0 diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 1659e645616..893fec230ba 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index 51daeb25e22..a1db7651bac 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index a355af41bd6..0d57e1a5499 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index e6efa45496e..8a25b89e3db 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index c9688d3aba9..eb6d8638265 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index ef7d47c4fda..d00a3ba4ed3 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index a235d998353..d861a681199 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index dad0538adc5..14996a92720 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index c8c218aa770..0cdd1803f0a 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index c5fc8ac200b..594668cdfc2 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index ddfef55c25f..6fc78c46605 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index b098bca1395..e9db8e6ff8b 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index 365b76f95fb..3771ae2e394 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index 03d6ccce607..c2139733110 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-03 14:56+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index f832d037fee..95e8b3d22fa 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index 3b920e7fa49..6d5f72e35d6 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index ec77958dbc3..28fac6760e5 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index 3d0f2b6a6b0..00252524163 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index 931eca955c6..ecffa6e1748 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index fdc9b02eadd..1b361029133 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 76af6bf563b..87857b48cf8 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 8efe8b68e35..1d68ed8a8d4 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index 3f8ee87062a..6b774627ca2 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -23,7 +23,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} 支付提醒" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -34,7 +34,7 @@ msgstr "最大跟踪级别" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "基于...分组" +msgstr "分组..." #. module: account_followup #: field:account_followup.print,followup_id:0 @@ -70,7 +70,7 @@ msgstr "标记为完成" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 msgid "Action To Do" -msgstr "" +msgstr "动作" #. module: account_followup #: field:account_followup.followup,company_id:0 diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 299603bbcf3..b9a751877d9 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 9f0391acc43..c0c1e4f2f2d 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index ced1928f644..0f2e0411073 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index 124b1349f52..4dcfd951306 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index 433e9f2b900..b643064368b 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index f7dd5ef94e6..0a7774b98d9 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 94642ab8e92..f2f9cc68e1d 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 22c38e80426..b6aea5708b0 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index bb50fd9144d..2d1dde67acf 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index b5e87bf7a2e..58da925e2f7 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index 7a308624fa1..a0de9a85672 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index c4c2a06beb0..e573e8a07cf 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 9a91a233f1a..e5c47fd2e95 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index b0a86227eab..bc10a207d93 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index 1e4ed61485d..2a2931633f1 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index d6a739530c3..7166031ce03 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index 651b4b37575..595ff1ff20e 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index 73c0e0e1a81..a503be2f7f1 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index f9f77e73cf5..6a4fb2b23ec 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index 278f49daa62..d178bb88529 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index 9ca6b07e414..9884143e28c 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index a98e114190f..c1032908d1d 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index 8c47c6d978f..d13d665566c 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index a623702f490..a0b338de1ee 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 137cf42ee8e..abe270cc95a 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index c096fb360e6..3c115216984 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index 2c266441e1f..d3ab24cb10e 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index 927b1e4faec..06e27012d24 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index c14741a0d7f..9b5e4f7a2fb 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index b7f0cd5be17..475714fc17f 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index c46d5352223..ac79f4cbe9f 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index a3982942c29..49923005747 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index 890a71acea7..d7229571481 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 790e3c8607c..813f0b65590 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index 41586e0e74c..8298a338298 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 1bb80212280..ec587353031 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index ec4bf3557ec..879683b1ccb 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index 3de2904b457..5a179665fc4 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index f3e75b51935..25eda741afc 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 4a19e7f95b5..d363a6d913f 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -82,7 +82,7 @@ msgstr "Компания" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Учет / платежи" #. module: account_payment #: selection:payment.line,state:0 @@ -124,13 +124,15 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Нельзя отменить счет который уже импортирован в платежное распоряжение. " +"Удалите его из платежного распоряжения: %s" #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: account_payment #: report:payment.order:0 @@ -220,7 +222,7 @@ msgstr "Структурировано" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "Импорт платежей" #. module: account_payment #: view:payment.line:0 @@ -262,7 +264,7 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "Дата создания" #. module: account_payment #: help:payment.mode,journal:0 @@ -368,7 +370,7 @@ msgstr "Заполнение платежного поручения" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Нео пределен партнер в проводке." #. module: account_payment #: help:payment.mode,name:0 @@ -400,7 +402,7 @@ msgstr "Черновик" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: account_payment #: help:payment.line,communication2:0 @@ -447,7 +449,7 @@ msgstr "Искать" #. module: account_payment #: field:payment.order,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Ответственный" #. module: account_payment #: field:payment.line,date:0 @@ -462,7 +464,7 @@ msgstr "Всего:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "Дата выполнения" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -542,7 +544,7 @@ msgstr "Отменить" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Банковский счет назначения" #. module: account_payment #: view:payment.line:0 @@ -580,7 +582,7 @@ msgstr "Назначение 2" #. module: account_payment #: field:payment.order,date_scheduled:0 msgid "Scheduled Date" -msgstr "" +msgstr "Запланированная дата" #. module: account_payment #: view:account.payment.make.payment:0 @@ -675,14 +677,14 @@ msgstr "Оплатить" #. module: account_payment #: field:payment.order,date_prefered:0 msgid "Preferred Date" -msgstr "" +msgstr "Предпочтительная дата" #. module: account_payment #: view:account.payment.make.payment:0 #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "или" #. module: account_payment #: help:payment.mode,bank_id:0 diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index f75e39dcc6c..f83e45f72f5 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-02 14:35+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index 20619d2ebf3..4e10ccc823d 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index ded8397e1b3..f8aca03a48b 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index 1fc0c7667fe..a4eea1ebc83 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index 025868288a3..b460013cecc 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 3d9dc9bea2c..c47bdb7c6b3 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:04+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index a181ccf15f1..c555f5443a7 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index 096fd1865b0..c75251b20a7 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 483e00a0889..122a2d058c0 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index 06368419937..97fe9821a1e 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index 3a749f8abed..1e0d19e489c 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index 33cc2f0cbc7..4eb887d24e2 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index b6e2a211587..3ca83f57edf 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index 29aed9e6976..bc1f7698bb9 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 43b2b1133e3..43baf9adc15 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index d70fc93bac7..4b9ff70fa34 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index aaaafde056e..cc9a526ae0c 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index 6e848babe78..b656897c446 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index 6066fb42364..937d61f3d7d 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index d74b215b146..a61118b818f 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index 3104a8e2199..4eecfe44640 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index 9ca66b69025..7104f7410fa 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index dc1cf321747..bf4d2132da4 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index f650bf5bd63..3a5a69cd1bd 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index 69359bafaa3..03df291c64b 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index 4cb286c2f6d..353348e0f30 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index 8ce36ea1f94..1d8a7c4e2d4 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 50a202fd1ce..4b3ac1c6a3b 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index 13888d9bdd8..ea8546ebe0e 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index 2f409b3897f..3d49aa6d770 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index 0fab1f55eef..6c20f092586 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 2778da42bba..1f2030bf91c 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 314358298bd..4a3459e4ccb 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index 5f2099a0cd6..fdd96c56aaf 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 9234d778968..e220f53a430 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index a0bbb120bc4..803a689dff6 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index b7fe03ddf7d..32a09f63939 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index 61f4387d961..ee615ab2ddd 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 3f03208e7aa..29368843c95 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-27 18:09+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index f175dd99506..dd4eccc38d7 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index a291a734c64..8a8736fa5d8 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index e0cd8441bca..7a53d68a6df 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index c024f133caa..43236777af3 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index 9b4460fa7fe..8f4f82d9517 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index 408e31397e7..2cd3b6306fe 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index fb90bf279df..1cdbd014cc4 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index 062e57cb5bd..b0c6f3885f6 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 3cf25e9e70e..da2bddefde6 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:35+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index 9ed5c37e743..9c142a2833c 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index 3a3ee9449b8..863cc2e460e 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index c8855b897b5..d9e9c2ef8d8 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index ad8ebb28518..49c35021d8b 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index 90a9fdb18d8..fc4c4cf57c7 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 1d7c9b6afe7..84ca374799e 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 17:53+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index b6e064f3dbd..67a4e4ef91a 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 3766d527a90..840e59e31aa 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 321742c1203..6d273f316a4 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index a3d22bba34a..14c55c30ba7 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 8e4477e9abf..1355908bfbc 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index d6cb78a078c..6f0e908dbab 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index f723a8a8d99..aeb701f45e4 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index 4031b98ad90..11a41e83e2b 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index d8217bd6fef..31e38480ea3 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -150,7 +150,7 @@ msgstr "Validar" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Pagos a proveedores" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -225,7 +225,7 @@ msgstr "Mensajes" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Recibos de compra" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -368,7 +368,7 @@ msgstr "Importar facturas" #: code:addons/account_voucher/account_voucher.py:1098 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Línea de comprobante errónea" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -468,6 +468,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un nuevo pago de proveedor.\n" +"

\n" +"OpenERP le ayuda a gestionar fácilmente los pagos que hace y los saldos " +"pendientes que necesita pagar a sus proveedores.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -761,7 +768,7 @@ msgstr "Agosto" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Validar pago" #. module: account_voucher #: help:account.voucher,audit:0 @@ -803,7 +810,7 @@ msgstr "Pagado" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Recibo de ventas" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -862,7 +869,7 @@ msgstr "¿Pagos previos?" #: code:addons/account_voucher/account_voucher.py:1098 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "La factura que iba a pagar ya no es válida." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -901,14 +908,14 @@ msgstr "Por favor defina una secuencia en el diario." #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Pagos de cliente" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Análisis de los recibos de venta" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1305,7 +1312,7 @@ msgstr "Abrir balance" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "Estado cambiado" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1000 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 6b4aef84389..65671e10138 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index aefb92b15ee..3b8a1bfdf5d 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index 80c0e969b05..c61bb330459 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 94965ac60ca..fcf961f6382 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 8c3f6ba5957..9febf46a16d 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 63f3b3f3a7f..79757bbe705 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 463cc41b861..1dd199571e7 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 8d0db3b777e..90b2edb414e 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index c04154651f4..cdf53ee7d24 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index a8ca7e19870..02eccec1b50 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index cad2ce63f8f..83c93b3d856 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 50796f84c0f..ad59353b6b3 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -601,7 +601,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Kifizetés" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index eea420d4c4b..4419b793a8b 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 98cf38e1d4e..918cc4bc0a1 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index 45ba2525057..a6e8f4998d3 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 9e3e54c3c63..306c73015af 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index b0f0571de29..52b4c7d935c 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index b224ccbeb9d..78f8b0fd93f 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index 32a94c55386..1dd56c7722b 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 0bf79d8a345..129bd241fb6 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index c2e0595e610..a809b3c826c 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index b583e0c59a5..c516dfaa53e 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 5b829ed3e24..467da301734 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -147,7 +147,7 @@ msgstr "Zatwierdź" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Płatności od dostwców" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -160,6 +160,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij, aby zarejestrować rachunek zakupu. \n" +"

\n" +" Kiedy zatwierdzisz rachunek od dostawcy, to\n" +" będziesz mógł zarejestrować i skojarzyć płątność\n" +" do tego rachunku.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -215,7 +223,7 @@ msgstr "Wiadomości" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Rachunki od dostawców" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -270,6 +278,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij, aby zarejestrować rachunek sprzedaży.\n" +"

\n" +" Kiedy rachunek jest zatwierdzony, to możesz\n" +" kojarzyć z nim płatność.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 @@ -314,6 +329,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Zawiera podsumowanie wypowiedzi (liczbę wiadomości, ...). To podsumowanie " +"jest bezpośrednio w formacie html, aby można je było stosować w widokach " +"kanban." #. module: account_voucher #: view:account.voucher:0 @@ -347,7 +365,7 @@ msgstr "Importuj faktury" #: code:addons/account_voucher/account_voucher.py:1098 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Błędna pozycja rachunku" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -399,7 +417,7 @@ msgstr "Rachunek od dostawcy" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Obserwatorzy" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -446,6 +464,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij, aby utworzyć płatność do dostawcy.\n" +"

\n" +" OpenERP pomaga śledzić twoje płatności i wskazywać " +"płatności, które powinieneś dokonać swoim dostawcom.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -495,6 +520,14 @@ msgid "" "\n" "* The 'Cancelled' status is used when user cancel voucher." msgstr "" +" * Stan 'Projekt' oznacza, że użytkownik jeszcze pracuje nad wprowadzeniem " +"dokumentu. \n" +"* Stan 'Pro-forma' oznacza, że rachunek został wystawiony bez numeru. " +" \n" +"* Stan 'Zaksięgowane' oznacza, że dokument został zatwierdzony, posiada swój " +"numer i zapisy księgowe. \n" +"* Stan 'Anulowano' oznacza, że użytkownik zrezygnował z wprowadzania tego " +"dokumentu." #. module: account_voucher #: field:account.voucher,writeoff_amount:0 @@ -544,6 +577,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij, aby zarejestrować nową płatność. \n" +"

\n" +" Wprowadź klienta i metodę płatności, a później utwórz " +"ręcznie\n" +" rekord płatności lub OpenERP zaproponuje ci automatyczne\n" +" uzgodnienie płatności z otwartą fakturą lub rachunkiem\n" +" sprzedaży.\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -725,7 +768,7 @@ msgstr "Sierpień" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Zatwierdź płatność" #. module: account_voucher #: help:account.voucher,audit:0 @@ -767,12 +810,12 @@ msgstr "Zapłacono" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Rachunek dla klienta" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Jest obserwatorem" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -826,7 +869,7 @@ msgstr "Poprzednia płatność ?" #: code:addons/account_voucher/account_voucher.py:1098 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Faktura, którą chcesz zapłacić, nie jest poprawna." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -865,14 +908,14 @@ msgstr "Zdefiniuj numerację w dzienniku" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Płatności Klientów" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Analiza rachunków dla klientów" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1028,6 +1071,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Z tego raportu możesz dowiedzieć się o kwotach\n" +" zafakturowanych klientom, jak również o czasach płatności.\n" +" Narzędzie do wyszukiwania może być stosowane do\n" +" dostosowania tej analizy do konkretnych twoich potrzeb.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -1255,7 +1305,7 @@ msgstr "Stan początkowy" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "Stan zmieniono" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1000 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 1815aa57879..3ea74a5ce1b 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 8a405919b66..a8fa4fd4e77 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 9164f77caac..beb7b65aa23 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index eb09a3038e9..cd796681b1a 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 7527d2ea76e..6014583893c 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-02 14:37+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index 04bc00d60e2..ff4efdba17e 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index 61d4fabe826..14b7a9a7317 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 38f82ab4721..07f1f0e6dd9 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index f925937b1e7..73595cea6d4 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 061a7ca5664..98d1e1c6722 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index ef6b3c5dbec..f6027f513c7 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 3b96d3f9881..ccbc38d8a36 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index fa0b8dfbba2..be7c4f9519c 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index 15e8b5081e4..aaabf5beff0 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 210440aaf24..064e17c64fc 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index 64379e55f08..f46e80a4e01 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index d2941f5b698..239fc29db79 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index 892097a6b1d..c666b1b2c1a 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 61994b90f59..b6b79a18f56 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index cac8da89e89..248f8f327df 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index ea10cd7e1a5..4d8da3e6c18 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index a4871fb57d5..1c1e90aaae9 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 54bb05bdcf4..15e2ce18766 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 9515c992730..aef5e553a41 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -119,7 +119,7 @@ msgstr "Cerrado" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Contrato a renovar" #. module: analytic #: selection:account.analytic.account,state:0 @@ -182,7 +182,7 @@ msgstr "Mensajes e historial de comunicación" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened msgid "Stage opened" -msgstr "" +msgstr "Etapa abierta" #. module: analytic #: help:account.analytic.account,quantity_max:0 @@ -224,7 +224,7 @@ msgstr "Usuario" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending msgid "Contract pending" -msgstr "" +msgstr "Contrato pendiente" #. module: analytic #: field:account.analytic.line,date:0 @@ -234,7 +234,7 @@ msgstr "Fecha" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Contrato finalizado" #. module: analytic #: view:account.analytic.account:0 @@ -299,12 +299,12 @@ msgstr "Haber" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Contrato abierto" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed msgid "Contract closed" -msgstr "" +msgstr "Contrato cerrado" #. module: analytic #: selection:account.analytic.account,state:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 2b29acaca9a..bfddc37ce9f 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 7ac4bd804c4..b66875355ab 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index 7184b7b0dff..1191bfb5b53 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 81b58fafe1a..c9d7d62b5f8 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 4dce389f369..e03060eb5a4 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index dce25f4b09c..6ba9c4a9e3a 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index c58b066675e..0fd524a21a2 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index bfc351addb8..ee0503745cf 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index ba84e3be61f..37220bd4ed0 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 50652039514..96d9324fa40 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index d9acb3bc8f3..744b0998140 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 9804c2ad6c6..85673bb0513 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index 3e092901c89..61f095463ba 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 1bae39074eb..282f74b384b 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 0f042e6682d..278db91c99d 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index 6c0bb039bd7..39c8667cc1a 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 78f1df23430..974ab0a5c15 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index 360f2d4bc47..2484a99edaa 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 08b04d76003..fa65f56c5cc 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 67f01e03a06..cc0d1f9a61f 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index a54c435e893..d03159768a0 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -8,14 +8,14 @@ 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-01-15 19:11+0000\n" +"PO-Revision-Date: 2013-01-17 18:49+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -141,13 +141,13 @@ msgstr "Managerul de proiect" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: analytic #: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copie)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -163,12 +163,12 @@ msgstr "Descriere" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje necitite" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Eroare! Nu puteti crea conturi analitice recursive." #. module: analytic #: field:account.analytic.account,company_id:0 @@ -179,17 +179,17 @@ msgstr "Companie" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Reinnoire" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened msgid "Stage opened" -msgstr "" +msgstr "Starea deschisa" #. module: analytic #: help:account.analytic.account,quantity_max:0 @@ -197,6 +197,8 @@ msgid "" "Sets the higher limit of time to work on the contract, based on the " "timesheet. (for instance, number of hours in a limited support contract.)" msgstr "" +"Seteaza limita superioara a orelor de lucru la un contract, pe baza fiselor " +"de pontaj. (de exemplu, numarul de ore intr-un contract de sprijin limitat.)" #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -218,7 +220,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -228,7 +230,7 @@ msgstr "Utilizator" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending msgid "Contract pending" -msgstr "" +msgstr "Contract in asteptare" #. module: analytic #: field:account.analytic.line,date:0 @@ -238,12 +240,12 @@ msgstr "Dată" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Contract Finalizat" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Termeni si Conditii" #. module: analytic #: help:account.analytic.line,amount:0 @@ -257,7 +259,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Client" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -267,7 +269,7 @@ msgstr "Ierarhie Cont" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: analytic #: field:account.analytic.account,parent_id:0 @@ -277,23 +279,23 @@ msgstr "Cont Analitic Părinte" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Informatii Contract" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Sablon Contract" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "Unitati Servicii Preplatite" #. module: analytic #: field:account.analytic.account,credit:0 @@ -303,12 +305,12 @@ msgstr "Credit" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Contract Deschis" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed msgid "Contract closed" -msgstr "" +msgstr "Contract inchis" #. module: analytic #: selection:account.analytic.account,state:0 @@ -318,7 +320,7 @@ msgstr "Anulat" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Vizualizare Analitica" #. module: analytic #: field:account.analytic.account,balance:0 @@ -328,12 +330,12 @@ msgstr "Sold" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "De Reinnoit" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -349,13 +351,13 @@ msgstr "Data de sfarsit" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Referinta" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -391,21 +393,23 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, icu scopul de a se introduce in vizualizari kanban." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Tip de Cont" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Data de Inceput" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "" +msgstr "Nu puteti crea linii analitice in vizualizarea contului." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index 2a80326fca4..8ef010e63fa 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index fc36f55564b..4c87e8dc31e 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 13:46+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 971e5e74f5a..72a49c043f2 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index abec7e16492..a9a18c9f397 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index e9f753e5290..d3aedbb66db 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index 7205f7effa9..15b8d5772e6 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index c4c3d9d6c47..49e507f1dae 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index 74ba1b9091e..d0db6d240aa 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 2340636f3bf..61b6ecef0ef 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index 86634bc8760..70114ef11b7 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:05+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 2cadf7d6614..a2f748a3efb 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 6416909cb1d..a2a4b7f0a50 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index e4122563a9c..4160e26e5d3 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index eb1863ba1ce..06755e5f5fb 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index 6de66ef0c1d..48b67f12372 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index 220bc250b35..4e1e368c2a1 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index ec36381a552..3e35e0aa5bc 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index 378230c8028..27d777b0d80 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index 355134e0a8c..15245baa037 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 02fd6d559a6..32218a8e942 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 0ff11c69e2f..b8c712c37ed 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index ae080a60905..60ae8253431 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 16:48+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 87f8f71a6df..0e8139d1b21 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:52+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index bee3ded1e18..4bb1c816b62 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 00cf56d585c..0c622033659 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 42b21f793f8..b272b658a2b 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index 1ab9cb366c1..648c0a7e6a7 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index 549607eaa33..e5a11a2218a 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index fdec18e4325..504208bdf96 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 7f56b4bbe12..b55d9e5b2f0 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index da4e5854c38..9a99ac488ef 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index 44e317625dd..596692d7c34 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index 72396cacbc7..422ab551021 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index cc268ff173a..4a77cc0e704 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index f342713ace2..b4e74b43220 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index e5bf110a47e..adbb49eb3af 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index a92998023f3..4c3dbcd13fa 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index c84cfd30ae1..e05f35bd27e 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index c04244d3982..4e3a414915c 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index ce708d11d92..3ac656af396 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 31212a41ef1..7a52e0a4c0d 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index ad4b6fcd2af..e2c50d0f04b 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index 857d8656c22..7926ee3b1e9 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index ef536236bfe..a71fd4ca711 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index bbb5dc69cdc..eb56b747795 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index bebe8e1100b..02c5a5d26b9 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index fd58b0c1729..a751635a356 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index 587dcfb999d..693d6fc1a45 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 2b017abcd50..b1698e13bba 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index e431fd2a869..62b2bf2ae76 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index 6e40b800bac..c449495a1b9 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index 37bd95bf425..036a2912e87 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index f86f6795326..cd968504d2c 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index 188992f337b..8b35128fda0 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 0905cdb065f..713baeaf434 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index 2d2726d9dfa..2e95b4a2558 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 13d7f302579..f530aa3c376 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 9dbbfe59dc2..5794225ed58 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index ae8cbc376a3..3d1623b7b3f 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index 59f24f38b9d..50171141950 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index aba0fe94cc5..346d9c06b73 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index 86cb5844b39..aed6312b4fd 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index a411f2cc57a..e293898d72c 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index 83fd7f343b8..535ee4db35a 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index 8b6d6866f58..3da316c7880 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index 8a986e366e6..abf61ff6fdb 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index ca481c0c035..4ca191dd58e 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index b4e7baf64ef..93984deb0a1 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index 679d31e0427..cfb698ae31f 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index ea46b8c631a..778cafc6f09 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 43fd606bb86..d3694841c1e 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index 1e944ec778c..fa163050c17 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 4c53c9810e1..cee5441732c 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index ce5914664ce..3d83449217e 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index 9ae3931ddc4..e702aab6cda 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index 1e56cf54aab..beaa5b2ce59 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index 4886a3159ad..9f64ebfa7e1 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 39da90fc633..88024e8a705 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index b6ab64d4b52..dc239ee7388 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -50,6 +50,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de crear, escribir o eliminar campos." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +68,7 @@ msgstr "campo" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Nuevo" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,6 +87,8 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Antes de ejecutar el proceso de anonimización, debería realizar una copia de " +"seguridad de su base de datos." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +133,7 @@ msgstr "desconocido" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "El valor anonimizado es \"ninguno\". Esto no debería pasar." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -166,6 +171,8 @@ msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." msgstr "" +"No se pueden anonimizar campos de estos tipos: binarios, many2many, " +"many2one, one2many, referencia." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -201,6 +208,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"No es posible revertir el proceso de anonimización sin proveer el archivo " +"exportado de anonimización." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -221,6 +230,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de hacer nada." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -267,13 +279,16 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de hacer nada más." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "¡Error!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -306,6 +321,7 @@ msgstr "Iniciado" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" +"La base de datos ya está anonimizada. No puede anonimizarla otra vez." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index 753a4315df9..aacff5efe08 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index ccc681af14f..aa2a764afed 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index 7c3067a2dc3..f4199b4d98d 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index 0e35acffb96..2185b2d1255 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 796a74a6c76..3df3c15bda9 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index ec18fb46471..9c967e0e5d2 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index 9df69a93383..0289cea85de 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index f8173fca969..946d7be508c 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index d03dd8ab259..173e2477429 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 5eb7a4bcd8f..e0704e8ae8c 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -336,7 +336,7 @@ msgstr "Completato" #: field:ir.model.fields.anonymization.migration.fix,query:0 #: field:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "Query" -msgstr "" +msgstr "Query" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index 85194d16e87..93db719fd7c 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index 48921c545af..4fd515dd625 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 7febe52c098..2436b604861 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index ca85fd94173..953a3f79a8d 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index bd2e1446b8d..6c6e4d13fcd 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index 47bc510c89d..f426fac0487 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index 2c644720830..e7855c6794b 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index f95e1063e93..6164c522d4c 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -50,6 +50,10 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar criar, escrever ou apagar " +"campos." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +69,7 @@ msgstr "Campo" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,6 +88,8 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Antes de executar o processo de anonimização, você deve fazer um backup do " +"seu banco de dados." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +134,7 @@ msgstr "desconhecido" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "Valor anonimo é Nenhum. Isto não pode acontecer." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -166,6 +172,8 @@ msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." msgstr "" +"Não pode anonimizar campos desses tipos: binary, many2many, many2one, " +"one2many, reference." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -201,6 +209,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"Não é possível reverter o processo de anonimização sem fornecer o arquivo de " +"exportação." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -221,6 +231,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar fazer qualquer coisa." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -267,13 +280,16 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar fazer qualquer coisa." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Erro!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -306,6 +322,8 @@ msgstr "Iniciada" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" +"O banco de dados está atualmente anónimos, você não pode anonimizar " +"novamente." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index 07895f75253..7cc72a5ecaa 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index 88503164be4..36a25f10afc 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index 2b700110ec3..c5e3f2048aa 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index 0dee5aaa2db..0ce1c447706 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index 955706f1c34..f4b69e11cea 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 7ea1bf01c97..9b2ad7ddca3 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index 8b78ebd87d7..3814c913c8b 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index 8f815516f9c..e4e7724e065 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index caaa4128bdd..31d061ec2c8 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index 1545de59e3c..df75d6e89f1 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 28ed49016f8..13530ee0fe0 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index 343f54a6b7f..d6a10eef1b3 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index 44146568a3a..d25555b4f32 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index a754b081af6..010d3720331 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index 8dcefb09ee3..a2dce6d1d5d 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index 043e3de9287..ff62717e5e2 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index 85ae4f95405..b8969fae8c0 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index 4109137ca4f..31fa74f1d0e 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index a4aab21dc70..cb9e15e37c5 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index a282315bb7a..6bc319f6b85 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index f8e09b4fe18..7e0bedd4d8e 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index 47dec43da5c..9e4680b2e70 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index e56d0ae1678..771f7ffc272 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 30b68ca3924..3433f6cb18e 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index 262560b4373..deaa5eb65ec 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index 77730088a11..ba44350821b 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index 950ffc9c907..8de63f84843 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index 0e4bbf6c063..f5acbeaf0ed 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index 847b6b5e3e7..1a93ff8a32c 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index b38d91e0795..74cb9dd4b1c 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index aca5a368408..569b2159443 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index a81bacee040..f0a95fc2e7d 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index 7ef48af33c5..ea1c3083cd2 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index 16f0a291293..c69ef100f62 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index 39237c299c0..d6816f3c746 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index 1496255e43a..7aa7a29d724 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index 93b6bc91ae5..9b4470cf440 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index 4818f29b7da..d8b4fb99270 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index 4460958fda1..5bace39a028 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index 61f74718887..dcc2c38c516 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 02d8a085ad9..3413d74eb9c 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index b952519cc77..5bb90d79a27 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index 07445f4de12..de059e753a3 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index abb6e60e2d5..86e9cfd28b0 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index 3a71114a2bd..815bbb3b5b8 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index 10019bcaa9b..6fbfd7c4aa3 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index 57f7ddf9b14..c06a340aeef 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index 7f6dd584a33..d9f395af5b6 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index c8689e69f90..74070235544 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index 51fb6806967..414ae8fcef5 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 190bd600fdd..975ee7ef63d 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index e8bbaee473b..254c112853c 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index 45fbe5dc8a3..bed249e6c71 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index d2eb178c440..33c5d76bcf4 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index 7dac22a208f..9ac6e53beb4 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index e0fe35ff974..3f3ed151fc8 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index 76de56f9e0f..7f6b8b42be0 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 8b463e930fe..3e430fdfc17 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index 0164517fd6c..ffc1ccc894a 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 653580e5948..0ace707a2bf 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index e8d5643177a..4c4f750040c 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 2e55d311ad6..1a953ac167e 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index c8f456e1fc3..de9d5a4d711 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index 4a1e683739d..df9c4b35ec5 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index d2b934977d0..d8562600823 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 912ff2bded3..20563dcd0d7 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 4b861be2a61..735eb813076 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index 7221423852b..a88593c5fb3 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 92a72d9ef2b..50bd39bda8b 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 5d1ceef41ab..b68693ec571 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po new file mode 100644 index 00000000000..95febc89ac8 --- /dev/null +++ b/addons/audittrail/i18n/fa_AF.po @@ -0,0 +1,401 @@ +# Dari Persian 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-01-17 10:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dari Persian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Old Value Text : " +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:76 +#, python-format +msgid "WARNING: audittrail is not part of the pool" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,log_id:0 +msgid "Log" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: selection:audittrail.rule,state:0 +msgid "Subscribed" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:260 +#: code:addons/audittrail/audittrail.py:347 +#: code:addons/audittrail/audittrail.py:408 +#, python-format +msgid "'%s' Model does not exist..." +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Subscribed Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: model:ir.model,name:audittrail.model_audittrail_rule +msgid "Audittrail Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: field:audittrail.rule,state:0 +msgid "Status" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +#: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree +#: model:ir.ui.menu,name:audittrail.menu_audit_logs +msgid "Audit Logs" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: view:audittrail.rule:0 +msgid "Group By..." +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "_Subscribe" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: selection:audittrail.rule,state:0 +msgid "Draft" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,old_value:0 +msgid "Old Value" +msgstr "" + +#. module: audittrail +#: model:ir.actions.act_window,name:audittrail.action_audittrail_view_log +msgid "View log" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_read:0 +msgid "" +"Select this if you want to keep track of read/open on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,method:0 +msgid "Method" +msgstr "" + +#. module: audittrail +#: field:audittrail.view.log,from:0 +msgid "Log From" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,log:0 +msgid "Log ID" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,res_id:0 +msgid "Resource Id" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,user_id:0 +msgid "if User is not added then it will applicable for all users" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_workflow:0 +msgid "" +"Select this if you want to keep track of workflow on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,user_id:0 +msgid "Users" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Log Lines" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,object_id:0 +#: field:audittrail.rule,object_id:0 +msgid "Object" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "AuditTrail Rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.view.log,to:0 +msgid "Log To" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "New Value Text: " +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Search Audittrail Rule" +msgstr "" + +#. module: audittrail +#: model:ir.actions.act_window,name:audittrail.action_audittrail_rule_tree +#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree +msgid "Audit Rules" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Old Value : " +msgstr "" + +#. module: audittrail +#: field:audittrail.log,name:0 +msgid "Resource Name" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,timestamp:0 +msgid "Date" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_write:0 +msgid "" +"Select this if you want to keep track of modification on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "AuditTrail Rules" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,object_id:0 +msgid "Select object for which you want to generate log." +msgstr "" + +#. module: audittrail +#: model:ir.ui.menu,name:audittrail.menu_audit +msgid "Audit" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_workflow:0 +msgid "Log Workflow" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_read:0 +msgid "Log Reads" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:77 +#, python-format +msgid "Change audittrail depends -- Setting rule as DRAFT" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,line_ids:0 +msgid "Log lines" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,field_id:0 +msgid "Fields" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_create:0 +msgid "Log Creates" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_unlink:0 +msgid "" +"Select this if you want to keep track of deletion on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,user_id:0 +msgid "User" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,action_id:0 +msgid "Action ID" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Users (if User is not added then it will applicable for all users)" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "UnSubscribe" +msgstr "" + +#. module: audittrail +#: sql_constraint:audittrail.rule:0 +msgid "" +"There is already a rule defined on this object\n" +" You cannot define another: please edit the existing one." +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_unlink:0 +msgid "Log Deletes" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: view:audittrail.rule:0 +msgid "Model" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,field_description:0 +msgid "Field Description" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Search Audittrail Log" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_write:0 +msgid "Log Writes" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "Open Logs" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,new_value_text:0 +msgid "New value Text" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,name:0 +msgid "Rule Name" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,new_value:0 +msgid "New Value" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:223 +#, python-format +msgid "'%s' field does not exist in '%s' model" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "AuditTrail Logs" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Draft Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: model:ir.model,name:audittrail.model_audittrail_log +msgid "Audittrail Log" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_action:0 +msgid "" +"Select this if you want to keep track of actions on the object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "New Value : " +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,old_value_text:0 +msgid "Old value Text" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "Cancel" +msgstr "" + +#. module: audittrail +#: model:ir.model,name:audittrail.model_audittrail_view_log +msgid "View Log" +msgstr "" + +#. module: audittrail +#: model:ir.model,name:audittrail.model_audittrail_log_line +msgid "Log Line" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "or" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_action:0 +msgid "Log Action" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_create:0 +msgid "" +"Select this if you want to keep track of creation on any record of the " +"object of this rule" +msgstr "" diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index e58c54bcb5f..0ce35dff3a3 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 6dcce8c1cf1..dd3bf2a76d2 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 87b44751640..8b5f4aecd2c 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 274224a3abe..b85085fbdef 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index dcf46a15562..532b5ecc45a 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index c7ff0248e87..800c19d6bf1 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index a3d242acd30..5893f549747 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 8ab4d3fa8f9..c0308fadace 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index ff47473f237..5b1355fa99b 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index 33e012eaeff..ef1639ccf0a 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index cb749635aa9..cc759ef4b93 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index fb5caa36ab1..91e5812139f 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index 2ed26bfa978..06a36eccd36 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index e7db68234c3..147394964d7 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index b9d5b566d57..65ec1d2cf20 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 2dc1d107631..feec128c1d9 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 14eef42d054..77bd9d5c618 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index 3eb31230ab8..c369a9909ae 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 74ec5c14fe3..326496492e9 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index fe606a8362d..42a36fcc5d9 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index d3929942edb..5867a5aae62 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 40310add65d..548de2d68b0 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 5caec75abda..30e221a7d91 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index db434992896..5ed53861635 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index b98334b3db1..d76541be665 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 6f395701c76..3cab21e2606 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index ef71e9919af..f27cc6165af 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 5ca6075994b..7aae9a0d120 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index 31bc9f73caa..1e1a2af713b 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 050a319010a..876301f0a25 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index da2d9d1dbcb..c3508584c8c 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index eb2230e2c69..8848a69ecf5 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index 7a764d1b040..b42f3180c58 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 2e500969783..99d1dbd34ad 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index ed0655fe376..2b4a99124aa 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 7b424276ba3..399123c88ac 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index 6129ad00c53..0daafa1543c 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 84a887faa59..4a608c59f3a 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index 72f785332a2..bd65818fbf7 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index 1b9ebdac83e..62dd8ec4bb2 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index 74e766d693c..9431dced1d6 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-25 12:47+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index f6497913889..550025e40aa 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -1,39 +1,28 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_crypt +# Swedish 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: OpenERP Server 5.0.14\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-02-15 15:37+0000\n" -"Last-Translator: Olivier Dony (OpenERP) \n" -"Language-Team: \n" +"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-01-17 23:47+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Krypterat lösenord" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Du kan inte ha två användare med samma användarid !" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "Detta bolag är inte tillåtet för den här användaren" - -#, python-format -#~ msgid "Error" -#~ msgstr "Fel" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Vänligen ange lösenordet !" - -#~ msgid "res.users" -#~ msgstr "res.users" +msgstr "Användare" diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index f0127e6d61a..98c9b8c7b03 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index feb1d8dac53..d0cc0da06b0 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 87f8f2782ed..47312b3bf16 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index dbbfdde436e..7ea7a9597b1 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index 820573b0e01..7f40854a2c1 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index f8ea41d1db0..94cf81a43fe 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 3583f99f085..6330ede68b0 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index b8a6e9c2de6..162ce5c4122 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 80487d924b6..192a271c711 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index eb152ac0413..89a0b603cb8 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index c5cd2a0b09d..0683d463ba1 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index 974c653847f..f58cc1b64f5 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index 058263b393c..35c81723818 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index bded6d89988..af9362065ed 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index fd36ca5e572..685362a9cc6 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index afe043c7f19..66517c69ce4 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index d22417cd550..9aefecf631e 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index c0ff2cb02b3..b4931afd435 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index db4d5fc429c..22383ce21c5 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 0503af7df8f..cb99446928d 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index 748cff62d14..6519bac283f 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 91f11083eb1..0d780d5edc7 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index f4e6e8dcfb0..4af4bc341b9 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index 29cd3ec7a7a..5f2d9e7d15c 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 16:52+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index e80568d9b95..38c0211ecfd 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index e187f9f0032..a55abb1569c 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index 576d1383c82..602cd28302c 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index c8b4315b0c2..7004f3411c9 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 2de69f4af5a..5aa458bc7d1 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index 335bc0be161..39822c1c0bd 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index 89ec52e0554..3773525fc6c 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index e462741f68d..a9b9cc823e3 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index ea8e259e929..aae017cee73 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-24 05:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 3f4da113acc..161d72f0e82 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index 3aa2ec0f95e..66ce5104f8c 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index b6869f936f1..c1e9d766e6f 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index 06a47464002..a45b927c288 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index 3e27ee410e3..aaa99ad8f87 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index cb1c78ab02f..be74da06a03 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 984c0ebbfb3..8026344a61e 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 8f2c41c901d..618b0fbd5a3 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 4d3ca41f1fb..43d1ccae105 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index 5913a4f2961..3b108b5b9d9 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index e819f62140c..7f138b19495 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 83377cc2dc4..6e15d17ede6 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index d53c483d77a..d0eae9afb01 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index 391088cc106..f6a5a6c36a8 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 0404e4e3b18..41b78ee7d3a 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index defbde72b1a..e3aed1bbece 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 7eb8feadaae..9651add56f3 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 09:36+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po new file mode 100644 index 00000000000..305df800a7b --- /dev/null +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -0,0 +1,23 @@ +# Swedish 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-01-17 23:47+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Användare" diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index 700f9e5ea0e..afe0bea328d 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,10 +14,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users msgid "Users" -msgstr "" +msgstr "用户" diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index ac7eb5e0890..5b7873c46dc 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 5db1b47284e..64e5bb44c20 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 07887926db6..0bf2436fc41 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index 3de860f49ba..8b67e65fe39 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index 196ec1ae5ab..231643f50fd 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 7c5575e6e95..aa91f3c75b1 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 83e0e6d236b..e330fef81f8 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index 4e4991b4e77..edce2361c66 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 2d7d7c95d65..13d1c5eba7b 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 09550c9624b..c144242d3e2 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index fa39ef0455b..5dd28f0ef47 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 0c9980a8ce4..c180689486d 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 50d2ed049e3..6e2155ce205 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 1e6b52441ec..290a68817b9 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index 269282966ad..8925ec34233 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index 2af686920cb..b08e0c702f0 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index c50e8ca492a..c9d8ba8c7ea 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 499a73c4eca..b34099a992d 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 22:08+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index e3505408d93..86a8d312df3 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index bb72644b0b3..a58d4b46d58 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:49+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web @@ -38,7 +38,7 @@ msgstr "OpenID" #: field:res.users,openid_url:0 #, python-format msgid "OpenID URL" -msgstr "OpenID URL" +msgstr "OpenID-adress" #. module: auth_openid #. openerp-web @@ -60,24 +60,24 @@ msgstr "Launchpad" msgid "Used for disambiguation in case of a shared OpenID URL" msgstr "" "Används för att skilja mellan olika användare i fallet med en delad OpenID-" -"URL" +"adress" #. module: auth_openid #. openerp-web #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 #, python-format msgid "Google Apps Domain" -msgstr "Google Apps Domän" +msgstr "Google Apps-domän" #. module: auth_openid #: field:res.users,openid_email:0 msgid "OpenID Email" -msgstr "OpenID-epost" +msgstr "OpenID-e-post" #. module: auth_openid #: field:res.users,openid_key:0 msgid "OpenID Key" -msgstr "OpenID Nyckel" +msgstr "OpenID-nyckel" #. module: auth_openid #. openerp-web @@ -96,4 +96,4 @@ msgstr "Google Apps" #. module: auth_openid #: model:ir.model,name:auth_openid.model_res_users msgid "Users" -msgstr "" +msgstr "Användare" diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 97907b1ab07..83ebf9fa532 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index 1acb5cb231c..5be774bd5b6 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index ee45bffa856..1a232f8caeb 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index 4605c944462..92b4ab8a69f 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 4ccfb899caf..0fab6853453 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Tipo de la palabra de ingreso" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -98,7 +98,7 @@ msgstr "Nuevo" #: code:addons/auth_signup/res_users.py:258 #, python-format msgid "Mail sent to:" -msgstr "" +msgstr "Correo enviado a:" #. module: auth_signup #: field:res.users,state:0 @@ -163,6 +163,9 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"No se puede enviar el correo electrónico: no se ha configurado servidor de " +"correo saliente.\n" +"Puede configurarlo en Configuración / Configuración general." #. module: auth_signup #. openerp-web diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 9324c47c91d..f3a440c9b34 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 43a505c89cc..c9c97838650 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index c7eea9ab35d..6e9ccb3d9af 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 3225ed33916..a2dc0d1920f 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index f65d6d4d6a8..4280687ef08 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 65653a259d0..26caba6fe27 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index 02f482dc78d..75f8e9e40d7 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index a561071af3e..df2eda60489 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index 612f7531e83..faeb9584493 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Tipo de token para Inscrição" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -42,7 +42,7 @@ msgstr "Se não marcado, somente usuários convidados poderão inscrever-se" #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings msgid "base.config.settings" -msgstr "Configurações" +msgstr "base.config.settings" #. module: auth_signup #: code:addons/auth_signup/res_users.py:252 @@ -96,7 +96,7 @@ msgstr "Novo" #: code:addons/auth_signup/res_users.py:258 #, python-format msgid "Mail sent to:" -msgstr "" +msgstr "Mensagem enviadas para:" #. module: auth_signup #: field:res.users,state:0 @@ -116,21 +116,20 @@ msgid "" "

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

" msgstr "" "\n" -"

Uma redefinição de senha foi solicitada para a conta OpenERP associada a " -"este e-mail.

\n" +"

Uma redefinição de senha foi solicitada para a conta do OpenERP associada " +"a este e-mail.

\n" "\n" "

Você pode mudar sua senha acessando este " "endereço.

\n" "\n" -"

Nota: Se esta ação não era esperada, você pode seguramente ignorar este e-" -"mail.

" +"

Nota: Se você não solicitou essa alteração, basta ignorar este e-mail.

" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." -msgstr "Por favor informe um nome." +msgstr "Por favor, informe o nome" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_users @@ -161,6 +160,8 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Não é possível enviar email: o servidor de saída não está configurado.\n" +"Você pode configurar em Configurações / Configurações Gerais." #. module: auth_signup #. openerp-web diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index c4ed4dda220..b227dfebf09 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:52+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index b627324a0c5..370bf32b565 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 16:55+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 2d8d31edf1d..550539f0963 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index 0afe2dd4948..071ddb34af7 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index f14ac6dcc56..8cf510a3728 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index ceef073abf2..187d25bc719 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 9ed39042ee2..88973510e46 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index 475398a1b51..ee12dcf6df3 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index b1926cf6f1f..0952e540e3c 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index d716a0c13ec..fc7c04400ff 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index de684a7de53..165a42932ad 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 7a982d34ba5..3e255e21327 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "En proceso" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- En la misma vista \"Búsqueda\", seleccione el menú \"Guardar filtro " +"actual\", introduzca el nombre (por ejemplo, 'Creado el 01/01/2012') y " +"marque la opción \"Compartir con todos los usuarios\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Reglas acción" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Seleccione un filtro o un temporizador como condición." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -49,16 +52,18 @@ msgstr "Responsable" #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." msgstr "" +"Ejemplos: recordatorios de correo electrónico, llamadas a servicios de " +"objeto, etc." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Añadir seguidores" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Establecer responsable" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,21 +72,24 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Retraso después de la fecha de lanzamiento. Puede poner un número negativo " +"si necesita un adelanto antes de la fecha de lanzamiento, como enviar un " +"recordatorio 15 minutos antes de una reunión." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "Test de regla de iniciativa" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Cerrado" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Nuevo" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,7 +104,7 @@ msgstr "Condiciones" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Pendiente" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 @@ -106,7 +114,7 @@ msgstr "Estado" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Filtro para antes de la actualización" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +126,8 @@ msgstr "Regla acción" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Si se encuentra presente, esta condición debe satisfacerse después de la " +"actualización del registro." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +137,12 @@ msgstr "Campos a cambiar" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "El filtro debe estar por lo tanto disponible en esta página." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Filtro para después de la actualización" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +152,7 @@ msgstr "Horas" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Para crear un nuevo filtro:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +173,16 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Las reglas de acción se comprueban cuando se crea o se modifica el \"Modelo " +"de documento relacionado\". El filtro de precondición se comprueba justo " +"antes de la modificación, mientras que el filtro de post-condición se hace " +"después de la modificación. El filtro de precondición no funcionará por lo " +"tanto durante una creación." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Condición de filtro" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +191,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Vaya a la página del \"Modelo de documento relacionado\" y establezca los " +"parámetros del filtro en la vista \"Búsqueda\" (Ejemplo de filtro basado en " +"Iniciativas/Oportunidades: Fecha de creación \"es igual a\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -206,7 +224,7 @@ msgstr "Días" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Temporizador" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,17 +234,17 @@ msgstr "Tipo retraso" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Acciones de servidor a ejecutar" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Si no está marcado, la regla está oculta y no se ejecutará." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -253,6 +271,8 @@ msgstr "Modelo de documento relacionado" msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Si está presente, esta condición debe satisfacerse antes de la actualización " +"del registro." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -299,7 +319,7 @@ msgstr "Fecha creación" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Última acción" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -320,4 +340,4 @@ msgstr "Acciones de servidor" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Asunto" diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 93b8a7f11bb..09681fa64d4 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 0f6a282ce11..fc41289d680 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index a821cab77c7..ec482a37826 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index cbe725a04b0..1dc24c4f8ed 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index a20f21b4cc9..6297918c7a6 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index b6d64afa4ca..d4d0f678e1d 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 57cb1f2556a..abe4ceb3847 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index 81f54216ae4..a7964c244f0 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 406bae0f8f8..fd8b087cf75 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 575e78f21ce..2cbf67bd180 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index 7e75e8b5b78..f1eff971d20 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 18ba45b43cb..3b0acca1211 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 565bdf94ef7..353717ab04b 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index ed3f35d7d26..acadc0bc481 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 7316598d4b6..c4ed6e8e070 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 3c177d956c1..047bf5ca99e 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index c51872314da..ffe2df9d0b7 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 1c1af92412b..70d6a0d226e 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 35c3423e4d4..30b537fb1bd 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" "X-Generator: Launchpad (build 16430)\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 880619dfa65..59712b756b2 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Em Andamento" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Nesta mesma \"Pesquisa\", selecione o menu \"Salvar Filtro Atual\", digite " +"o nome (Ex: Criar o 01/01/2012) e adicione a opção \"Compartilhar com todos " +"os usuários\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Regras da Ação" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Escolha um filtro ou condição de tempo." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +51,17 @@ msgstr "Responsável" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Exemplos: lembretes de e-mail, serviço de objeto de chamada, etc" #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Adicionar Seguidores" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Definir Responsável" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,26 +70,29 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Atraso após a data de disparo. Você pode colocar um número negativo se você " +"precisa de um atraso antes da data de disparo, como o envio de um lembrete " +"15 minutos antes de uma reunião." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Fechado" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" -msgstr "Atraso após a data do disparador" +msgstr "Atraso após a data de disparo" #. module: base_action_rule #: view:base.action.rule:0 @@ -96,7 +102,7 @@ msgstr "Condições" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Pendente" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 @@ -106,7 +112,7 @@ msgstr "Situação" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Antes de Atualizar o Filtro" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +124,7 @@ msgstr "Ações Automáticas" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Se marcado, esta condição deve ser satisfeita após a atualização do registro." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +134,12 @@ msgstr "Campos para Mudar" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "O filtro deve estar disponível nesta página." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Após Atualização do Filtro" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +149,7 @@ msgstr "Horas" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Para criar um novo filtro:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +170,16 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Uma regra de ação é verificado quando você criar ou modificar o \"Modelo de " +"Documentos Relacionados\". O filtro pré-condição é verificado logo antes da " +"modificação, enquanto o filtro de pós-condição é verificado após a " +"modificação. Um filtro de pré-condição, portanto, não funciona durante uma " +"criação." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Condição do Filtro" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +188,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Vá para a página de \"Modelo de Documento Relacionado\" e defina os " +"parâmetros do filtro na visão \"Procurar\" (Exemplo de filtro com base em " +"Prospectos / Oportunidades: Data da Criação \" é igual a \" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -191,7 +206,7 @@ msgstr "Ações Automatizadas" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "Define a ordem de sequência para mostrar a lista de regras." +msgstr "Define a sequência ao exibir a lista de regras." #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -206,7 +221,7 @@ msgstr "Dias" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Contador" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,17 +231,17 @@ msgstr "Tipo de atraso" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Ações do servidor a serem executadas" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Quando desmarcado, esta regra é oculta e não será executada." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -253,6 +268,8 @@ msgstr "Modelo de Documento Relacionado" msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Se presente, esta condição precisa ser satisfeita antes da atualização do " +"registro." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -284,13 +301,13 @@ msgstr "" " Clique para configurar uma nova regra de ação automatizada. " "\n" "

\n" -" Use ações automáticas para criar gatilhos de ações para " +" Use ações automáticas para criar disparos de ações para " "várias telas.\n" " Exemplo: um prospecto criado por um determinado usuário " "poderá ser atribuído\n" -" automáticamente para uma equipe de vendas específica, ou " +" automaticamente para uma equipe de vendas específica, ou " "uma\n" -" oportunidade na qual continua a situação pendente após 14 " +" oportunidade na qual a situação continua pendente após 14 " "dias e seja interessante enviar um e-mail\n" " automático de lembrete.\n" "

\n" @@ -304,7 +321,7 @@ msgstr "Criar Data" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Última Ação" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -325,4 +342,4 @@ msgstr "Ações no Servidor" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Assunto" diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index 09ad3a357fa..61f9447d391 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 0d634b86327..10b0a6908f6 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 9b9c96acb9b..553657fc185 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-31 00:23+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index cf881324b18..22cf97fd316 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index 37c985ae610..ec22dc0b45c 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index b473581bbf0..6539a330234 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index faf9a0bc51d..0e96f8afbb0 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 0c8ac17700c..cf44c941b2b 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 9c9390a62fe..945212a9d8e 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index edc17f2d965..98596137ec1 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index ab5b90ea347..143ce4dc8ae 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 0043120a1b0..34de1445a45 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 01bdb33115d..c7b2fcbd668 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index aca22a04119..1ee87ee4800 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index 9d5674ab33c..314351589ef 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index e2accbac14b..96e0f84bf62 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index b6585ead742..5656d927819 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index 296f60113af..6bb2e21e8fe 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index a281eb6c519..5edcf929b59 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 49adc2f9d0f..f0eed696ebb 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 6b46bf54249..01280234f6b 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -573,7 +573,7 @@ msgstr "URL de caldav" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Asistente de invitación" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1453,7 +1453,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Mensaje" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index 3cbc7d0ff0b..90d92d206fa 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index ff2a2ca0ad2..9921048e7c9 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index f8de2f445d0..7b86d9eb748 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index c54954cb010..ea3552e3958 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index f6c91a46d31..31bef398575 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 2be8e8a4051..7ab58a0b390 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index bae2e72c693..de06560de8f 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index ea8d46548ae..bcc4fbeb55c 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index 72ed48567ad..8e89c79beed 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index 9d90b2daaad..421853ca5f3 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index e2d4e7bf29c..6641bf9ef0e 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index c4b67819f3b..e87f2437a26 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index b94af198bb3..caae142bf93 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index b17e71e35bd..7659d43465b 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index 6559d38b0a4..f9617f4f5a8 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 8158b605013..2ebc73f8c8b 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index 78ba4ff8671..eb9ac8ff2aa 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 314367fb1ea..050ef56419a 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 763491a3dcb..948ff4c152e 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 6cc42da227c..2336df54998 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index 46c753cb138..ef9d39c827f 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index e734735e5b8..79072cdcfc4 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 3fa39193000..37556cc62ea 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 8070a94c900..4852a963dbc 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index b2bee1c1e58..f396ec978ab 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index 93a8e4fb618..a0f7a1e40fb 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 3e619e51cd2..a1376fa3431 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 22:00+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index 67cfa44ef7e..c273eb050b5 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:06+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 424c67dbbd9..f4e97c3cc51 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index b3430da4866..ec7cb1fa057 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index 4098986b159..e416b09730f 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index 2467937fe09..798e37a156d 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index c8c8709b3ea..1fd5c7e47fe 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index d7e14dd7ae2..a32fcd99d70 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index a66b3ad8f27..5b1e260a422 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index fc26f798aea..8e7204eb2fe 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index 5f21d819b9c..f61d41c1b8a 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 67977231dac..2b5f5cc8c30 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index 8a05fc1a3fa..c834c74b73e 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index e53c4295eaa..6192935ebdb 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index 2eb7ece23c9..8c33d99dc35 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index 5b6c722046f..cdef5a68fd5 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index 26602998f3a..73991dded4f 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index 9c957a48861..b9ff950258e 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index f567683aec4..5476c634cbd 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index 40679136809..558879c5f16 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -14,24 +14,24 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "给译者留言" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Gengo 任务 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 "" +msgstr "Gengo 翻译服务不支持这种语言." #. module: base_gengo #: field:res.company,gengo_comment:0 @@ -41,7 +41,7 @@ msgstr "评论" #. module: base_gengo #: field:res.company,gengo_private_key:0 msgid "Gengo Private Key" -msgstr "" +msgstr "Gengo 私人密匙" #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations @@ -51,7 +51,7 @@ msgstr "" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "任务已被Gengo自动审核." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +61,13 @@ msgstr "语言" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "关联到Gengo的评论和活动" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo 同步翻译 (响应)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -75,12 +75,12 @@ msgstr "" msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." -msgstr "" +msgstr "缺少Gengo `公共密匙` 或 `私人密匙`. 在 `设置> 公司 > Gengo参数`中输入Gengo授权参数." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "机器翻译" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -95,13 +95,13 @@ msgstr "" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo 翻译服务级别" #. module: base_gengo #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." -msgstr "" +msgstr "所选Gengo翻译服务不支持这种语言." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -113,22 +113,22 @@ msgstr "" msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." -msgstr "" +msgstr "你可以在这里选择你所需要的Gengo自动翻译级别." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "" +msgstr "重新启用发送任务" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "通过Gengo审核" #. module: base_gengo #: view:res.company:0 msgid "Private Key" -msgstr "" +msgstr "私人密匙" #. module: base_gengo #: view:res.company:0 @@ -138,23 +138,23 @@ msgstr "" #. module: base_gengo #: field:res.company,gengo_public_key:0 msgid "Gengo Public Key" -msgstr "" +msgstr "Gengo公共密钥" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengo同步翻译 (必选)" #. module: base_gengo #: view:ir.translation:0 msgid "Translations" -msgstr "" +msgstr "翻译" #. module: base_gengo #: field:res.company,gengo_auto_approve:0 msgid "Auto Approve Translation ?" -msgstr "" +msgstr "自动审核翻译 ?" #. module: base_gengo #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations @@ -167,7 +167,7 @@ msgstr "" #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "" +msgstr "Gengo授权错误" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -180,7 +180,7 @@ 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 "" +msgstr "注意: 如果翻译状态为 '处理中', 则表示翻译需要在递交到系统之前通过审核. 你应该通过你的Gengo帐户直接完成这一操作" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -189,11 +189,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo 连接失败时显示的信息:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo参数" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index a2f6eada760..8d53b8b5cfd 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index 10e2be13b09..a25a23fae4f 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index 42e57b2e93c..566149b8199 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index 0cb95247ad7..848a4e91539 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index cc51a796956..6c061a2418b 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index 265803e6e8b..c6710ea92da 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index 588334c4325..a1bce82d3a2 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 759ef4528cd..8425f96f61b 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 8ce90a826ed..4bae55eaab7 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index f843d4c765a..3109dfe4355 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 65f992ec33f..938aebcd2a5 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index a18e70271ca..40275ab7e1e 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 094d9c87ad7..0e20abc58e5 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 95aa78c6754..61593b978e0 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 5a5d6b5cdeb..3ca66e5d708 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index 789682c329b..14ea614e4c3 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index 87ac88deb95..d2a69d31a89 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 826b93086c4..5e1bfc6aa95 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index dd19e242ea5..76e0ebf02f2 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index eb3bc2065a8..ffaeab91729 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index cfd61b7daf7..b1aa35ca6fc 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index da377b9cb90..f90f78b90cf 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index 8ae0e6016f7..db0d259cbde 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index 4ebb6dfcebb..32753ae7c67 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 05b38f98dc7..842c29c078c 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 40478b66629..5859edd35b5 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index 9ae68362bfe..e961395f413 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index d60f6516257..a86c9c47ab0 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 321e7a5860f..a73d4894dd5 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index 454a586bce1..eb95b4a41c8 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index cf566e84e28..d334cab46f2 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index 6c813e83277..9f6e7abb461 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index df64438984c..f5bc6353665 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index 330f991dfed..4f36c68086d 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 60c1fa4f621..2465a09d270 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index 30f6aecd9ca..07c8b1c3d85 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 42d4ba76f88..da2d192014a 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index 00f980d80ca..d7e6ea1fe9a 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index c08d22b46d6..25b8408bb2e 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -24,6 +24,9 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Определите, пожалуйста, код БИК/Swift по банку для банковского счёта типа " +"IBAN для создания правильных платежей" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 @@ -39,7 +42,7 @@ msgstr "" #. 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 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index bdde5564ab5..b469421a6bd 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index f7251640894..2accecdfa56 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-29 12:09+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 622332674e2..a9c3883fdb7 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index 00e2ba6653d..07feefc5614 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index 490d96a73c6..ebf89a8ff1b 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index 631e0e1fab3..54de0da7a42 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index 5e43a919a4a..bf9afde60e3 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 6be1f3ea7b6..8ea8ecc1ff3 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index b195441280c..9ea1e61f65a 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index c5b00382a0b..da80424e754 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index daa3c99cf51..c2275a57bbf 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index 76de252803b..bbd90ec7cb3 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 9ecb567eeaf..8937dc4fb38 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index ac59774d613..0cb64d3e3e1 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 2c0c25da0b0..22799c6c135 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index ed6ffc50744..d0d0d7c0c8e 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web @@ -920,6 +920,8 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"¿Cómo puedo importar una relación uno a muchos (one2many - por ejemplo: las " +"líneas de pedido del pedido de venta)?" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 1e602793496..0c39f8400e8 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index 67b5ba2630e..b23098ba885 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index a6c99fd994e..cb21df6c88b 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index 91a452162d4..edef5090c77 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index c455bac0e8d..4dd9671cc40 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 533ba43e947..439c330851b 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index 247d8bfec2d..d6d95540331 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 0ae4eb6264c..fddb0a2b58f 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index 64560953e51..d3e650f6889 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index 15b901e985b..d7732ef6b1f 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web @@ -107,6 +107,9 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Para o país\n" +" Bélgica, você pode usar uma dessas 3 " +"formas de importar:" #. module: base_import #. openerp-web @@ -170,14 +173,14 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:351 #, python-format msgid "Don't Import" -msgstr "" +msgstr "Não Importar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Escolha o" #. module: base_import #. openerp-web @@ -198,33 +201,33 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Pais: o nome ou código do país" #. 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 "Posso importar várias vezes o mesmo registro?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Validar" #. 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 "Mapear seus dados para o OpenERP" #. module: base_import #. openerp-web @@ -235,6 +238,10 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Usar País: Este é\n" +"                         a maneira mais fácil quando os dados vêm de " +"arquivos CSV\n" +"                         que tenham sido criada manualmente." #. module: base_import #. openerp-web @@ -243,7 +250,7 @@ msgstr "" msgid "" "What's the difference between Database ID and \n" " External ID?" -msgstr "" +msgstr "Qual é a diferença entre o ID da Database e o ID Externo?" #. module: base_import #. openerp-web @@ -255,25 +262,28 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Por exemplo, a\n" +"                         referência ao país de um contato, p OpenERP propõe\n" +"                         a você três campos diferentes para importação:" #. 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 "O que posso fazer se eu tiver várias correspondências para um campo?" #. 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 "Id Externo,Nome,É uma Empresa" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Algum Valor" #. module: base_import #. openerp-web @@ -283,6 +293,8 @@ msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" msgstr "" +"O arquivo CSV a seguir mostra como importar\n" +"                         fornecedores e seus respectivos contatos" #. module: base_import #. openerp-web @@ -292,6 +304,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Como posso alterar as opções de formato de arquivo CSV quando\n" +"                         salvar em meu aplicativo de planilha?" #. module: base_import #. openerp-web @@ -332,12 +346,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +msgstr "País: Bélgica" #. 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 @@ -353,7 +367,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "Fornecedores e seus respectivos contatos" #. module: base_import #. openerp-web @@ -401,7 +415,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Outra Variável" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index 0562cf43c9c..1158eb73e90 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index b1deb9b003a..12f0ebbfdfb 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index c620aad1eb8..871561305e8 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_import #. openerp-web diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 24fcc209534..5b3f36a7cfe 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index d74809420a6..9b7d80f0c46 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index 847e8c2916f..afaba417a2a 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index a6e33df81e3..ff841cfd976 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index ffca0a872bc..361a6394ba2 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index cde59248d56..a90945e6f69 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 0f2b3d3dee8..3bb2854d2dc 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index 7006e42acb8..bbcbcb7ad09 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index 01b6090612e..d1e29d42e35 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index 0ad8fd64da4..70be4c8cb2a 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 9a521d82eff..5477fc0e86f 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 098d2abc943..17931dcae2d 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index d242726a75c..949dff05031 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 5c5af2b12b0..17ee2ea5d66 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index 6d9f9fa0da1..d588d79a51d 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index 2d98d4d7f46..03b8fbab5cc 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index 594aaf23504..4a7d6d38d11 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index fec3bd068b7..19af4b5dbf5 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index 2e92847112e..abc8bafb539 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index a3beac81e62..c599ea806e4 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index e819c32300b..8fe06d57c6a 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index ed24db9dfd9..e79e36b2a97 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 1fef1133a02..8a4895e255a 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index 088fa1f19a2..b4d88235599 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index 66d826b4200..aba5a3ce5cb 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index b0a0bc76fdc..eb5893b22d9 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index 528062d09b5..5f630c9fc24 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index f30295c7eb3..4ebe9647c62 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index 164ea267324..dd3b3480e57 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 9166541a04c..a20557bc6ba 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index ca28f911b8f..07ff3619cab 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 6946d5cc91d..efad036ff71 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index 0e5796380b8..137454067f3 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index 15e85cbf046..430c7d01fc5 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 10:20+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -181,7 +181,7 @@ msgstr "Отмена" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "или" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index 624b7017709..a31c7f7d0c7 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index a1d9be48993..45375ee222a 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index 3a4ca991c67..8221dea81b2 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:07+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index 00760f15092..17f22ccb9f2 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index 681371a2bd5..951d3320c99 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index 8e25e90ac74..1ddcfc6b0c5 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:56+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -44,7 +44,7 @@ msgstr "Upload the modified report" #. module: base_report_designer #: view:base.report.file.sxw:0 msgid "The .SXW report" -msgstr "The .SXW report" +msgstr ".SXW-rapporten" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_designer_installer @@ -70,17 +70,17 @@ msgstr "titel" #: field:base.report.file.sxw,report_id:0 #: field:base.report.sxw,report_id:0 msgid "Report" -msgstr "Report" +msgstr "Rapport" #. module: base_report_designer #: view:base.report.rml.save:0 msgid "The RML Report" -msgstr "RML rapporten" +msgstr "RML-rapporten" #. module: base_report_designer #: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard msgid "Report Designer" -msgstr "Report Designer" +msgstr "Rapportdesigner" #. module: base_report_designer #: field:base_report_designer.installer,name:0 @@ -102,7 +102,7 @@ msgstr "OpenERP rapportdesigner" #. module: base_report_designer #: view:base.report.sxw:0 msgid "Continue" -msgstr "Continue" +msgstr "Fortsätt" #. module: base_report_designer #: field:base.report.rml.save,file_rml:0 @@ -116,18 +116,18 @@ msgid "" "plug-in in OpenOffice." msgstr "" "OpenObject Report Designer tilläggsfil. Spara denna som en fil och " -"installera den som ett tillägg i OpenOffice/Libreoffice." +"installera det här tillägget för OpenOffice." #. module: base_report_designer #: view:base.report.rml.save:0 msgid "Save RML FIle" -msgstr "Spara RML fil" +msgstr "Spara RML-fil" #. module: base_report_designer #: field:base.report.file.sxw,file_sxw:0 #: field:base.report.file.sxw,file_sxw_upload:0 msgid "Your .SXW file" -msgstr "Your .SXW file" +msgstr "Din .SXW-fil" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -175,12 +175,12 @@ msgstr "OpenERP rapportdesigner installation" #. module: base_report_designer #: view:base.report.sxw:0 msgid "Cancel" -msgstr "Cancel" +msgstr "Avbryt" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "eller" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index 460f466e86c..03d58ab8791 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 8e53d4416e6..368fec65178 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 03f0cbb542a..607ed6c2960 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index 69b24e4b175..c7f93f4a2ad 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index 60d99514bab..e0290b9e8d5 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index e3d3e5a6f92..346071c3e33 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index 3546a76122b..114d9d1be52 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index 6935fddba8b..28a75f1a7e7 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index 5449b921ff9..ed5c6344473 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index 349ca25027b..b7bd75537f4 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 6c93666894e..255327e232a 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index 84b84461784..ba5f822feca 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index b184b5b9b37..08ba48dfe4d 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index 4b866817113..55c2c2506b2 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index 1b80c0019dd..f766e765258 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index dec882871f7..aaf04d26734 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -63,7 +63,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "VENTAS" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -130,7 +130,7 @@ msgstr "En cliente email" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=SU_BASE_DE_DATOS" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -218,6 +218,8 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"El portal público es accesible sólo si está en modo de base de datos único. " +"Puede ejecutar el servidor OpenERP con la opción" #. module: base_setup #: view:base.config.settings:0 @@ -250,6 +252,9 @@ msgid "" "projects,\n" " etc." msgstr "" +"Cuando envía un documento a un cliente (presupuesto, factura), el cliente " +"podrá ingresar para obtener todos sus documentos, leer las noticias de la " +"compañía, comprobar sus proyectos, etc." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -326,7 +331,7 @@ msgstr "Opciones" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activar el portal de cliente" #. module: base_setup #: view:base.config.settings:0 @@ -335,6 +340,9 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"para hacerlo.\n" +"Una vez activado, la página de inicio de sesión será reemplazada con el " +"sitio web público." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -345,6 +353,7 @@ msgstr "Permitir compartir documentos" #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" msgstr "" +"(noticias de la compañía, puestos de trabajo, formulario de contacto, etc.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 @@ -364,7 +373,7 @@ msgstr "Integración red social" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Dar a sus clientes acceso a sus documentos." #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 1bf5174eb41..2c66cd50c9c 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 0beca9cd5e0..47c950af9de 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 1cd3351882c..5e6550fe7c2 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 6be8b536a3c..95f37a01f0c 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index 3e8cdd3e5de..e81bfb2e9b8 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index 7e4a6aca243..c1d4b2b0429 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index 5714053c125..46fb1edbcf4 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index 9685d8fba79..0a38df7d086 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 18f1db7f39f..37032d2a42c 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 9f6a2b39ded..07ecb0ad81f 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 430476b04b9..1338a70f6e8 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index f374081f58a..fff161adc24 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 819dae42b39..9533e7afa44 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index bd2380196dc..f398c8f34ae 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index e05862ac7cb..94149bcc8ea 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index 0843079b33a..1dc5405a951 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index a50257fe6ad..230d0ba1346 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 94ff4cd4e84..93e69b07a92 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index 5ad5f9371d2..6d6cd6cfbf0 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 8c1c889e8b7..9f078553e19 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index df172779c14..926d779e4b2 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 8b39ae464dd..7e75b32eb92 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 0166ca65f15..7b8229fd2e8 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 1db30c04d1c..b82070ca8e4 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index 632fb45f313..06d5d9908da 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index f1396c2c643..222025d9676 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 0638ec0bbab..7be2dff9820 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index 019761c9c63..705a5f411b2 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index 553e424f3a8..f92a9331f7b 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Интеграция эл. почты" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -30,12 +30,12 @@ msgstr "Гость" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Контакты" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -74,19 +74,19 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Авторизация" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Предложения и заказы продаж" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Общие настройки" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,27 +96,27 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "Эл. почта" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Patient" -msgstr "" +msgstr "Пациент" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Позволяет пользователям импортировать данные из файлов CSV" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Управление несколькими компаниями" #. module: base_setup #: view:sale.config.settings:0 @@ -126,17 +126,17 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Получить контакты автоматически из LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Включить плагин Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -151,7 +151,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Импорт / Экспорт" #. module: base_setup #: view:sale.config.settings:0 @@ -161,7 +161,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Включить плагин Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -169,6 +169,8 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" +"Вы можете использовать этот мастер чтобы изменить терминологию для " +"заказчиков во всем приложении." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -178,7 +180,7 @@ msgstr "Арендатор" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Поделиться или вставить любой экран OpenERP" #. module: base_setup #: selection:base.setup.terminology,partner:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 7c9c2518c56..5604190de03 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 664717b2294..5815046aa96 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 005d70ee416..ef0ec45eff5 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index 037282c5552..d9740ef52dd 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index d2d6cc98225..d5b1b25e9b0 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index a87988413d1..14e86d70af3 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index a3bc3652ae5..935c22004d9 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index 4a37095dc65..dad5617fa68 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index 7ab6f98b5ca..c4a476db0b5 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index 1b9928f97e8..1bc32e61e8d 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index ec9c729580d..b3790a0c3b6 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 04dd1da6d2d..36d5709658d 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index 6c5cbe11c64..b330435004c 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index 8d8a6590494..b0956e2e162 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index 30cd88d0994..23d0db7607a 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index 5464f1ff44c..8221fd39994 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index 2d67496dc16..c5a1a2871af 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index 40809069edf..d2f75ee7258 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index 4da8bf60a97..bb0bf6c84c2 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index 2a68d10794b..4e57ffe40f6 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po index 4b90752cf67..5b45ffb5f84 100644 --- a/addons/base_status/i18n/mn.po +++ b/addons/base_status/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index 9c0a65d2893..cbaf69d2d2b 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index 6c846b79e83..8333da9ebb6 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 1be06363709..0e2125de00d 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index bb0e1fce17f..583a33fbb50 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po index 67f23602c00..2345c25d9a8 100644 --- a/addons/base_status/i18n/ru.po +++ b/addons/base_status/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po index d8621e65138..e793e68aa6c 100644 --- a/addons/base_status/i18n/sl.po +++ b/addons/base_status/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-29 12:15+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index 9fa1d7d84c8..c061e63cab8 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index f469e021d5c..40bb4a99745 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index 514c7fa5a99..df25c0b1fc4 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index 523d74a720c..0a4bb9d7406 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 37edeaf6c89..7d4d9eaddfa 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 0347595ea5f..51a37956870 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 10:17+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index ab8f8a1c16d..02e37c55a44 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 8aabec77b2d..99d4aa69702 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 5ab9e23b9b7..3274018ae04 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index 4813392190f..9d73d59c6dc 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index e04a4482a36..18e25e2b69a 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index fcffe64b522..452b06c317f 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index b0c4a2c9262..932b01798a0 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 5ec63c924a9..82c84986420 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 11906f513a5..6e939214fbc 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index b4534fc075a..58b967c2072 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index ba7fd617424..c9c56608872 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index 2fed327b316..5be35bb4431 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 0cb34205555..5e43df901d4 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 71038f9abf2..7ed1ff40292 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index d1bacd6c21d..4f2521f845a 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 4369c1b8ec0..661c48dcc34 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index c0481a5ea8f..4b45531edbe 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 2ad787feb45..9648c0e5f1e 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index a569ff8fbb4..5eb6e23eb61 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index 2bb70cdbe36..ee2d46e3f18 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index 98eaf23d0c4..af3325365ff 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index b568d8921bb..61043070249 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index 8fc0585e3f3..2c76ec53d7e 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index 72ea9cd6b04..38d5c0bb4c4 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 1120f07f609..0c90afc31f1 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index 34b5dfc7d42..ea2c13f8fa9 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index 15c840646ef..4db809422a0 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 9007abc674c..ee8acfeb04f 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 6e134b63c91..c0379bce857 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 91aca359e83..3d2f012b759 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index bdc17318480..8fa76ca3553 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index b7fdb4587da..1b3c843cd4d 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index c87d086cb54..7ddff752b4e 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index b49096cb8bd..d7ca077ed99 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 9229d7b8aa1..ae108be5d6e 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 48b8e68dbd5..58612fc7c16 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 1f23706a6a3..e6e92208212 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Проверить правильность" #. module: base_vat #: code:addons/base_vat/base_vat.py:147 @@ -46,7 +46,7 @@ msgstr "Компании" #: code:addons/base_vat/base_vat.py:111 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: base_vat #: help:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 3fe2785d772..633024437fa 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 8c9c548b8bd..81d0626400c 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 22:27+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index 0011e288e83..f995488e02b 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 4679b7ce2f3..f710c698286 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index 3031b3fe245..94ca172fcd6 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 8f7d54ffeba..3ce9992b118 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index aed2ef945c0..54b849eeeb1 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index fc798898aee..8e9d0593bf2 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 9bd46fdf672..23b60403e64 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 2d9b1253e34..5d61719966e 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 42bbe08b1e1..ce31184e4e4 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index fb957e8977f..25262651f56 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index dfbbc41a191..3af2bf89760 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 55d805ab818..1602e59379a 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index c9248ae1376..7428495a179 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index e97437e8f0f..91069c745c1 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index 2e8febba53f..a367ca418fc 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index d68a2287ee9..0b41b7e10ff 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index 2d0d2698df1..1df58b7b94d 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index cb93b5aa155..48395a79327 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 652638e257b..0bbfbe4d280 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index fd9eed4fc2e..ff90cddee0b 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index b9122e8f8ca..5fceb83cb89 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 6e42d295713..fe07c323164 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index 6e24c92c91a..5a24512ddb1 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 4c707d599f8..ba8eab3b2f9 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index bfabb62c12c..c16da0cb6c8 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index 9f9c1f99d39..d8fd0769a75 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index df4862dadc5..dac02fb20e7 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index bade14d8bb0..bc5cf00329f 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index 4cb18087732..db721d15bb6 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index a8d9a63f577..708b128711b 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index 52a5fcd88d7..8b1530d0aba 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index e314f432a7b..7e0ea90af6c 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index 2a5828c039d..4f1f968b01e 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 4a6262834ad..62ffb5d9bae 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index 3d3fcd5810c..b41748aa85a 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index af09db68b86..d01ced267a5 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index 77120bc768e..b592f0a9fe6 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index d31f3b1d15d..c66b092bbdf 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index cc66dd3c86c..6323f22bc75 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index f9011428aa6..d0b8bf5bd10 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index f7ef57a020c..415ebb9d68d 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 5a1cb4b8f7e..630d65e5f55 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index d3786a15ff5..5e71f2246fc 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index b9289918af6..7a589934891 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 1d10440f9bd..10e4afccac0 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index d844b320236..168895b3f0f 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index dbc60adb1bb..8b1c3ed4cd2 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 6de7cd21840..9d759921087 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index 0040b1e553c..f6b3583b82c 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index ab766b6e197..df8621cddb5 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index 8337dc846b1..05f38f189c1 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 5877c20bb3d..78c88849ed5 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index 6b75fe4e59e..f4546d2d39d 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index 05c1e4387ba..f67dafaa182 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index 67cae7313d5..5c4dc1a50a2 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index ef0fb67a212..d826390db3a 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index 183c4146f50..5dd6993fdef 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index 30a786ab4a5..4620ab37fc1 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index 7423a3b4234..770e97e9e92 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index c0017351f7a..b09fada430e 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index de60bdb6436..4d649adb90b 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index 6b2ecd12391..b6a28411667 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index dd1cb61d7ba..e3e0d4238a6 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index ea0e2aca815..57344183bda 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index 9a0b63f11b6..5ecc969dfab 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index 4f1a583032e..d3ebec55fdc 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 2b94fbaa08d..42b97b90967 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 0ef3e287439..b1629bd57f7 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index bfd3706ae28..690539fc4a9 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 375dba8d38b..0c78f1dedd6 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 0c02e61bf42..8e5f32f6a40 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 9db386cd3c3..439e3561fe1 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index b899461d77f..2d99c17aa2c 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index fe7ff75e5aa..e275a57a9f7 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 7f6bd0bac99..072c068a843 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index c96ea1e5b96..6d8919ab54c 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index 9e7ed629cf4..d59638bd154 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index 02f21af4a09..b339abcd0b4 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 17a59984871..bc0eb5e60f4 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index 0f220136c2b..0364a0e263c 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 6ace5e36ed4..89070b8431e 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index 4af2aa38fd9..814371bd2a9 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index f088651d710..3a6ba3b978f 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index ac857473fa1..9beaf930338 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index c34477bcdf3..6202fd8c28b 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index 64d37514a59..f9c17483b22 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index 3070c02bccd..aecb5ca48f0 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index 39d8daa34c6..eb297c539c8 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index ab1ffacec5c..0b2ba1eff3c 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index 232f43884d8..b755b0aa240 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index 6d22625cb2b..572255a6170 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 801a507ef59..1f134b37563 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 94b89657cf7..fc7245267ba 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index 02d2c40fae2..8d3a28e7114 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index ebca818387f..7ccaaef6dd9 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index 80c4e2826b7..448fed02ca8 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index de9dc76b48e..227be30267a 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index d2c67e5da74..c6e2ac01665 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 17c38252c55..ad7fe630e08 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 17:10+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 534da214ac2..6a5c21b0e34 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 65cb4a8d6f2..06cc060faf2 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 918f016015e..3ad50691fd9 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index 9938e6d522f..e585a152d73 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 5e6dc857921..6d55abe2254 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 4cb9244f2e1..903bb7197b2 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 4754584f9a6..1243241ed08 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index ef5f67b9931..0942057a3fd 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 9ff227188d0..4c1b4aa34ba 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index 2df02061c88..e0b407957f3 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index 9280ea85e1d..786a1e9b93f 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index f6fad2a1bd2..097e55009e0 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 28364908eed..6c06dfff019 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index 3e4fe038f88..aa2211cc9fd 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 340ef849cc3..14d78c20138 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index c6ac4b0f486..062b5ed6ce2 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index 269c605fc34..f84ecd000fb 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 61bfa185b40..4e97e422b6d 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index ff17368288b..f8828c93fee 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 96063e3e4b2..8ea13b97cad 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 02c45a6f761..52c4998ea72 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index c57c83b8677..9d6cd50ecbd 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 63b18579c25..90c37aca279 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 21:56+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po new file mode 100644 index 00000000000..64d985bd9ae --- /dev/null +++ b/addons/contacts/i18n/sv.po @@ -0,0 +1,37 @@ +# Swedish 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-01-17 23:49+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontakter" diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 175b2a0b5fa..db8ee9676aa 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index 606309f7266..ac9af72c8e7 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index beb327bb26a..da9badb39e4 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/i18n/ar.po b/addons/crm/i18n/ar.po index 5cdec6f4e8d..6e05adf3de2 100644 --- a/addons/crm/i18n/ar.po +++ b/addons/crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po index 1dd34864ba7..c0ae1d93df8 100644 --- a/addons/crm/i18n/bg.po +++ b/addons/crm/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po index 856b402753f..46ed6a579f1 100644 --- a/addons/crm/i18n/bs.po +++ b/addons/crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po index e9fec3772a1..a3b15f536eb 100644 --- a/addons/crm/i18n/ca.po +++ b/addons/crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po index 5644fa5ade6..54242d0209a 100644 --- a/addons/crm/i18n/cs.po +++ b/addons/crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/da.po b/addons/crm/i18n/da.po index 5229084f649..5a6f79ac5ab 100644 --- a/addons/crm/i18n/da.po +++ b/addons/crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index 5b0886f82f4..ec65b4bf7e2 100644 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po index 40ce88ed1ee..f1404006ac4 100644 --- a/addons/crm/i18n/el.po +++ b/addons/crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index bdcc5f12d2b..66c359d0dbf 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 @@ -56,6 +56,11 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Advertencia: Una iniciativa entrante está sin procesar más de 5 días.\n" +"Nombre: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Descripción: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 @@ -66,7 +71,7 @@ msgstr "Acción" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Establecer como equipo al Departamento de ventas" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -153,7 +158,7 @@ msgstr "Nombre de regla" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Sólo es posible convertir una llamada telefónica cada vez." #. module: crm #: view:crm.case.resource.type:0 @@ -234,7 +239,7 @@ msgstr "Estado" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "Nº reuniones" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead @@ -254,7 +259,7 @@ msgstr "Respuestas excluidas:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Fusionar oportunidades" #. module: crm #: view:crm.lead.report:0 @@ -472,6 +477,8 @@ msgstr "# Oportunidades" msgid "" "Please select more than one element (lead or opportunity) from the list view." msgstr "" +"Seleccione por favor más de un elemento (iniciativa u oportunidad) desde la " +"vista lista." #. module: crm #: view:crm.lead:0 @@ -542,7 +549,7 @@ msgstr "Mailings" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -607,7 +614,7 @@ msgstr "Fusionar" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "Opportunity ${object.name | h})" -msgstr "" +msgstr "Oportunidad ${object.name | h})" #. module: crm #: view:crm.case.categ:0 @@ -994,7 +1001,7 @@ msgstr "Acción siguiente" #: code:addons/crm/crm_lead.py:762 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Empresa establecida a %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -1085,7 +1092,7 @@ msgstr "Fecha creación" #: code:addons/crm/crm_lead.py:703 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Iniciativa convertida a oportunidad" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1148,7 +1155,7 @@ msgstr "Borrar" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Oportunidad creada" #. module: crm #: view:crm.lead:0 @@ -1177,6 +1184,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una nueva oportunidad.\n" +"

\n" +"OpenERP le ayuda a gestionar el flujo de ventas para seguir ventas " +"potenciales y prever mejor sus futuros ingresos.\n" +"

\n" +"Será capaz de planificar reuniones y llamadas telefónicas desde las " +"oportunidades, convertirlas en presupuestos, adjuntar documentos " +"relacionados, seguir todas las discusiones, y mucho más.\n" +"

\n" +" " #. module: crm #: field:crm.segmentation,partner_id:0 @@ -1255,7 +1273,7 @@ msgstr "" #: model:mail.message.subtype,name:crm.mt_lead_create #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "Iniciativa creada" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1359,6 +1377,8 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Llamadas telefónicas asignadas al usuario actual o con un equipo que tiene " +"al usuario actual como líder del equipo" #. module: crm #: view:crm.segmentation:0 @@ -1445,7 +1465,7 @@ msgstr "Por hacer" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Oportunidad perdida" #. module: crm #: field:crm.lead2opportunity.partner,action:0 @@ -1494,7 +1514,7 @@ msgstr "Usuarios" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Etapa cambiada" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1908,7 +1928,7 @@ msgstr "Equipos de ventas" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Por defecto a un nuevo equipo de ventas" #. module: crm #: view:crm.lead:0 @@ -1950,7 +1970,7 @@ msgstr "Iniciativas" #: code:addons/crm/crm_lead.py:571 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Combinar iniciativas" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 @@ -1973,7 +1993,7 @@ msgstr "Por hacer" #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity #: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity msgid "Lead to Opportunity" -msgstr "" +msgstr "Iniciativa a oportunidad" #. module: crm #: field:crm.lead,user_email:0 @@ -2176,6 +2196,8 @@ msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." msgstr "" +"Seguir a este equipo de ventas para rastrear automáticamente los eventos " +"asociados a los usuarios de este equipo." #. module: crm #: view:crm.lead:0 @@ -2347,7 +2369,7 @@ msgstr "En proceso" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Iniciativa convertida a oportunidad" #. module: crm #: view:crm.lead:0 @@ -2357,7 +2379,7 @@ msgstr "Iniciativas sin asignar" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Oportunidad ganada" #. module: crm #: field:crm.case.categ,object_id:0 @@ -2427,7 +2449,7 @@ msgstr "" #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Replegar por defecto" #. module: crm #: field:crm.case.stage,state:0 @@ -2464,6 +2486,7 @@ msgstr "Confirmado" #: model:ir.model,name:crm.model_crm_partner_binding msgid "Handle partner binding or generation in CRM wizards." msgstr "" +"Asistentes CRM para gestionar el enlanzamiento o la generación de empresas." #. module: crm #: model:ir.actions.act_window,name:crm.act_oppor_stage_user @@ -2514,6 +2537,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una iniciativa sin calificar.\n" +"

\n" +"Use las iniciativas si necesita un paso de calificación antes de crear una " +"oportunidad o un cliente. Puede ser una tarjeta de visita que recibió, un " +"formulario de contacto rellenado en su sitio web, o un archivo de prospectos " +"sin calificar importado.\n" +"

\n" +"Una vez calificada, la iniciativa se puede convertir en una oportunidad de " +"negocio y/o un nuevo cliente en su libreta de direcciones.\n" +"

\n" +" " #. module: crm #: field:sale.config.settings,fetchmail_lead:0 @@ -2666,7 +2701,7 @@ msgstr "Agosto" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Oportunidad perdida" #. module: crm #: field:crm.lead.report,deadline_month:0 @@ -2765,7 +2800,7 @@ msgstr "Llamadas registradas" #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Oportunidad ganada" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree @@ -3151,7 +3186,7 @@ msgstr "Boletín de noticias" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Etapa de la oportunidad cambiada" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index c0f2a3e7f8e..db028747de6 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_CR.po b/addons/crm/i18n/es_CR.po index 9395693c0db..51a0be6524d 100644 --- a/addons/crm/i18n/es_CR.po +++ b/addons/crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po index f3205f971b7..937b5daefac 100644 --- a/addons/crm/i18n/es_EC.po +++ b/addons/crm/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_PY.po b/addons/crm/i18n/es_PY.po index 1a73cf407a8..6ff9abf4ff3 100644 --- a/addons/crm/i18n/es_PY.po +++ b/addons/crm/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po index 6a94a278e62..5825083ac4b 100644 --- a/addons/crm/i18n/et.po +++ b/addons/crm/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 66a5cce952b..e7441a7e80c 100644 --- a/addons/crm/i18n/fi.po +++ b/addons/crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index 9bc8ca695ef..76062f81a81 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po index 1201c8e7085..79a51a86ff7 100644 --- a/addons/crm/i18n/gl.po +++ b/addons/crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gu.po b/addons/crm/i18n/gu.po index 83f80734499..43af22bad19 100644 --- a/addons/crm/i18n/gu.po +++ b/addons/crm/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index af660703623..d96c599b2f5 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po index 98a170a4c07..738ab591468 100644 --- a/addons/crm/i18n/hu.po +++ b/addons/crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po index 831f5a30b74..f457ab7ea21 100644 --- a/addons/crm/i18n/id.po +++ b/addons/crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po index 423e0a8839b..0616972183d 100644 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po index 59664a0d52d..2d5e4015d63 100644 --- a/addons/crm/i18n/ja.po +++ b/addons/crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index 2f539abb126..838c4ec9a30 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lo.po b/addons/crm/i18n/lo.po index 94981e33906..e4da3e055a4 100644 --- a/addons/crm/i18n/lo.po +++ b/addons/crm/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index 563bf1bce69..e5b3b1c1835 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po index d53aff262c2..126c60b8614 100644 --- a/addons/crm/i18n/lv.po +++ b/addons/crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po index 39d3fb9606f..35cbde1ec3a 100644 --- a/addons/crm/i18n/mn.po +++ b/addons/crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nb.po b/addons/crm/i18n/nb.po index 01dcf9bbe13..48edc016ab1 100644 --- a/addons/crm/i18n/nb.po +++ b/addons/crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index 74b8072dd99..537150138f6 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index bd86464960e..fe32593e898 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index 60e258cfad1..768872a2db7 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 @@ -66,7 +66,7 @@ msgstr "Akcja" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Ustaw zespół dla działu sprzedaży" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -235,7 +235,7 @@ msgstr "Stan" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "# Spotkań" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead @@ -255,7 +255,7 @@ msgstr "Wyłączając odpowiedzi :" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Połącz szanse" #. module: crm #: view:crm.lead.report:0 @@ -534,7 +534,7 @@ msgstr "Wiadomości" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Etap zmieniono" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -595,7 +595,7 @@ msgstr "Połącz" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "Opportunity ${object.name | h})" -msgstr "" +msgstr "Szansa ${object.name | h})" #. module: crm #: view:crm.case.categ:0 @@ -783,7 +783,7 @@ msgstr "Zatrzymaj proces" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: crm #: view:crm.phonecall:0 @@ -980,7 +980,7 @@ msgstr "Następna akcja" #: code:addons/crm/crm_lead.py:762 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Partner został ustawiony na %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -1069,7 +1069,7 @@ msgstr "Data utworzenia" #: code:addons/crm/crm_lead.py:703 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Sygnał skonwertowany do szansy" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1130,7 +1130,7 @@ msgstr "Usuń" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Szansa utworzona" #. module: crm #: view:crm.lead:0 @@ -1228,12 +1228,14 @@ msgid "" "This field is used to distinguish stages related to Leads from stages " "related to Opportunities, or to specify stages available for both types." msgstr "" +"To pole jest stosowane do rozróżniania etapów Sygnałów od etapów Szans. " +"Można tez definiować etapy dla Sygnałów i Szans." #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_create #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "Sygnał utworzony" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1352,7 +1354,7 @@ msgstr "Połączone szanse" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "Konsultacje" #. module: crm #: field:crm.case.section,code:0 @@ -1418,7 +1420,7 @@ msgstr "Do zrobienia" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Szansa utracona" #. module: crm #: field:crm.lead2opportunity.partner,action:0 @@ -1467,7 +1469,7 @@ msgstr "Użytkownicy" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Zmieniono etap" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1915,7 +1917,7 @@ msgstr "Sygnały" #: code:addons/crm/crm_lead.py:571 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Połączone sygnały" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 @@ -1938,7 +1940,7 @@ msgstr "Do zrobienia" #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity #: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity msgid "Lead to Opportunity" -msgstr "" +msgstr "Sygnał do szansy" #. module: crm #: field:crm.lead,user_email:0 @@ -2298,7 +2300,7 @@ msgstr "Uruchomione" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Sygnał skonwertowany do szansy" #. module: crm #: view:crm.lead:0 @@ -2308,7 +2310,7 @@ msgstr "Nieprzypisane sygnały" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Szansa wygrana" #. module: crm #: field:crm.case.categ,object_id:0 @@ -2377,7 +2379,7 @@ msgstr "" #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Zwiń domyślnie" #. module: crm #: field:crm.case.stage,state:0 @@ -2596,7 +2598,7 @@ msgstr "Sierpień" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Szansa przegrana" #. module: crm #: field:crm.lead.report,deadline_month:0 @@ -2694,7 +2696,7 @@ msgstr "Zarejestrowane rozmowy" #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Szansa wygrana" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree @@ -3064,7 +3066,7 @@ msgstr "Biuletyn" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Etap szansy zmieniono" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index 6297f36854a..6d251f0501a 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 3974daf5526..a0a93e5ae19 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po index 72078234e98..4eec9e24bc8 100644 --- a/addons/crm/i18n/ro.po +++ b/addons/crm/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index ea1e08fdd7e..f56bb514ebb 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 @@ -153,7 +153,7 @@ msgstr "Название правила" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Только один звонок можно преобразовать за раз." #. module: crm #: view:crm.case.resource.type:0 @@ -183,6 +183,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 "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: crm #: code:addons/crm/crm_lead.py:632 @@ -232,7 +234,7 @@ msgstr "Состояние" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "# встреч" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead @@ -252,7 +254,7 @@ msgstr "Исключенные ответы :" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Объединение предложений" #. module: crm #: view:crm.lead.report:0 @@ -340,6 +342,7 @@ msgstr "Контакт" msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"При обострении в этой группе переопределить продавца на руководителя группы." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 @@ -508,7 +511,7 @@ msgstr "Рассылки" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Этап изменен" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -569,7 +572,7 @@ msgstr "Объединить" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "Opportunity ${object.name | h})" -msgstr "" +msgstr "Предложение ${object.name | h})" #. module: crm #: view:crm.case.categ:0 @@ -587,6 +590,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Напоминание по кандидату: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: view:crm.segmentation:0 @@ -673,7 +678,7 @@ msgstr "Классификация партнера" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Валюта" #. module: crm #: field:crm.lead.report,probable_revenue:0 @@ -698,7 +703,7 @@ msgstr "Вероятность (%)" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "Вероятность закрытия сделки должна быть между 0% и 100%!" #. module: crm #: view:crm.lead:0 @@ -867,7 +872,7 @@ msgstr "Отметить \"Выиграна\"" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Кандидаты из США" #. module: crm #: view:crm.lead:0 @@ -877,7 +882,7 @@ msgstr "Отметить \"Проиграна\"" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Черновые кандидаты" #. module: crm #: selection:crm.lead.report,creation_month:0 diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index 16da1c493a6..f6b2899a5a1 100644 --- a/addons/crm/i18n/sk.po +++ b/addons/crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index dbc354aaea0..83bcd04888d 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po index 0541cba293a..0d04af797dd 100644 --- a/addons/crm/i18n/sq.po +++ b/addons/crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po index 90e5a19c99d..1ec5721329a 100644 --- a/addons/crm/i18n/sr.po +++ b/addons/crm/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po index eea3c1f3d11..a2a5fa344a6 100644 --- a/addons/crm/i18n/sr@latin.po +++ b/addons/crm/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po index eca16d47c43..c7e46932900 100644 --- a/addons/crm/i18n/sv.po +++ b/addons/crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/th.po b/addons/crm/i18n/th.po index 2c5a24608de..666d770c062 100644 --- a/addons/crm/i18n/th.po +++ b/addons/crm/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po index ce2fbba1450..7dfe2263829 100644 --- a/addons/crm/i18n/tlh.po +++ b/addons/crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index c9a617a34ea..bc92a7816f6 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po index 4b4f98964c9..7b7184372c9 100644 --- a/addons/crm/i18n/uk.po +++ b/addons/crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po index eb7c9ede0b4..f536b82df74 100644 --- a/addons/crm/i18n/vi.po +++ b/addons/crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index 532276131d7..5ccd659dda9 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index 6f49bbfd859..b4b351b6615 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm_claim/i18n/ar.po b/addons/crm_claim/i18n/ar.po index 3dc781ddfb5..958f0292fa3 100644 --- a/addons/crm_claim/i18n/ar.po +++ b/addons/crm_claim/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/bg.po b/addons/crm_claim/i18n/bg.po index 1110acbc3c3..6e14ac7dfba 100644 --- a/addons/crm_claim/i18n/bg.po +++ b/addons/crm_claim/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ca.po b/addons/crm_claim/i18n/ca.po index dccbe31218a..60a2f94790a 100644 --- a/addons/crm_claim/i18n/ca.po +++ b/addons/crm_claim/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/da.po b/addons/crm_claim/i18n/da.po index 046be411cc0..dad55192566 100644 --- a/addons/crm_claim/i18n/da.po +++ b/addons/crm_claim/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/de.po b/addons/crm_claim/i18n/de.po index 1fa0485bc28..ae7afe30da1 100644 --- a/addons/crm_claim/i18n/de.po +++ b/addons/crm_claim/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/el.po b/addons/crm_claim/i18n/el.po index 3fe81523394..e3890de4fd1 100644 --- a/addons/crm_claim/i18n/el.po +++ b/addons/crm_claim/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es.po b/addons/crm_claim/i18n/es.po index 8e1156859e7..007e8181834 100644 --- a/addons/crm_claim/i18n/es.po +++ b/addons/crm_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_CR.po b/addons/crm_claim/i18n/es_CR.po index bcb3ee56625..3de0b77c642 100644 --- a/addons/crm_claim/i18n/es_CR.po +++ b/addons/crm_claim/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_EC.po b/addons/crm_claim/i18n/es_EC.po index f6caca80cf7..18429686a81 100644 --- a/addons/crm_claim/i18n/es_EC.po +++ b/addons/crm_claim/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_PY.po b/addons/crm_claim/i18n/es_PY.po index c75f035bfdc..dc0caa575df 100644 --- a/addons/crm_claim/i18n/es_PY.po +++ b/addons/crm_claim/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/fi.po b/addons/crm_claim/i18n/fi.po index 4480b94a5e7..1004b3f3411 100644 --- a/addons/crm_claim/i18n/fi.po +++ b/addons/crm_claim/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/fr.po b/addons/crm_claim/i18n/fr.po index 2e0e0bcee1a..17afed78719 100644 --- a/addons/crm_claim/i18n/fr.po +++ b/addons/crm_claim/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gl.po b/addons/crm_claim/i18n/gl.po index 5360c931c65..c41acae0f50 100644 --- a/addons/crm_claim/i18n/gl.po +++ b/addons/crm_claim/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gu.po b/addons/crm_claim/i18n/gu.po index 86b20d5b144..b1d116aa432 100644 --- a/addons/crm_claim/i18n/gu.po +++ b/addons/crm_claim/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hr.po b/addons/crm_claim/i18n/hr.po index 2782d38986c..4a9064b248a 100644 --- a/addons/crm_claim/i18n/hr.po +++ b/addons/crm_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hu.po b/addons/crm_claim/i18n/hu.po index 5482336d168..5bd54606655 100644 --- a/addons/crm_claim/i18n/hu.po +++ b/addons/crm_claim/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/it.po b/addons/crm_claim/i18n/it.po index 949217d118c..9ba872ae8ad 100644 --- a/addons/crm_claim/i18n/it.po +++ b/addons/crm_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ja.po b/addons/crm_claim/i18n/ja.po index 30f2c3b5124..7b457046035 100644 --- a/addons/crm_claim/i18n/ja.po +++ b/addons/crm_claim/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/lt.po b/addons/crm_claim/i18n/lt.po index 3b59e398b9d..61969d7ef08 100644 --- a/addons/crm_claim/i18n/lt.po +++ b/addons/crm_claim/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/mn.po b/addons/crm_claim/i18n/mn.po index efeba3db463..f97622dc6f3 100644 --- a/addons/crm_claim/i18n/mn.po +++ b/addons/crm_claim/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nb.po b/addons/crm_claim/i18n/nb.po index 2024ccdb0ad..c81e00d675f 100644 --- a/addons/crm_claim/i18n/nb.po +++ b/addons/crm_claim/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nl.po b/addons/crm_claim/i18n/nl.po index 5d9d8a9c547..b8babb8344b 100644 --- a/addons/crm_claim/i18n/nl.po +++ b/addons/crm_claim/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -725,7 +725,7 @@ msgstr "Mijn bedrijf" #. module: crm_claim #: view:crm.claim.report:0 msgid "Done" -msgstr "Klaar" +msgstr "Verwerkt" #. module: crm_claim #: view:crm.claim:0 diff --git a/addons/crm_claim/i18n/pl.po b/addons/crm_claim/i18n/pl.po index 10093cbb562..364af8cfe47 100644 --- a/addons/crm_claim/i18n/pl.po +++ b/addons/crm_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pt.po b/addons/crm_claim/i18n/pt.po index 38cecf4b2a1..be3ad0fe211 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/pt_BR.po b/addons/crm_claim/i18n/pt_BR.po index 8a15ce61f42..ee709fb4d8e 100644 --- a/addons/crm_claim/i18n/pt_BR.po +++ b/addons/crm_claim/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ro.po b/addons/crm_claim/i18n/ro.po index 570d58ac4b6..f34b86dd0b5 100644 --- a/addons/crm_claim/i18n/ro.po +++ b/addons/crm_claim/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ru.po b/addons/crm_claim/i18n/ru.po index 92e70ff4fe1..86a19959e4f 100644 --- a/addons/crm_claim/i18n/ru.po +++ b/addons/crm_claim/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sl.po b/addons/crm_claim/i18n/sl.po index 0e4bdc60387..e8f8bf8550f 100644 --- a/addons/crm_claim/i18n/sl.po +++ b/addons/crm_claim/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 18:02+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sq.po b/addons/crm_claim/i18n/sq.po index 6b380055bfe..2fe3800e218 100644 --- a/addons/crm_claim/i18n/sq.po +++ b/addons/crm_claim/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr.po b/addons/crm_claim/i18n/sr.po index aa7b9ea178d..dde9f001932 100644 --- a/addons/crm_claim/i18n/sr.po +++ b/addons/crm_claim/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr@latin.po b/addons/crm_claim/i18n/sr@latin.po index dcc0b0d21a6..426b2bf9099 100644 --- a/addons/crm_claim/i18n/sr@latin.po +++ b/addons/crm_claim/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sv.po b/addons/crm_claim/i18n/sv.po index 6537fdf8bdc..da9fb039d6e 100644 --- a/addons/crm_claim/i18n/sv.po +++ b/addons/crm_claim/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/tr.po b/addons/crm_claim/i18n/tr.po index f60639ba5f3..2da304408c4 100644 --- a/addons/crm_claim/i18n/tr.po +++ b/addons/crm_claim/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/zh_CN.po b/addons/crm_claim/i18n/zh_CN.po index e35be826ee4..cda05ebda0c 100644 --- a/addons/crm_claim/i18n/zh_CN.po +++ b/addons/crm_claim/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/zh_TW.po b/addons/crm_claim/i18n/zh_TW.po index 84aa8bfb52a..2a93c6ff25c 100644 --- a/addons/crm_claim/i18n/zh_TW.po +++ b/addons/crm_claim/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_helpdesk/i18n/ar.po b/addons/crm_helpdesk/i18n/ar.po index 0a210259b20..0dc12346e9f 100644 --- a/addons/crm_helpdesk/i18n/ar.po +++ b/addons/crm_helpdesk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/bg.po b/addons/crm_helpdesk/i18n/bg.po index eb1d95a60eb..65910705966 100644 --- a/addons/crm_helpdesk/i18n/bg.po +++ b/addons/crm_helpdesk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ca.po b/addons/crm_helpdesk/i18n/ca.po index 142ef11b2f8..643315f8e2f 100644 --- a/addons/crm_helpdesk/i18n/ca.po +++ b/addons/crm_helpdesk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/da.po b/addons/crm_helpdesk/i18n/da.po index a4cee00f25c..371061f5e36 100644 --- a/addons/crm_helpdesk/i18n/da.po +++ b/addons/crm_helpdesk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/de.po b/addons/crm_helpdesk/i18n/de.po index 795f5ecff5d..2468364adfe 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/el.po b/addons/crm_helpdesk/i18n/el.po index b111fbe38aa..43be458fb59 100644 --- a/addons/crm_helpdesk/i18n/el.po +++ b/addons/crm_helpdesk/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es.po b/addons/crm_helpdesk/i18n/es.po index e3ec5389350..d6ddfab77de 100644 --- a/addons/crm_helpdesk/i18n/es.po +++ b/addons/crm_helpdesk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_CR.po b/addons/crm_helpdesk/i18n/es_CR.po index f247174953a..3151c23dfec 100644 --- a/addons/crm_helpdesk/i18n/es_CR.po +++ b/addons/crm_helpdesk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_PY.po b/addons/crm_helpdesk/i18n/es_PY.po index 541b966ee43..42aac4a6306 100644 --- a/addons/crm_helpdesk/i18n/es_PY.po +++ b/addons/crm_helpdesk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fi.po b/addons/crm_helpdesk/i18n/fi.po index 6c88fc41bcf..fba88153c82 100644 --- a/addons/crm_helpdesk/i18n/fi.po +++ b/addons/crm_helpdesk/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fr.po b/addons/crm_helpdesk/i18n/fr.po index 08a46ad46cb..a1c6eab933f 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gl.po b/addons/crm_helpdesk/i18n/gl.po index 5bbabbd2766..8338938d32b 100644 --- a/addons/crm_helpdesk/i18n/gl.po +++ b/addons/crm_helpdesk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gu.po b/addons/crm_helpdesk/i18n/gu.po index 59e1ad3878f..dff1a542243 100644 --- a/addons/crm_helpdesk/i18n/gu.po +++ b/addons/crm_helpdesk/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hr.po b/addons/crm_helpdesk/i18n/hr.po index 922ee5ccc2e..cce8dfb01d8 100644 --- a/addons/crm_helpdesk/i18n/hr.po +++ b/addons/crm_helpdesk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hu.po b/addons/crm_helpdesk/i18n/hu.po index a34ea856667..7beaf2b0d27 100644 --- a/addons/crm_helpdesk/i18n/hu.po +++ b/addons/crm_helpdesk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/it.po b/addons/crm_helpdesk/i18n/it.po index 5967efff716..b42abb1628c 100644 --- a/addons/crm_helpdesk/i18n/it.po +++ b/addons/crm_helpdesk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ja.po b/addons/crm_helpdesk/i18n/ja.po index 259b7c19ac3..0b4bb86b766 100644 --- a/addons/crm_helpdesk/i18n/ja.po +++ b/addons/crm_helpdesk/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lt.po b/addons/crm_helpdesk/i18n/lt.po index 580378aa3de..cc3206ea967 100644 --- a/addons/crm_helpdesk/i18n/lt.po +++ b/addons/crm_helpdesk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lv.po b/addons/crm_helpdesk/i18n/lv.po index 048111ade23..2a834c43cbe 100644 --- a/addons/crm_helpdesk/i18n/lv.po +++ b/addons/crm_helpdesk/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/mn.po b/addons/crm_helpdesk/i18n/mn.po index 2087abacfd2..4c79045c36a 100644 --- a/addons/crm_helpdesk/i18n/mn.po +++ b/addons/crm_helpdesk/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nb.po b/addons/crm_helpdesk/i18n/nb.po index a3594007583..33e99a4b146 100644 --- a/addons/crm_helpdesk/i18n/nb.po +++ b/addons/crm_helpdesk/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nl.po b/addons/crm_helpdesk/i18n/nl.po index d47e048fd31..abbfca3cac8 100644 --- a/addons/crm_helpdesk/i18n/nl.po +++ b/addons/crm_helpdesk/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pl.po b/addons/crm_helpdesk/i18n/pl.po index 2d5bc8f2f0f..89562fc9ca8 100644 --- a/addons/crm_helpdesk/i18n/pl.po +++ b/addons/crm_helpdesk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt.po b/addons/crm_helpdesk/i18n/pt.po index 6154f0e20e2..78c03e5a1b1 100644 --- a/addons/crm_helpdesk/i18n/pt.po +++ b/addons/crm_helpdesk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt_BR.po b/addons/crm_helpdesk/i18n/pt_BR.po index 477da2703b4..cc2d524ca5f 100644 --- a/addons/crm_helpdesk/i18n/pt_BR.po +++ b/addons/crm_helpdesk/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ro.po b/addons/crm_helpdesk/i18n/ro.po index 27f0415e2ef..f3a6391c90c 100644 --- a/addons/crm_helpdesk/i18n/ro.po +++ b/addons/crm_helpdesk/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ru.po b/addons/crm_helpdesk/i18n/ru.po index b5b21405c32..66262705b6b 100644 --- a/addons/crm_helpdesk/i18n/ru.po +++ b/addons/crm_helpdesk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sl.po b/addons/crm_helpdesk/i18n/sl.po index 01de4889ab4..5e0204b528d 100644 --- a/addons/crm_helpdesk/i18n/sl.po +++ b/addons/crm_helpdesk/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sq.po b/addons/crm_helpdesk/i18n/sq.po index f778bd55b1d..110b3d09320 100644 --- a/addons/crm_helpdesk/i18n/sq.po +++ b/addons/crm_helpdesk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr.po b/addons/crm_helpdesk/i18n/sr.po index 20117a70e67..7b09718258e 100644 --- a/addons/crm_helpdesk/i18n/sr.po +++ b/addons/crm_helpdesk/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr@latin.po b/addons/crm_helpdesk/i18n/sr@latin.po index b3bf7fd4c2f..85ecc670438 100644 --- a/addons/crm_helpdesk/i18n/sr@latin.po +++ b/addons/crm_helpdesk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sv.po b/addons/crm_helpdesk/i18n/sv.po index 6791e1912f9..cdc5c23ce30 100644 --- a/addons/crm_helpdesk/i18n/sv.po +++ b/addons/crm_helpdesk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/tr.po b/addons/crm_helpdesk/i18n/tr.po index b53efa19a3f..56e5964fcf7 100644 --- a/addons/crm_helpdesk/i18n/tr.po +++ b/addons/crm_helpdesk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/zh_CN.po b/addons/crm_helpdesk/i18n/zh_CN.po index c474bfa4427..026c89240e8 100644 --- a/addons/crm_helpdesk/i18n/zh_CN.po +++ b/addons/crm_helpdesk/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/zh_TW.po b/addons/crm_helpdesk/i18n/zh_TW.po index 6f4ef9658a8..9684afea3cd 100644 --- a/addons/crm_helpdesk/i18n/zh_TW.po +++ b/addons/crm_helpdesk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ar.po b/addons/crm_partner_assign/i18n/ar.po index dac29fb88d4..0e063dcb30f 100644 --- a/addons/crm_partner_assign/i18n/ar.po +++ b/addons/crm_partner_assign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/bg.po b/addons/crm_partner_assign/i18n/bg.po index 2de31b6c6e0..f40e4baf0ac 100644 --- a/addons/crm_partner_assign/i18n/bg.po +++ b/addons/crm_partner_assign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ca.po b/addons/crm_partner_assign/i18n/ca.po index 27e0ba70d21..7611956ef44 100644 --- a/addons/crm_partner_assign/i18n/ca.po +++ b/addons/crm_partner_assign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/da.po b/addons/crm_partner_assign/i18n/da.po index 42d310374c3..c9322f66b06 100644 --- a/addons/crm_partner_assign/i18n/da.po +++ b/addons/crm_partner_assign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/de.po b/addons/crm_partner_assign/i18n/de.po index 4cfa9376e3c..a82ff978178 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/el.po b/addons/crm_partner_assign/i18n/el.po index 5b7d4b1df00..3df1c86bce2 100644 --- a/addons/crm_partner_assign/i18n/el.po +++ b/addons/crm_partner_assign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es.po b/addons/crm_partner_assign/i18n/es.po index f6cd16b5678..722efdc9cbc 100644 --- a/addons/crm_partner_assign/i18n/es.po +++ b/addons/crm_partner_assign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -70,7 +70,7 @@ msgstr "Geo localizar" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,starred:0 msgid "Starred" -msgstr "" +msgstr "Destacado" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -510,6 +510,7 @@ msgstr "nº oportunidades" #: help:crm.lead.forward.to.partner,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"El usuario actual tiene una notificación destacada asociada a este mensaje" #. module: crm_partner_assign #: field:crm.partner.report.assign,date_partnership:0 @@ -801,6 +802,7 @@ msgstr "Nivel partner" #: help:crm.lead.forward.to.partner,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"El usuario actual tiene una notificación sin leer asociada a este mensaje" #. module: crm_partner_assign #: selection:crm.lead.report.assign,type:0 diff --git a/addons/crm_partner_assign/i18n/es_CR.po b/addons/crm_partner_assign/i18n/es_CR.po index b3eafd9d78c..9eade972358 100644 --- a/addons/crm_partner_assign/i18n/es_CR.po +++ b/addons/crm_partner_assign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index 4fd2a692933..83b7b6fd475 100644 --- a/addons/crm_partner_assign/i18n/es_PY.po +++ b/addons/crm_partner_assign/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fi.po b/addons/crm_partner_assign/i18n/fi.po index b4ec44d7780..321cf4e9731 100644 --- a/addons/crm_partner_assign/i18n/fi.po +++ b/addons/crm_partner_assign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fr.po b/addons/crm_partner_assign/i18n/fr.po index fea55fee199..8f4847726eb 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index bfaf3cb134c..e3138bdfc50 100644 --- a/addons/crm_partner_assign/i18n/gl.po +++ b/addons/crm_partner_assign/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hr.po b/addons/crm_partner_assign/i18n/hr.po index 8be59e8f3d6..26975584627 100644 --- a/addons/crm_partner_assign/i18n/hr.po +++ b/addons/crm_partner_assign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hu.po b/addons/crm_partner_assign/i18n/hu.po index 108e50aef4e..84cf21b8358 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/it.po b/addons/crm_partner_assign/i18n/it.po index 4349c20888f..7edf2f3abbd 100644 --- a/addons/crm_partner_assign/i18n/it.po +++ b/addons/crm_partner_assign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ja.po b/addons/crm_partner_assign/i18n/ja.po index 1acdd050de9..018a1ae4994 100644 --- a/addons/crm_partner_assign/i18n/ja.po +++ b/addons/crm_partner_assign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lt.po b/addons/crm_partner_assign/i18n/lt.po index 54a32db907d..15086652b76 100644 --- a/addons/crm_partner_assign/i18n/lt.po +++ b/addons/crm_partner_assign/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lv.po b/addons/crm_partner_assign/i18n/lv.po index 5f5284ade36..95b2bff606f 100644 --- a/addons/crm_partner_assign/i18n/lv.po +++ b/addons/crm_partner_assign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nb.po b/addons/crm_partner_assign/i18n/nb.po index a1478c24100..e19e1cf9361 100644 --- a/addons/crm_partner_assign/i18n/nb.po +++ b/addons/crm_partner_assign/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index 45aca8fcfc4..78daa982802 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index 6f7d1946bdc..932c459f9a8 100644 --- a/addons/crm_partner_assign/i18n/pl.po +++ b/addons/crm_partner_assign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index a2cd0058fb4..20a2e2db988 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index 25e5ecb4018..de58d0cebe4 100644 --- a/addons/crm_partner_assign/i18n/pt_BR.po +++ b/addons/crm_partner_assign/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index 10feeb78a15..5383b7b8a1b 100644 --- a/addons/crm_partner_assign/i18n/ro.po +++ b/addons/crm_partner_assign/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ru.po b/addons/crm_partner_assign/i18n/ru.po index 5d40e24e694..73f3cda5b2d 100644 --- a/addons/crm_partner_assign/i18n/ru.po +++ b/addons/crm_partner_assign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sl.po b/addons/crm_partner_assign/i18n/sl.po index 238d5a1e935..2f3cadf3cf8 100644 --- a/addons/crm_partner_assign/i18n/sl.po +++ b/addons/crm_partner_assign/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 17:49+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sq.po b/addons/crm_partner_assign/i18n/sq.po index e47594b7d8f..f10983b1f8c 100644 --- a/addons/crm_partner_assign/i18n/sq.po +++ b/addons/crm_partner_assign/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sr@latin.po b/addons/crm_partner_assign/i18n/sr@latin.po index 470a669c3a8..b7a97483f39 100644 --- a/addons/crm_partner_assign/i18n/sr@latin.po +++ b/addons/crm_partner_assign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sv.po b/addons/crm_partner_assign/i18n/sv.po index 01204fc5fcc..723392341f6 100644 --- a/addons/crm_partner_assign/i18n/sv.po +++ b/addons/crm_partner_assign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/tr.po b/addons/crm_partner_assign/i18n/tr.po index 1290cb39241..d18f6b52876 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index dea29f1f358..9046cb6add7 100644 --- a/addons/crm_partner_assign/i18n/zh_CN.po +++ b/addons/crm_partner_assign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/zh_TW.po b/addons/crm_partner_assign/i18n/zh_TW.po index 8552efd3ff3..7bf2df0baf8 100644 --- a/addons/crm_partner_assign/i18n/zh_TW.po +++ b/addons/crm_partner_assign/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index 9e3695741e4..7a8efb0e633 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index 72e3846b2a2..0a6850016a9 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index b6610c47c67..0a07b030190 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index a438e1c2eac..a49fa79891d 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index 258c4789f8b..35f3a0d5420 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index 107da2be8ce..6c09281848d 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index cdabb116e1f..82e34c8e1d1 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index 36009b5f37b..fe29d95f946 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index eb43d2bb585..8665162b610 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index 42a2cc7d908..a9f1fa79084 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 9d7f3add02d..0fea94a1ac4 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index 45ac4a156db..b0eeb3115c6 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index f41a3161695..ce3583a654c 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index 4c109784ef3..80796b3a137 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index 27725534d96..b00d9f1c582 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index 7ab35428a62..2770e3e0b7d 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index 03181484126..aca4760e6ba 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index c56e8ef89b6..82d6786ea51 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index a851a67a3cb..6a5d5f6bb72 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 5b13448e832..eb1072b7500 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index e8d5e9e96a9..73a2696b9fc 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index da81866fd0b..59020353a65 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index e6801180d8d..a9e3fb542bb 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index 08091bb0291..fa36cdebe98 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index 70db27ecb9f..7b6cda0e0ae 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index 46830a31b44..bd728a19982 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index 9ed4cf7bb46..def74cf105e 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index b276e89f26a..c31134e0ca3 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po index 27d7eed882c..beab6d6013c 100644 --- a/addons/crm_profiling/i18n/nb.po +++ b/addons/crm_profiling/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index b46f39054c9..9754c7e2bf0 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index b77d77832fd..70af37f4dba 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index 47e1052d615..fab4ac91762 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index fc014f0116b..b3ea71dfb08 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index e47345b2fea..4649af30c84 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index 9b5e91439c2..e51819f2903 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index d8f3f2b429e..905ce79809a 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index 6949784bd5c..059d9112276 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index 0874f667959..5ec3dfb94c8 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index 3c9cc7b1db4..19ef49be5ae 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index 4af0d96d293..e9157f4091c 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 8d2eeee4c95..e0fcd806081 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index d41c24eb17c..f42c14956b4 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index d7bd730f475..cce28c7aaa8 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 509d0348004..8e344146c97 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index 58cc3069a3f..b1f1228243e 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index bef6f744668..4b56be73ff7 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 33f8b6528d9..29fc46bc05d 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index ac57fbdf0f1..3960664f0e8 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index 800486f219a..012a8ed5736 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index 86e4ac93893..3e7313645da 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index 25706431a8c..77a4344de77 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es.po b/addons/crm_todo/i18n/es.po index fefbf611f12..99ee03c3ee9 100644 --- a/addons/crm_todo/i18n/es.po +++ b/addons/crm_todo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index 94f01305a68..1bf47e33ca7 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index 45997f6ed3b..392a338eee1 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index df23786613a..80c20e0b85b 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index 74955713412..48c5310bf08 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hr.po b/addons/crm_todo/i18n/hr.po index 0f817105e42..af7030ed4c5 100644 --- a/addons/crm_todo/i18n/hr.po +++ b/addons/crm_todo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index 3dd22ab9974..4e304abf47f 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index ed104e50aca..da4ee8576cc 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 9b129e6f7ba..1c43ca047d3 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 5fa4f2d6c1f..53c058bddde 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po index d5083739879..2ce2e45d731 100644 --- a/addons/crm_todo/i18n/nb.po +++ b/addons/crm_todo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index edfe120e839..42d84bfa2ce 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -57,7 +57,7 @@ msgstr "Taken" #. module: crm_todo #: view:crm.lead:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: crm_todo #: view:crm.lead:0 @@ -77,7 +77,7 @@ msgstr "Lead / prospect" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "Hiermee bevestigt u de taak" +msgstr "Hiermee bevestigt u de taak als verwerkt" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index 5bda6c1984b..cba73aa17fc 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index 8724bd84686..549ad0679fa 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index 6be5b6ea9e6..29fc31c2e58 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index b0f6be55dc6..30bb022e09d 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ru.po b/addons/crm_todo/i18n/ru.po index 9816398709b..69804d55f09 100644 --- a/addons/crm_todo/i18n/ru.po +++ b/addons/crm_todo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 322cb1cde5c..c1d0b777895 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index 64e26ee0eb8..8157983ea25 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index 17302a31605..87108cd5075 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 16fe05483f2..535fdb92c56 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po index bc10d93b01b..9e8984b8594 100644 --- a/addons/crm_todo/i18n/zh_TW.po +++ b/addons/crm_todo/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index 46b112234a0..07f4bbecb8b 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index 0aff210dadf..fd2d59a1543 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index f4a3b7d761d..90e301e5fbf 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index 754cd9a6be2..b187c8cebdd 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index 2592f25b241..12ba70a839c 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index 54fa661f472..98dd7899c18 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index d1fb887415a..316c82c0443 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index 43be83a4632..d5e6a6eef38 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index acaf84410ff..edbd3713022 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index 099846bf7f0..747da78f726 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index 6cdfcbedf4d..3bd8c770efd 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_MX.po b/addons/decimal_precision/i18n/es_MX.po index 1888f9765ac..eeff2a462c1 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index 010f0bd5da7..5b369def907 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index 07221946e23..adc9f9b073d 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index abdcba4f619..ecb81324413 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index aaf4fb91810..e53099da4df 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index 40d73956b3b..d7ec453608d 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index a571913dc67..7e1e269aa0e 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index 482682f8913..d0650eaa2d0 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index f6a1c16c121..931abeb6dae 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index c5040f06502..a55dae8de05 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index 55fc147ced4..23f1e624371 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index 53278096c62..2145ea28bda 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index d7ea5f83acf..6e1b6e4c283 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index bfd63d8ff55..5f1765efb80 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index 8403cd9d6d0..a56b5897e8c 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 4a0f3ad42a3..88160e7106f 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index b3f975eef13..f0efae9948e 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pl.po b/addons/decimal_precision/i18n/pl.po index 2993ac7fb8c..10b84155f25 100644 --- a/addons/decimal_precision/i18n/pl.po +++ b/addons/decimal_precision/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index 19141b6a2c1..17bb0a27391 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index f754719056c..ea99cae9e0c 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index 2d5ae8a4b95..c9ca45f0be4 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index 9ab1255ca29..c9303f78ca1 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index e896094db9f..ae17a6fa009 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index f8eb04d2457..8fe27d463a1 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index 10c39df536d..c8b72fc4f81 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index a8a4dfabb7e..e23d43488f1 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index ac7977044af..c35d446c192 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index cf5e8a62dc5..0b41942fca9 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index 40bdb522191..fdabeb13696 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index 4b73f6fc151..2ba9ea5f3af 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index 2b64cc9fb76..025aca4c4a8 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index fa02b2cee5c..b3d1908a205 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index 5a5b89cb220..8cb9bf0591a 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index ab6f5dcf68f..f5024dcf461 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index 45e096e7f8c..14128e3a2eb 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 023433f4c5a..2a917acbf35 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index 6b0a7d93df2..df93f67e0e4 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index eb4ba465844..936b750115f 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index 170a221a7ec..f569fac11a0 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 74356d93128..7db1ffe0677 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 @@ -52,7 +52,7 @@ msgstr "Línea cuadrícula envío" #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidad de medida" #. module: delivery #: view:delivery.carrier:0 @@ -454,6 +454,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir una nueva forma de envío.\n" +"

\n" +"Cada transportista (por ejemplo, UPS) puede tener varias formas de envío " +"(por ejemplo, UPS express, UPS estándar) con un conjunto de reglas de " +"precios para cada método.\n" +"

\n" +"Estos método permiten calcular automáticamente el precio del envío de " +"acuerdo a su configuración: sobre el pedido de venta (basado en el " +"presupuesto) o sobre la factura (basado en las órdenes de entrega).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -496,7 +508,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Unidad de medida para el peso" #. module: delivery #: report:sale.shipping:0 @@ -610,7 +622,7 @@ msgstr "Provincias" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "La unidad de medida es la unidad de medición del peso" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index 3fcd1b2b24f..ad900d6143d 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 8e770dd6dac..1bacd35c2d8 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index eb4594a7d15..af2ba3147f3 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index f33e091e1a3..f834411c908 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index 836d09fcbb8..f42a16caddb 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index 75508894948..be8a3d0e7af 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 92e3f860cdb..baa0fca506c 100644 --- a/addons/delivery/i18n/fi.po +++ b/addons/delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index 3db92f5c60c..1d073fafb78 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 35f87f68a95..99de0f5e3fe 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index 1de226b0852..abf569458a6 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index dc96101f047..61edcc7c30c 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index 41343735601..7e5e5400e01 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index 3228759b882..f903f274903 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index 8b5abc3ce07..f82e7c7a241 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index 2490e766422..f5dff9efa08 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 6fb2c20a65a..541f4f1e38d 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index d021c33d41c..869158b73ac 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index 8d54d9e0c9c..cccceee39be 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index e99f8509c6b..dd4d23633a3 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index 99bc09cdfcd..79c01b8f4ae 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index 0a0d5b09c4f..39db410a1ad 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 8a9a4fe84b7..0f6c311303b 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index ac8837bb730..917a3f1e6b6 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 7262457ac24..39b9205f997 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 756dc0ecc3d..a26149bda58 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index 4da24f8bf8e..0b2286fa73e 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 5ea541359ee..2279ba6fdfe 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -8,14 +8,14 @@ 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 09:16+0000\n" +"PO-Revision-Date: 2013-01-17 10:28+0000\n" "Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 @@ -132,6 +132,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для создания прайс-листа на доставку для конкретного " +"региона.\n" +"

\n" +" Прайс-лист на доставку позволяет вам считать себестоимость и " +"цену продажи доставки в зависимости от веса\n" +" продуктов и других критериев. Вы можете определить несколько " +"прайс-листов\n" +" для каждого метода доставки: по стране или зоне в " +"конкретной\n" +" стране, определенной по почтовому индексу.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 @@ -438,6 +451,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для добавления нового способа доставки.\n" +"

\n" +" Каждая курьерская служба (например UPS) может иметь " +"несколько способов доставки (например\n" +" UPS Express, UPS Standard) с установкой цен для каждого из " +"способов.\n" +"

\n" +" Эти способы позволяют автоматически высчитать стоимость " +"доставки\n" +" в зависимости от ваших настроек; по заказу на продажу " +"(основанному на заявке)\n" +" или по счету (основанному на заказе на доставку).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -481,7 +509,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Единица измерения веса" #. module: delivery #: report:sale.shipping:0 @@ -557,7 +585,7 @@ msgstr "Перевозчик" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Способы доставки" #. module: delivery #: code:addons/delivery/sale.py:57 @@ -596,7 +624,7 @@ msgstr "Cостояния" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Единица измерения (единица измерения) это единица измерения веса" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 40a60fd733e..78143216484 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 14:19+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index 3d7260543e4..796f2088405 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index d6f0da31313..1129bb7e5ac 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 6ef76d10c9d..92cc0326587 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index 13f4ba7c572..a0ce5eb2d6b 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index 7f72a816a95..ba65d60c4f4 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index ab6578dffa8..6a012028676 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index cab66f9cb58..402d5850d44 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index 75a09cf0f59..667f6889982 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index 06930249dbb..09deff49025 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 7f97dc1abeb..e72fd6a7f36 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index a58cd61cf01..ca47cc319df 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index 1c0839edbf8..5a360713855 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index f9e2d459f0f..421e183baa6 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index 9265da26402..b7ca2ddf75a 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index 8a06077fd7a..8f6915c7a7a 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index e5f144d4c24..6b8a2cff0cf 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index d8cf5fb3195..3e57932fb21 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index 84763784960..4ddb4c3a127 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index bd88cb6cdf1..4d15b594407 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index b7a4bddfbfa..4e7cb860111 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 @@ -113,7 +113,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "El nombre del campo." #. module: document #: code:addons/document/document.py:326 @@ -258,7 +258,7 @@ msgstr "Tipo" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "¡El nombre de archivo debe ser único en un directorio!" #. module: document #: code:addons/document/document.py:110 diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 4c5a2bae7ec..ffd15b33722 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index 45acc297356..8b575dc6985 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 9c38073134b..d950af3bee1 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index afc1aa9f46b..2f2b2ba030f 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index ed618fa3a8c..9e84e70ccc7 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 9cae438f4a8..977841f8175 100644 --- a/addons/document/i18n/fi.po +++ b/addons/document/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index 88d169896aa..3ac68135ba9 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 69c0e8ce0de..a09355559c3 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index e0353f3a4f0..62a2e7ede25 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index 1e77074b64b..d368af2c853 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index 1586ab90fe1..8dc414b7b9a 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 22486f2875a..a3c6aa9dc57 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index e7e1eb04d91..299d6ad6e29 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index 831c87549c4..a9ec3f129e8 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index 9acce91747c..e33b42117b9 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index fc2c8922d6c..e10f2ed8d2b 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 94829928608..94d3c3c13a2 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index b9f422f9ec7..c281c383272 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index eae9ca1fe9e..782cee1e266 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index a3501ffbd18..a2347a8a7b2 100644 --- a/addons/document/i18n/nb.po +++ b/addons/document/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 557a6f97094..f2c6bf97ba8 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 71a5891ab98..f390eb6ff43 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index da5bc8bc316..52a1e022253 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index a7b97fdc804..c07ab1938c5 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 5239bc99faa..3d1e552024c 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index e281dc807e6..92a62bf9e54 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index 279bd2fccdd..3ec9ed0818e 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -8,14 +8,14 @@ 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 08:59+0000\n" -"Last-Translator: Эдуард \n" +"PO-Revision-Date: 2013-01-17 10:19+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 @@ -113,7 +113,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Название поля." #. module: document #: code:addons/document/document.py:326 @@ -203,6 +203,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для создания нового документа.\n" +"

\n" +" Репозиторий документов предоставляет вам доступ ко всем " +"вложениям, таким как\n" +" почта, проектные документы, счета и т.д.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:326 @@ -250,7 +258,7 @@ msgstr "Тип" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "Имя файла в папке должно быть уникальным !" #. module: document #: code:addons/document/document.py:110 @@ -367,7 +375,7 @@ msgstr "Файлы по пользователю" #. module: document #: view:ir.attachment:0 msgid "on" -msgstr "" +msgstr "на" #. module: document #: field:document.directory,domain:0 @@ -501,7 +509,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:6 #, python-format msgid "Attachment(s)" -msgstr "" +msgstr "Вложения" #. module: document #: selection:report.document.user,month:0 @@ -744,7 +752,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:17 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #. module: document #: field:document.directory.content,sequence:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index 6da1008ac91..9834609b3f2 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 26d87991547..edfc9dde258 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index de5ee27eb20..14b06182b78 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:11+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index 7461157f660..40fe1bc8189 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index 7cc2d93469e..8cdfbe38332 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 8918142d8a6..16b93cddf4e 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index c07c683c2a7..a70dd5e5d14 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 0e6e3521fee..7bb65cb51e8 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index 502577e70d8..01c9e001baa 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index 627332fc159..7a94c95a76d 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 208e01ac881..53c3874463d 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:31+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index d68d496fd17..7da942e6e0c 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index b7b37de3742..62bd7eb5f1d 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index b7d808d0a3f..9bef38e8105 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index 5cadd42b727..42b0a4b8ac7 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index bf22f3df865..cb82c1f6678 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index 26491e5edbb..85ea70db523 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index a629efb8e76..75550901726 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index 5c01cef7bf3..0f6c2e32fe6 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index 7b135e7ba8f..4346e136033 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index 8f66b0700c9..53bc3b3e796 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index 5eb6141e906..a39b5ad5ba8 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index 20b42aff613..dc180ae1198 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index 06d3e73521c..3bc6be21478 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index 5708d01bad5..2598d16dcd3 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 9761e56859b..7380278c842 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index 25da67e8df5..b81f6dec808 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index e4bb136ce6e..33d7d57ae47 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index 7583727cd6d..31a1fdf93cc 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index 78086c62485..ab525f2fba2 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index 5470a130639..c09ca41f6a0 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index 350be4e8ce6..c52f52ef69e 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index 9022920ccbf..5d623d8f8af 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index 88b63c2770e..52c26ea3096 100644 --- a/addons/document_ftp/i18n/mn.po +++ b/addons/document_ftp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po index f775c1b9526..ddf383a2651 100644 --- a/addons/document_ftp/i18n/nb.po +++ b/addons/document_ftp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index 99b73989ca3..49e583712cb 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index c05b4c9430b..2cbb6baf381 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index d1a56a62698..25c7d35e9a6 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index b6fe253e72e..c07f2480a93 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index 026a1e9f28a..913820692b3 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index 2c9b35e1386..9b2371eea59 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -44,7 +44,7 @@ msgstr "" #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse @@ -54,7 +54,7 @@ msgstr "Просмотр файлов" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "Щелкните URL-адрес для просмотра документов" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -69,7 +69,7 @@ msgstr "Настройка FTP сервера" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "Просмотр документов" #. module: document_ftp #: view:document.ftp.browse:0 @@ -97,7 +97,7 @@ msgstr "Адрес" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Cancel" -msgstr "" +msgstr "Отмена" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse @@ -117,7 +117,7 @@ msgstr "Просмотр документа" #. module: document_ftp #: view:document.ftp.browse:0 msgid "or" -msgstr "" +msgstr "или" #. module: document_ftp #: view:document.ftp.browse:0 diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index 20acb4c018c..b9a63418ca2 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index a72bf1db3ad..e916162285e 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index 987348bed18..48625fef223 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index ba216c60e02..459f95d80a0 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index a5ff2c11fee..4968008d6e4 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index 5ef0cb2fb77..f037d3fa815 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/vi.po b/addons/document_ftp/i18n/vi.po new file mode 100644 index 00000000000..227510e80e1 --- /dev/null +++ b/addons/document_ftp/i18n/vi.po @@ -0,0 +1,124 @@ +# Vietnamese 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-01-17 09:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Configure FTP Server" +msgstr "" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_configuration +msgid "Auto Directory Configuration" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "" +"Indicate the network address on which your OpenERP server should be " +"reachable for end-users. This depends on your network topology and " +"configuration, and will only affect the links displayed to the users. The " +"format is HOST:PORT and the default host (localhost) is only suitable for " +"access from the server machine itself.." +msgstr "" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_knowledge_config_settings +msgid "knowledge.config.settings" +msgstr "" + +#. module: document_ftp +#: model:ir.actions.act_url,name:document_ftp.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document_ftp +#: help:knowledge.config.settings,document_ftp_url:0 +msgid "Click the url to browse the documents" +msgstr "" + +#. module: document_ftp +#: field:document.ftp.browse,url:0 +msgid "FTP Server" +msgstr "" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory +msgid "FTP Server Configuration" +msgstr "" + +#. module: document_ftp +#: field:knowledge.config.settings,document_ftp_url:0 +msgid "Browse Documents" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Browse" +msgstr "" + +#. module: document_ftp +#: help:document.ftp.configuration,host:0 +msgid "" +"Server address or IP and port to which users should connect to for DMS access" +msgstr "" + +#. module: document_ftp +#: model:ir.ui.menu,name:document_ftp.menu_document_browse +msgid "Shared Repository (FTP)" +msgstr "" + +#. module: document_ftp +#: field:document.ftp.configuration,host:0 +msgid "Address" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Cancel" +msgstr "" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_browse +msgid "Document FTP Browse" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Knowledge Application Configuration" +msgstr "" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse +msgid "Document Browse" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "or" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Browse Document" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "res_config_contents" +msgstr "" diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index 84b5541e66e..4168a554005 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index 5b7309194a6..76515dde752 100644 --- a/addons/document_ftp/i18n/zh_TW.po +++ b/addons/document_ftp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index 120c9427c40..bcc27d03c36 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index 1e978eca52a..b9631d84fc6 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index 06706e0ec12..d52e56595f3 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index 443f9214e76..77f0e98512a 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index 8d8efa750da..8917382a598 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index 41c85982647..9e52cb4446d 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index 7c323f517bf..8bc76e83656 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index 8833764d99b..2417c589a81 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index 1b62a6231bc..9d5dd8be833 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index 1a001219b73..3da1d85f48c 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index 65f9132830c..3cdb407b551 100644 --- a/addons/document_page/i18n/fi.po +++ b/addons/document_page/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index bed856aa034..93540460e84 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index ad7d5e8332d..839a5ab503c 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index e1a1fe1aeed..24a3602e2e9 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index 586b183e81e..8b93a712d48 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index 67cee30ebbc..5f3e16093a9 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index ddb6614da4e..ba0c09c4e25 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index 4e8ef90c5cb..2d27bcb1c54 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index e02775ab606..0d3754a9713 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index 4cc2f268902..da60b03c1e2 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index 3a75e29b1ce..789bacd5271 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index d55fc75e85f..651e89c3ad9 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index 029c3680a10..c8cc672a3d2 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index 28a89937a15..08cb44d470a 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index e54a369f7bc..93fc8c2f5d9 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index e10c0e45820..b48c5d39fce 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 3fec1a6862a..b1077f42c69 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index afff77e5376..4afd176d4e3 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index 74467b825eb..9ef682d320f 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 @@ -23,7 +23,7 @@ msgstr "" #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category msgid "Category" -msgstr "" +msgstr "Категория" #. module: document_page #: view:document.page:0 @@ -46,7 +46,7 @@ msgstr "Меню" #: view:document.page:0 #: model:ir.model,name:document_page.model_document_page msgid "Document Page" -msgstr "" +msgstr "Страница документа" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history @@ -69,13 +69,15 @@ msgstr "Группировать по .." #. module: document_page #: view:document.page:0 msgid "Template" -msgstr "" +msgstr "Шаблон" #. module: document_page #: view:document.page:0 msgid "" "that will be used as a content template for all new page of this category." msgstr "" +"будет использоваться как шаблон содержимого для всех новых страниц этой " +"категории." #. module: document_page #: field:document.page,name:0 @@ -100,17 +102,17 @@ msgstr "wizard.document.page.history.show_diff" #. module: document_page #: field:document.page.history,create_uid:0 msgid "Modified By" -msgstr "" +msgstr "Изменено" #. module: document_page #: view:document.page.create.menu:0 msgid "or" -msgstr "" +msgstr "или" #. module: document_page #: help:document.page,type:0 msgid "Page type" -msgstr "" +msgstr "Тип страниц" #. module: document_page #: view:document.page.create.menu:0 @@ -121,18 +123,18 @@ msgstr "Информация меню" #: view:document.page.history:0 #: model:ir.model,name:document_page.model_document_page_history msgid "Document Page History" -msgstr "" +msgstr "История страницы документа" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "" +msgstr "История страницы" #. module: document_page #: code:addons/document_page/document_page.py:129 #, python-format msgid "There are no changes in revisions." -msgstr "" +msgstr "Нет изменений" #. module: document_page #: field:document.page.history,create_date:0 @@ -156,7 +158,7 @@ msgstr "Страницы" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_category msgid "Categories" -msgstr "" +msgstr "Категории" #. module: document_page #: field:document.page.create.menu,menu_parent_id:0 @@ -172,12 +174,12 @@ msgstr "Создан" #: code:addons/document_page/wizard/document_page_show_diff.py:50 #, python-format msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" +msgstr "Вы должны выбрать одну или две версии в истории!" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "" +msgstr "История страницы" #. module: document_page #: field:document.page.history,summary:0 @@ -187,12 +189,12 @@ msgstr "Итого" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page msgid "Create web pages" -msgstr "" +msgstr "Создание веб-страниц" #. module: document_page #: view:document.page.history:0 msgid "Document History" -msgstr "" +msgstr "История документа" #. module: document_page #: field:document.page.create.menu,menu_name:0 @@ -202,12 +204,12 @@ msgstr "Название меню" #. module: document_page #: field:document.page.history,page_id:0 msgid "Page" -msgstr "" +msgstr "Страница" #. module: document_page #: field:document.page,history_ids:0 msgid "History" -msgstr "" +msgstr "История" #. module: document_page #: field:document.page,write_date:0 @@ -224,14 +226,14 @@ msgstr "Создать меню" #. module: document_page #: field:document.page,display_content:0 msgid "Displayed Content" -msgstr "" +msgstr "Отображаемое содержимое" #. module: document_page #: code:addons/document_page/document_page.py:129 #: code:addons/document_page/wizard/document_page_show_diff.py:50 #, python-format msgid "Warning!" -msgstr "" +msgstr "Внимание!" #. module: document_page #: view:document.page.create.menu:0 @@ -247,9 +249,9 @@ msgstr "Различие" #. module: document_page #: view:document.page:0 msgid "Document Type" -msgstr "" +msgstr "Тип документа" #. module: document_page #: field:document.page,child_ids:0 msgid "Children" -msgstr "" +msgstr "Потомки" diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index 5fa3faeac4c..4a63f4cf270 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index 6d6a55e9ded..565e72d1eb5 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index 4db6d8d5b5e..585a932576b 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index f1636b104b6..ebbd90d23b4 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index 592b6896836..b35d2ee28d9 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index 247e50e38eb..533004c7568 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index e2a430849bf..ed5b89c454c 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index 9f8db349850..c818d4c0fda 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index eb69ba3af74..50ac94c4270 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index 5a1f020a4b5..88d21e8c5a4 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index 5d531177b26..7031b3d077a 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index e56c00e6c47..ec87672ffc4 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index ff02353a1dc..836067469d9 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index 9c0f8f938b9..1f855479461 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index d50d5d36307..00b665f9b6d 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index d608da58bd1..2f89b2ce5f1 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index 0b4d1d66d04..325d606a0ae 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index 9920982ade2..77c9ca1cb55 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index 0369f7cb607..ba17294095c 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index 4ec7aba854d..1c2a1210a60 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 494ec38ade9..c23e64da085 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index cab1df46392..62dfcea18a3 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index b70f9322443..568780845a8 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index 312382448b7..6fbf4d53344 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index e89b09a9c19..9e4b7e45534 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index 16086104ead..59eeb16ba15 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index c84b4b41e3c..f025b18d4b5 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index 2c29e12896a..d3d36e323ef 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index 989cf991197..a6eee850fe0 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index b31045163c0..7b40c8d14f4 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index 9f0522d3007..60249064a24 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index e214b6c470c..c616a2d5de9 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index 9cf771ef5fc..7da13cf3a7e 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index 232a448c6f0..c00ce57a6ab 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index c46a5c78c5f..1cdfb5ca4ce 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index a8df49685da..f8f4d24749a 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po index 334ff2986f0..3cb3814f241 100644 --- a/addons/document_webdav/i18n/nb.po +++ b/addons/document_webdav/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index d8dc286c620..7a19ac7c523 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index 237dfb1047d..4c920b72360 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index c041cdd892f..c0d9f20a84e 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index 2061237b381..b90bbf77fbd 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index 382cf0b056c..0b8297155af 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index c1f839eea33..87bbfe10707 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 10:00+0000\n" +"Last-Translator: Olga \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -31,7 +31,7 @@ msgstr "Документы" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "" +msgstr "Свойство документа" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -150,7 +150,7 @@ msgstr "Создатель" #. module: document_webdav #: view:document.webdav.file.property:0 msgid "Document Property" -msgstr "" +msgstr "Свойство документа" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index 0ee73e7149d..00f970fbff9 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index 47f752f4c90..21daf70b733 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index 28ef809772c..ff9f1818e8e 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 05e5018beeb..d81637e9a3d 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index ca0c0e66953..967d11cf42f 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index 7be45de5083..cfe1f1fecd1 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po index 834f82ffb22..73ffa59ad76 100644 --- a/addons/document_webdav/i18n/zh_TW.po +++ b/addons/document_webdav/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index f9dcfd2f985..f2c0cd30360 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index b06a7432483..f14fe5290b1 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 6bb307f98a5..0145d8d73c7 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 5462f616757..6122507312d 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index 7384557e42b..58eb718324e 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 95a77c8ad2a..e508309c066 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index b6d124c714c..6c31c27c747 100644 --- a/addons/edi/i18n/hr.po +++ b/addons/edi/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index 1a69b344fd5..9c6a66a3e23 100644 --- a/addons/edi/i18n/hu.po +++ b/addons/edi/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index 0fe01fe1226..e8179a67acc 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 60a3f3594d7..3e740d80104 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index 1e976f36a39..7f540274b86 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index 5106c9eeea5..c5ae43f311a 100644 --- a/addons/edi/i18n/nb.po +++ b/addons/edi/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index 05d315b57f6..9af331cebb4 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index fb038cb434f..1cb66f6a76f 100644 --- a/addons/edi/i18n/nl_BE.po +++ b/addons/edi/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index 1574cc85d04..d074bfa6b6a 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 6401aa4cb36..f12db6f81ff 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 952c9792088..7d83640f9f5 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index e2d0f51e746..ae10d6660a5 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index 79f71e08fda..f72c5206ba0 100644 --- a/addons/edi/i18n/ru.po +++ b/addons/edi/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index 66e8d4303b7..221be110904 100644 --- a/addons/edi/i18n/sl.po +++ b/addons/edi/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 16:57+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index 97c4335a96f..27a284f5007 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index ddb7b55bc93..7c608dc4382 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index 09b454165a3..d5fa6a7fedb 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index 03fdd43c493..75b2111ec6d 100644 --- a/addons/edi/i18n/zh_TW.po +++ b/addons/edi/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: edi #. openerp-web diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index 54b6dcfb401..06d881182f5 100644 --- a/addons/email_template/i18n/ar.po +++ b/addons/email_template/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index 9989e4eecb8..27db41bb71f 100644 --- a/addons/email_template/i18n/bg.po +++ b/addons/email_template/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index 993db18cfcc..ea9c91ba4f2 100644 --- a/addons/email_template/i18n/ca.po +++ b/addons/email_template/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index 66586c5ebb5..2397d29c441 100644 --- a/addons/email_template/i18n/cs.po +++ b/addons/email_template/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index b678093a758..d64554c97af 100644 --- a/addons/email_template/i18n/da.po +++ b/addons/email_template/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index 0b247c2bfe3..977d07d8e3f 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index fe9b17fdb16..c220419c6e9 100644 --- a/addons/email_template/i18n/es.po +++ b/addons/email_template/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index 9c05c6658e5..a423297bb35 100644 --- a/addons/email_template/i18n/es_CL.po +++ b/addons/email_template/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index d5016b473c7..c5136354e1b 100644 --- a/addons/email_template/i18n/es_CR.po +++ b/addons/email_template/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index a8ec1ced871..b688b26658c 100644 --- a/addons/email_template/i18n/es_EC.po +++ b/addons/email_template/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index b69d9621c8f..aa548e097d7 100644 --- a/addons/email_template/i18n/et.po +++ b/addons/email_template/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index 1826e63ba40..4f79fd831c8 100644 --- a/addons/email_template/i18n/fi.po +++ b/addons/email_template/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index d3a09154b45..5404c78bb62 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index 48f0debdb86..951556aa176 100644 --- a/addons/email_template/i18n/hr.po +++ b/addons/email_template/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index dc5231c99a4..145680f9d94 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index 4225cbf4ef5..0655aeb34c6 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index 2b702989e89..6e7ce6a0cd1 100644 --- a/addons/email_template/i18n/ja.po +++ b/addons/email_template/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index 03c905372a8..fce744c1e9e 100644 --- a/addons/email_template/i18n/mn.po +++ b/addons/email_template/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index d134cbcb80e..1a73b6f050d 100644 --- a/addons/email_template/i18n/nb.po +++ b/addons/email_template/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index 29929498209..6ba4ac35188 100644 --- a/addons/email_template/i18n/nl.po +++ b/addons/email_template/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index 6faf4d88af2..cf7ba695b83 100644 --- a/addons/email_template/i18n/pl.po +++ b/addons/email_template/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index 9c1eafa8041..8e00985ee11 100644 --- a/addons/email_template/i18n/pt.po +++ b/addons/email_template/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index ea28601a427..c49c2a23654 100644 --- a/addons/email_template/i18n/pt_BR.po +++ b/addons/email_template/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index a841792b884..d9778e9b091 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index 2f45a16b603..8ea7cc1c431 100644 --- a/addons/email_template/i18n/ru.po +++ b/addons/email_template/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 @@ -76,7 +76,7 @@ msgstr "Адрес отправителя (здесь могут быть исп #. module: email_template #: view:email.template:0 msgid "Remove context action" -msgstr "" +msgstr "Удалить контекстное действие" #. module: email_template #: help:email.template,mail_server_id:0 @@ -97,7 +97,7 @@ msgstr "Файл отчета" #. module: email_template #: view:email.template:0 msgid "Preview" -msgstr "" +msgstr "Просмотр" #. module: email_template #: field:email.template,reply_to:0 @@ -108,7 +108,7 @@ msgstr "Обратный адрес" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "Использовать шаблон" #. module: email_template #: field:email.template,body_html:0 @@ -120,7 +120,7 @@ msgstr "Тело" #: code:addons/email_template/email_template.py:244 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (копия)" #. module: email_template #: help:email.template,user_signature:0 @@ -140,7 +140,7 @@ msgstr "Сервер SMTP" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "Сохранить как новый шаблон" #. module: email_template #: help:email.template,sub_object:0 @@ -208,7 +208,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "" +msgstr "Конструктор динамических значений" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -249,7 +249,7 @@ msgstr "Расширенный" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "Просмотр" #. module: email_template #: view:email_template.preview:0 @@ -320,7 +320,7 @@ msgstr "" #: field:email.template,ref_ir_value:0 #: field:email_template.preview,ref_ir_value:0 msgid "Sidebar Button" -msgstr "" +msgstr "Кнопка боковой панели" #. module: email_template #: field:email.template,report_template:0 @@ -342,18 +342,18 @@ msgstr "Модель" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Мастер составления эл. почты" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "Добавить контекстное действие" #. module: email_template #: help:email.template,model_id:0 #: help:email_template.preview,model_id:0 msgid "The kind of document with with this template can be used" -msgstr "" +msgstr "Вид документа этого шаблона можно использовать" #. module: email_template #: field:email.template,email_recipients:0 @@ -381,12 +381,12 @@ msgstr "" #: field:email.template,model:0 #: field:email_template.preview,model:0 msgid "Related Document Model" -msgstr "" +msgstr "Модель связанного документа" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "Адресация" #. module: email_template #: help:email.template,email_recipients:0 @@ -417,7 +417,7 @@ msgstr "Копия" #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "" +msgstr "Применяется к" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -487,7 +487,7 @@ msgstr "Партнёр" #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "Значение по умолчанию" #. module: email_template #: help:email.template,attachment_ids:0 diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index 364acb6128d..23c4052f664 100644 --- a/addons/email_template/i18n/sl.po +++ b/addons/email_template/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-01 14:25+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index 61747c4c555..7ee7fbe2ad0 100644 --- a/addons/email_template/i18n/sr.po +++ b/addons/email_template/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index e58b863aa7d..30c69a1615e 100644 --- a/addons/email_template/i18n/sr@latin.po +++ b/addons/email_template/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index ba12cb610a0..60df1b8131c 100644 --- a/addons/email_template/i18n/sv.po +++ b/addons/email_template/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index 044c57108f4..3b8ecfb1e4a 100644 --- a/addons/email_template/i18n/tr.po +++ b/addons/email_template/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index 0e8559eb4ab..b1b9b98404b 100644 --- a/addons/email_template/i18n/zh_CN.po +++ b/addons/email_template/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index 9a875ef72a9..0bb9960c5aa 100644 --- a/addons/email_template/i18n/zh_TW.po +++ b/addons/email_template/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/event/i18n/ar.po b/addons/event/i18n/ar.po index cf38737f54b..d8067295533 100644 --- a/addons/event/i18n/ar.po +++ b/addons/event/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bg.po b/addons/event/i18n/bg.po index 326dc79a840..ec4f1bc0346 100644 --- a/addons/event/i18n/bg.po +++ b/addons/event/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bs.po b/addons/event/i18n/bs.po index b15da11ea3f..3fd96ca2c5c 100644 --- a/addons/event/i18n/bs.po +++ b/addons/event/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ca.po b/addons/event/i18n/ca.po index f4a08af651f..6a7691696f0 100644 --- a/addons/event/i18n/ca.po +++ b/addons/event/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/cs.po b/addons/event/i18n/cs.po index 77ac23b3984..6a56cd791f3 100644 --- a/addons/event/i18n/cs.po +++ b/addons/event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/da.po b/addons/event/i18n/da.po index 5a908bf4a90..8d7299a81fd 100644 --- a/addons/event/i18n/da.po +++ b/addons/event/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/de.po b/addons/event/i18n/de.po index 469707b25a7..52fc76aa6ef 100644 --- a/addons/event/i18n/de.po +++ b/addons/event/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/el.po b/addons/event/i18n/el.po index 2601e72cec5..fe9b6b99560 100644 --- a/addons/event/i18n/el.po +++ b/addons/event/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es.po b/addons/event/i18n/es.po index 164b7b25d89..338525c981a 100644 --- a/addons/event/i18n/es.po +++ b/addons/event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 @@ -512,7 +512,7 @@ msgstr "Diciembre" #. module: event #: help:event.registration,origin:0 msgid "Reference of the sales order which created the registration" -msgstr "" +msgstr "Referencia del pedido de venta que creó la inscripción" #. module: event #: field:report.event.registration,draft_state:0 diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index 76b7c05f1da..33464542d53 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_CR.po b/addons/event/i18n/es_CR.po index 2c5775ad244..f8b81efa481 100644 --- a/addons/event/i18n/es_CR.po +++ b/addons/event/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_EC.po b/addons/event/i18n/es_EC.po index 1b3dde40dbc..0a588732828 100644 --- a/addons/event/i18n/es_EC.po +++ b/addons/event/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/et.po b/addons/event/i18n/et.po index 511ef429457..bd1d8d040e3 100644 --- a/addons/event/i18n/et.po +++ b/addons/event/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fi.po b/addons/event/i18n/fi.po index 353d3f70301..e0d7bbc051d 100644 --- a/addons/event/i18n/fi.po +++ b/addons/event/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index b10fdd31246..e270e4592c3 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/gu.po b/addons/event/i18n/gu.po index c492b91a018..e7a33ec2df8 100644 --- a/addons/event/i18n/gu.po +++ b/addons/event/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hi.po b/addons/event/i18n/hi.po index 20b77247c94..dcb59f9c5a4 100644 --- a/addons/event/i18n/hi.po +++ b/addons/event/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hr.po b/addons/event/i18n/hr.po index e13fba25ba7..7371be6a8d6 100644 --- a/addons/event/i18n/hr.po +++ b/addons/event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hu.po b/addons/event/i18n/hu.po index 8c7a8928044..303ed580f2f 100644 --- a/addons/event/i18n/hu.po +++ b/addons/event/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/id.po b/addons/event/i18n/id.po index e9d172da6af..6ad09fedd64 100644 --- a/addons/event/i18n/id.po +++ b/addons/event/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index fdfbeaa8783..0d38e4298a6 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ja.po b/addons/event/i18n/ja.po index ba943b8408d..4a9966a5e12 100644 --- a/addons/event/i18n/ja.po +++ b/addons/event/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ko.po b/addons/event/i18n/ko.po index ea5bc9d2eaf..48ac1027fa6 100644 --- a/addons/event/i18n/ko.po +++ b/addons/event/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/lt.po b/addons/event/i18n/lt.po index 6d4f1ec634c..f952385ffd5 100644 --- a/addons/event/i18n/lt.po +++ b/addons/event/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/mn.po b/addons/event/i18n/mn.po index a2149c4b3d9..3915acfbedd 100644 --- a/addons/event/i18n/mn.po +++ b/addons/event/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nb.po b/addons/event/i18n/nb.po index c910f3881ca..c55ef81ce0d 100644 --- a/addons/event/i18n/nb.po +++ b/addons/event/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl.po b/addons/event/i18n/nl.po index 5fa75acd64b..0d0dd9befa5 100644 --- a/addons/event/i18n/nl.po +++ b/addons/event/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 @@ -263,7 +263,7 @@ msgstr "" #. module: event #: view:report.event.registration:0 msgid "Registrations in confirmed or done state" -msgstr "Registraties in de bevestigde of gereed status" +msgstr "Registraties in de bevestigde of verwerkte status" #. module: event #: code:addons/event/event.py:106 @@ -851,7 +851,7 @@ msgstr "" #: selection:event.event,state:0 #: selection:report.event.registration,event_state:0 msgid "Done" -msgstr "Afgerond" +msgstr "Verwerkt" #. module: event #: view:report.event.registration:0 diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index fe1299575e2..dfb9312ee17 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pl.po b/addons/event/i18n/pl.po index 9ed17eff60f..0d40eae7852 100644 --- a/addons/event/i18n/pl.po +++ b/addons/event/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index 5e01d1d670d..5d90d2db408 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index 3754a219207..c70c6625135 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 @@ -26,12 +26,12 @@ msgstr "Meus Eventos" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Participants" -msgstr "" +msgstr "Número de Participantes" #. module: event #: field:event.event,register_attended:0 msgid "# of Participations" -msgstr "" +msgstr "Nº de Participações" #. module: event #: field:event.event,main_speaker_id:0 @@ -57,6 +57,9 @@ msgid "" "enough registrations you are not able to confirm your event. (put 0 to " "ignore this rule )" msgstr "" +"É possível definir um nível mínimo de inscritos para cada evento. Se não " +"houverem inscrições suficientes você não será capaz de confirmar o seu " +"evento. (coloque 0 para ignorar esta regra)" #. module: event #: field:event.registration,date_open:0 @@ -66,7 +69,7 @@ msgstr "Data de Inscrição" #. module: event #: field:event.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Tipo de Evento" #. module: event #: model:event.event,name:event.event_0 @@ -78,7 +81,7 @@ msgstr "Show do Calypso" #: selection:event.registration,state:0 #: selection:report.event.registration,registration_state:0 msgid "Attended" -msgstr "" +msgstr "Frequentou" #. module: event #: selection:report.event.registration,month:0 @@ -88,7 +91,7 @@ msgstr "Março" #. module: event #: view:event.registration:0 msgid "Send Email" -msgstr "" +msgstr "Enviar E-mail" #. module: event #: field:event.event,company_id:0 @@ -102,22 +105,22 @@ msgstr "Empresa" #: field:event.event,email_confirmation_id:0 #: field:event.type,default_email_event:0 msgid "Event Confirmation Email" -msgstr "" +msgstr "Email de Confirmação do Evento" #. module: event #: field:event.type,default_registration_max:0 msgid "Default Maximum Registration" -msgstr "" +msgstr "Padrão de Máximo de Inscrições" #. module: event #: view:report.event.registration:0 msgid "Display" -msgstr "" +msgstr "Exibir" #. module: event #: field:event.event,register_avail:0 msgid "Available Registrations" -msgstr "" +msgstr "Inscrições Disponíveis" #. module: event #: view:event.registration:0 @@ -128,12 +131,12 @@ msgstr "Inscrição no Evento" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "" +msgstr "Te auxilia a gerenciar seus Eventos." #. module: event #: view:report.event.registration:0 msgid "Day" -msgstr "" +msgstr "Dia" #. module: event #: view:report.event.registration:0 @@ -161,13 +164,13 @@ msgstr "Análise de Eventos" #. module: event #: help:event.type,default_registration_max:0 msgid "It will select this default maximum value when you choose this event" -msgstr "" +msgstr "Irá definir este valor maximo por padrão ao selecionar este evento" #. module: event #: view:report.event.registration:0 #: field:report.event.registration,user_id_registration:0 msgid "Register" -msgstr "" +msgstr "Inscrição" #. module: event #: field:event.event,message_ids:0 @@ -215,7 +218,7 @@ msgstr "Cancelado" #. module: event #: view:event.event:0 msgid "ticket" -msgstr "" +msgstr "Ticket" #. module: event #: model:event.event,name:event.event_1 @@ -226,28 +229,28 @@ msgstr "Ópera de Verdi" #: help:event.event,message_unread:0 #: help:event.registration,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: event #: view:report.event.registration:0 #: field:report.event.registration,registration_state:0 msgid "Registration State" -msgstr "" +msgstr "Estado da Inscrição" #. module: event #: view:event.event:0 msgid "tickets" -msgstr "" +msgstr "tickets" #. module: event #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Falso" #. module: event #: field:event.registration,event_end_date:0 msgid "Event End Date" -msgstr "" +msgstr "Data final do Evento" #. module: event #: help:event.event,message_summary:0 @@ -256,6 +259,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: event #: view:report.event.registration:0 @@ -267,7 +273,7 @@ msgstr "Inscrições que estão como confirmadas ou concluídas" #: code:addons/event/event.py:108 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: event #: view:event.event:0 @@ -286,6 +292,7 @@ msgstr "Parceiro" #: help:event.type,default_registration_min:0 msgid "It will select this default minimum value when you choose this event" msgstr "" +"Irá selecionar este valor mínimo padrão quando você escolher este evento" #. module: event #: model:ir.model,name:event.model_event_type @@ -315,7 +322,7 @@ msgstr "Confirmado" #. module: event #: view:event.registration:0 msgid "Participant" -msgstr "" +msgstr "Participante" #. module: event #: view:event.registration:0 @@ -326,12 +333,12 @@ msgstr "Confirmar" #. module: event #: view:event.event:0 msgid "Organized by" -msgstr "" +msgstr "Organizado por" #. module: event #: view:event.event:0 msgid "Register with this event" -msgstr "" +msgstr "Inscreva-se neste evento" #. module: event #: help:event.type,default_email_registration:0 @@ -339,17 +346,19 @@ msgid "" "It will select this default confirmation registration mail value when you " "choose this event" msgstr "" +"Irá selecionar esse email de confirmação padrão quando você escolher este " +"evento" #. module: event #: view:event.event:0 msgid "Only" -msgstr "" +msgstr "Apenas" #. module: event #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: event #: view:event.event:0 @@ -362,7 +371,7 @@ msgstr "Localização" #: view:event.registration:0 #: field:event.registration,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: event #: view:event.registration:0 @@ -384,12 +393,12 @@ msgstr "Email" #: code:addons/event/event.py:329 #, python-format msgid "New registration confirmed: %s." -msgstr "" +msgstr "Nova inscrição confirmada: %s." #. module: event #: view:event.event:0 msgid "Upcoming" -msgstr "" +msgstr "Próximos" #. module: event #: field:event.registration,create_date:0 @@ -400,7 +409,7 @@ msgstr "Data de Criação" #: view:report.event.registration:0 #: field:report.event.registration,user_id:0 msgid "Event Responsible" -msgstr "" +msgstr "Responsável pelo Evento" #. module: event #: view:event.event:0 @@ -417,7 +426,7 @@ msgstr "Julho" #. module: event #: field:event.event,reply_to:0 msgid "Reply-To Email" -msgstr "" +msgstr "Email Responder para" #. module: event #: view:event.registration:0 @@ -427,7 +436,7 @@ msgstr "Inscrições confirmadas" #. module: event #: view:event.event:0 msgid "Starting Date" -msgstr "" +msgstr "Data de Início" #. module: event #: view:event.event:0 @@ -463,7 +472,7 @@ msgstr "Status de Lotação de Eventos" #. module: event #: view:event.event:0 msgid "Event Category" -msgstr "" +msgstr "Categoria de Evento" #. module: event #: field:event.event,register_prospect:0 @@ -473,13 +482,13 @@ msgstr "Inscrições Não Confirmadas" #. module: event #: model:ir.actions.client,name:event.action_client_event_menu msgid "Open Event Menu" -msgstr "" +msgstr "Abrir Menu de Evento" #. module: event #: view:report.event.registration:0 #: field:report.event.registration,event_state:0 msgid "Event State" -msgstr "" +msgstr "Situação do Evento" #. module: event #: field:event.registration,log_ids:0 @@ -504,7 +513,7 @@ msgstr "Dezembro" #. module: event #: help:event.registration,origin:0 msgid "Reference of the sales order which created the registration" -msgstr "" +msgstr "Referência do pedido de vendas que criou a inscrição" #. module: event #: field:report.event.registration,draft_state:0 @@ -515,7 +524,7 @@ msgstr " # No de rascunho de Inscrições" #: field:event.event,email_registration_id:0 #: field:event.type,default_email_registration:0 msgid "Registration Confirmation Email" -msgstr "" +msgstr "Email de Confirmação da Inscrição" #. module: event #: view:report.event.registration:0 @@ -526,12 +535,12 @@ msgstr "Mês" #. module: event #: field:event.registration,date_closed:0 msgid "Attended Date" -msgstr "" +msgstr "Data da participação" #. module: event #: view:event.event:0 msgid "Finish Event" -msgstr "" +msgstr "Finalizar Evento" #. module: event #: view:event.registration:0 @@ -541,7 +550,7 @@ msgstr "Inscrições não confirmadas" #. module: event #: view:event.event:0 msgid "Event Description" -msgstr "" +msgstr "Descrição do Evento" #. module: event #: field:event.event,date_begin:0 @@ -551,18 +560,18 @@ msgstr "Data de Início" #. module: event #: view:event.confirm:0 msgid "or" -msgstr "" +msgstr "ou" #. module: event #: help:res.partner,speaker:0 msgid "Check this box if this contact is a speaker." -msgstr "" +msgstr "Marque esta caixa se este contato é um palestrante." #. module: event #: code:addons/event/event.py:108 #, python-format msgid "No Tickets Available!" -msgstr "" +msgstr "Nenhum ticket disponível!" #. module: event #: help:event.event,state:0 @@ -572,6 +581,10 @@ msgid "" "status is set to 'Done'.If event is cancelled the status is set to " "'Cancelled'." msgstr "" +"Se o evento é criado, a situação é 'Provisório'. Se o evento está confirmado " +"para as datas especiais o status é definido como \"confirmado\". Se o evento " +"é acabou, o status é definido como 'Concluído'. Se o evento é cancelado o " +"status é definido como \"Cancelado\"." #. module: event #: model:ir.actions.act_window,help:event.action_event_view @@ -587,6 +600,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo evento.\n" +"

\n" +" O OpenERP ajuda a programar e organizar eficazmente os seus " +"eventos:\n" +"                acompanha inscrições e participações, automatiza os e-mails " +"de confirmação,\n" +"                vender tickets, etc\n" +"

\n" +" " #. module: event #: help:event.event,register_max:0 @@ -595,6 +618,9 @@ msgid "" "much registrations you are not able to confirm your event. (put 0 to ignore " "this rule )" msgstr "" +"Você pode definir para cada evento um nível máximo de inscrições. Se você " +"tem muitas inscrições você não será capaz de confirmar o seu evento. " +"(coloque 0 para ignorar esta regra)" #. module: event #: field:event.event,user_id:0 @@ -609,6 +635,8 @@ msgid "" "expected minimum/maximum. Please reconsider those limits before going " "further." msgstr "" +"O número total de inscrições confirmadas para o evento '%s' não está dentro " +"do mínimo / máximo. Por favor reconsidere estes limites antes de continuar" #. module: event #: help:event.event,email_confirmation_id:0 @@ -616,11 +644,13 @@ msgid "" "If you set an email template, each participant will receive this email " "announcing the confirmation of the event." msgstr "" +"Se você definir um modelo de e-mail, cada participante irá receber este e-" +"mail anunciando a confirmação do evento." #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "Lotação do Evento por Situação" #. module: event #: selection:report.event.registration,event_state:0 @@ -657,12 +687,12 @@ msgstr "Eventos" #: view:event.registration:0 #: field:event.registration,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: event #: field:event.event,city:0 msgid "city" -msgstr "" +msgstr "cidade" #. module: event #: selection:report.event.registration,month:0 @@ -672,7 +702,7 @@ msgstr "Agosto" #. module: event #: field:event.event,zip:0 msgid "zip" -msgstr "" +msgstr "CEP" #. module: event #: field:res.partner,event_ids:0 @@ -683,7 +713,7 @@ msgstr "desconhecido" #. module: event #: field:event.event,street2:0 msgid "Street2" -msgstr "" +msgstr "Complemento" #. module: event #: selection:report.event.registration,month:0 @@ -697,17 +727,20 @@ msgid "" "emails sent automatically at event or registrations confirmation. You can " "also put your email address of your mail gateway if you use one." msgstr "" +"O endereço de e-mail do organizador, que é colocado no 'resposta' de todos " +"os e-mails enviados automaticamente no evento ou confirmação de inscrições. " +"Você também pode colocar o endereço de e-mail do seu servidor de mensagens." #. module: event #: help:event.event,message_ids:0 #: help:event.registration,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: event #: field:event.registration,phone:0 msgid "Phone" -msgstr "" +msgstr "Fone" #. module: event #: model:email.template,body_html:event.confirmation_event @@ -722,18 +755,26 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Olá ${object.name},

\n" +"

O evento ${object.event_id.name} que você se inscreveu está " +"confirmado e será entre ${object.event_id.date_begin} até " +"${object.event_id.date_end}.\n" +" Para mais informações por favor entre em contato conosco.

\n" +"

Obrigado por sua participação!

\n" +"

Atenciosamente

" #. module: event #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: event #: field:event.registration,user_id:0 #: model:res.groups,name:event.group_event_user msgid "User" -msgstr "" +msgstr "Usuário" #. module: event #: view:event.confirm:0 @@ -747,7 +788,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "(confirmed:" -msgstr "" +msgstr "(confirmado:" #. module: event #: view:event.registration:0 @@ -793,6 +834,8 @@ msgid "" "You have already set a registration for this event as 'Attended'. Please " "reset it to draft if you want to cancel this event." msgstr "" +"você já está inscrito neste evento como 'Participei'. Por favor volte ao " +"estado provisório se você deseja cancelar este evento." #. module: event #: view:res.partner:0 @@ -802,12 +845,12 @@ msgstr "Data" #. module: event #: view:event.event:0 msgid "Email Configuration" -msgstr "" +msgstr "Configuração de Email" #. module: event #: field:event.type,default_registration_min:0 msgid "Default Minimum Registration" -msgstr "" +msgstr "Inscrições Mínimas Padrão" #. module: event #: field:event.event,address_id:0 @@ -826,12 +869,14 @@ msgid "" "This field contains the template of the mail that will be automatically sent " "each time a registration for this event is confirmed." msgstr "" +"Este campo contém o modelo de email que será enviado automaticamente a cada " +"inscrição confirmada para este evento." #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "Attended the Event" -msgstr "" +msgstr "Participaram do evento" #. module: event #: constraint:event.event:0 @@ -842,7 +887,7 @@ msgstr "Erro! A Data de Encerramento não pode ser anterior a Data de Início." #: code:addons/event/event.py:355 #, python-format msgid "You must wait for the starting day of the event to do this action." -msgstr "" +msgstr "Você deve esperar o dia de início do evento para fazer esta ação." #. module: event #: selection:event.event,state:0 @@ -853,7 +898,7 @@ msgstr "Concluído" #. module: event #: view:report.event.registration:0 msgid "Show Confirmed Registrations" -msgstr "" +msgstr "Mostrar Inscrições Confirmadas" #. module: event #: view:event.confirm:0 @@ -863,35 +908,35 @@ msgstr "Cancelar" #. module: event #: field:event.registration,reply_to:0 msgid "Reply-to Email" -msgstr "" +msgstr "Email Reponder para" #. module: event #: code:addons/event/event.py:106 #, python-format msgid "Only %d Seats are Available!" -msgstr "" +msgstr "Apenas %d Lugares estão Disponíveis!" #. module: event #: model:email.template,subject:event.confirmation_event #: model:email.template,subject:event.confirmation_registration msgid "Your registration at ${object.event_id.name}" -msgstr "" +msgstr "Sua inscrição para ${object.event_id.name}" #. module: event #: view:event.registration:0 msgid "Set To Unconfirmed" -msgstr "" +msgstr "Definir como Não Confirmado" #. module: event #: view:event.event:0 #: field:event.event,is_subscribed:0 msgid "Subscribed" -msgstr "" +msgstr "Inscrito" #. module: event #: view:event.event:0 msgid "Unsubscribe" -msgstr "" +msgstr "Cancelar a inscrição" #. module: event #: view:event.event:0 @@ -902,7 +947,7 @@ msgstr "Responsável" #. module: event #: view:report.event.registration:0 msgid "Registration contact" -msgstr "" +msgstr "Contato da Inscrição" #. module: event #: view:report.event.registration:0 @@ -914,18 +959,18 @@ msgstr "Orador" #. module: event #: view:event.event:0 msgid "Upcoming events from today" -msgstr "" +msgstr "Próximos eventos a partir de hoje" #. module: event #: model:event.event,name:event.event_2 msgid "Conference on ERP Business" -msgstr "" +msgstr "Conferencia em Negócios de ERP" #. module: event #: model:ir.actions.act_window,name:event.act_event_view_registration #: model:mail.message.subtype,name:event.mt_event_registration msgid "New Registration" -msgstr "" +msgstr "Nova Inscrição" #. module: event #: field:event.event,note:0 @@ -940,7 +985,7 @@ msgstr " # No de Inscrições Confirmadas" #. module: event #: field:report.event.registration,name_registration:0 msgid "Participant / Contact Name" -msgstr "" +msgstr "Participante / Nome do Contato" #. module: event #: selection:report.event.registration,month:0 @@ -955,7 +1000,7 @@ msgstr "Inscrições de Eventos" #. module: event #: view:event.event:0 msgid "No ticket available." -msgstr "" +msgstr "Nenhum ticket disponível." #. module: event #: field:event.event,register_max:0 @@ -1005,7 +1050,7 @@ msgstr "Encerrar Inscrição" #. module: event #: field:event.registration,origin:0 msgid "Source Document" -msgstr "" +msgstr "Documento de Origem" #. module: event #: selection:report.event.registration,month:0 @@ -1018,6 +1063,8 @@ msgid "" "It will select this default confirmation event mail value when you choose " "this event" msgstr "" +"Irá selecionar esse email padrão de confirmação do evento quando você " +"escolher este evento" #. module: event #: view:report.event.registration:0 @@ -1047,12 +1094,12 @@ msgstr "ID (identificação)" #. module: event #: field:event.type,default_reply_to:0 msgid "Default Reply-To" -msgstr "" +msgstr "Responder-Para padrão" #. module: event #: view:event.event:0 msgid "available." -msgstr "" +msgstr "disponível" #. module: event #: field:event.registration,event_begin_date:0 @@ -1063,12 +1110,12 @@ msgstr "Data de Início do Evento" #. module: event #: view:report.event.registration:0 msgid "Participant / Contact" -msgstr "" +msgstr "Participante / Contato" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "" +msgstr "Inscrições Atuais" #. module: event #: model:email.template,body_html:event.confirmation_registration @@ -1083,6 +1130,14 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Olá ${object.name},

\n" +"

Nós confirmamos sua inscrição para o evento " +"${object.event_id.name} .\n" +" Você irá receber um email com mais informações (como o horário, " +"agenda...) assim que o evento for confirmado.

\n" +"

Obrigado por sua participação!

\n" +"

Atenciosamente

" #. module: event #: help:event.event,reply_to:0 @@ -1092,6 +1147,10 @@ msgid "" "registrations confirmation. You can also put the email address of your mail " "gateway if you use one." msgstr "" +"O endereço de e-mail do organizador é usado aqui, para ficar como padrão de " +"'Responder Para' dos e-mails enviados automaticamente no evento ou " +"confirmação de inscrições. Você também pode colocar o endereço de e-mail de " +"seu servidor." #. module: event #: view:event.event:0 @@ -1102,12 +1161,12 @@ msgstr "Inscrever" #. module: event #: model:res.groups,name:event.group_event_manager msgid "Manager" -msgstr "" +msgstr "Gerente" #. module: event #: field:event.event,street:0 msgid "Street" -msgstr "" +msgstr "Endereço" #. module: event #: view:event.confirm:0 diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index 424171db4ce..c5d40ea7cf2 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ru.po b/addons/event/i18n/ru.po index 35afb5ae099..a2c2708762d 100644 --- a/addons/event/i18n/ru.po +++ b/addons/event/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sk.po b/addons/event/i18n/sk.po index 259d36a4d65..d45618c281d 100644 --- a/addons/event/i18n/sk.po +++ b/addons/event/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index 9d29e68f0ac..bed3936c40c 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sq.po b/addons/event/i18n/sq.po index 1b442772a51..8bab29785c4 100644 --- a/addons/event/i18n/sq.po +++ b/addons/event/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:12+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr.po b/addons/event/i18n/sr.po index 338b83bf92e..a08c5c175d4 100644 --- a/addons/event/i18n/sr.po +++ b/addons/event/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr@latin.po b/addons/event/i18n/sr@latin.po index 751624b5e38..8868eb3e38c 100644 --- a/addons/event/i18n/sr@latin.po +++ b/addons/event/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sv.po b/addons/event/i18n/sv.po index 37dce900ef5..d0209bbb350 100644 --- a/addons/event/i18n/sv.po +++ b/addons/event/i18n/sv.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:45+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 @@ -26,7 +26,7 @@ msgstr "Mina evenemang" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Participants" -msgstr "" +msgstr "Antal deltagare" #. module: event #: field:event.event,register_attended:0 @@ -66,7 +66,7 @@ msgstr "Registreringsdatum" #. module: event #: field:event.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Evenemangstyp" #. module: event #: model:event.event,name:event.event_0 @@ -78,7 +78,7 @@ msgstr "Bon Jovi-konsert" #: selection:event.registration,state:0 #: selection:report.event.registration,registration_state:0 msgid "Attended" -msgstr "" +msgstr "Deltog" #. module: event #: selection:report.event.registration,month:0 @@ -88,7 +88,7 @@ msgstr "Mars" #. module: event #: view:event.registration:0 msgid "Send Email" -msgstr "" +msgstr "Skicka e-post" #. module: event #: field:event.event,company_id:0 @@ -112,12 +112,12 @@ msgstr "" #. module: event #: view:report.event.registration:0 msgid "Display" -msgstr "" +msgstr "Visa" #. module: event #: field:event.event,register_avail:0 msgid "Available Registrations" -msgstr "" +msgstr "Tillgängliga registreringar" #. module: event #: view:event.registration:0 @@ -128,12 +128,12 @@ msgstr "Evenemangsregistrering" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "" +msgstr "Hjälper dig att hantera dina evenemang." #. module: event #: view:report.event.registration:0 msgid "Day" -msgstr "" +msgstr "Dag" #. module: event #: view:report.event.registration:0 @@ -167,7 +167,7 @@ msgstr "" #: view:report.event.registration:0 #: field:report.event.registration,user_id_registration:0 msgid "Register" -msgstr "" +msgstr "Registrera" #. module: event #: field:event.event,message_ids:0 @@ -191,7 +191,7 @@ msgstr "Anmälan" #: code:addons/event/event.py:355 #, python-format msgid "Error!" -msgstr "" +msgstr "Fel!" #. module: event #: view:event.event:0 @@ -247,7 +247,7 @@ msgstr "" #. module: event #: field:event.registration,event_end_date:0 msgid "Event End Date" -msgstr "" +msgstr "Evenemangets slutdatum" #. module: event #: help:event.event,message_summary:0 @@ -267,7 +267,7 @@ msgstr "Bekräftade eller klara anmälningar" #: code:addons/event/event.py:108 #, python-format msgid "Warning!" -msgstr "" +msgstr "Varning!" #. module: event #: view:event.event:0 @@ -315,7 +315,7 @@ msgstr "Bekräftad" #. module: event #: view:event.registration:0 msgid "Participant" -msgstr "" +msgstr "Deltagare" #. module: event #: view:event.registration:0 @@ -326,12 +326,12 @@ msgstr "Bekräfta" #. module: event #: view:event.event:0 msgid "Organized by" -msgstr "" +msgstr "Organiserad av" #. module: event #: view:event.event:0 msgid "Register with this event" -msgstr "" +msgstr "Registrera för det här evenemanget" #. module: event #: help:event.type,default_email_registration:0 @@ -343,13 +343,13 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Only" -msgstr "" +msgstr "Endast" #. module: event #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: event #: view:event.event:0 @@ -362,7 +362,7 @@ msgstr "Plats" #: view:event.registration:0 #: field:event.registration,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olästa meddelanden" #. module: event #: view:event.registration:0 @@ -384,12 +384,12 @@ msgstr "Epost" #: code:addons/event/event.py:329 #, python-format msgid "New registration confirmed: %s." -msgstr "" +msgstr "Nya registreringar bekräftade %s." #. module: event #: view:event.event:0 msgid "Upcoming" -msgstr "" +msgstr "Kommande" #. module: event #: field:event.registration,create_date:0 @@ -427,7 +427,7 @@ msgstr "Bekräftade anmälningar" #. module: event #: view:event.event:0 msgid "Starting Date" -msgstr "" +msgstr "Startdatum" #. module: event #: view:event.event:0 @@ -463,7 +463,7 @@ msgstr "Evenemangens anmälningsgrad" #. module: event #: view:event.event:0 msgid "Event Category" -msgstr "" +msgstr "Evenemangskategori" #. module: event #: field:event.event,register_prospect:0 @@ -473,7 +473,7 @@ msgstr "Icke bekräftade anmälningar" #. module: event #: model:ir.actions.client,name:event.action_client_event_menu msgid "Open Event Menu" -msgstr "" +msgstr "Öppna evenemangsmenyn" #. module: event #: view:report.event.registration:0 @@ -531,7 +531,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Finish Event" -msgstr "" +msgstr "Slutför evenemang" #. module: event #: view:event.registration:0 @@ -541,7 +541,7 @@ msgstr "Anmälan är obekräftad" #. module: event #: view:event.event:0 msgid "Event Description" -msgstr "" +msgstr "Evenemangsbeskrivning" #. module: event #: field:event.event,date_begin:0 @@ -551,12 +551,12 @@ msgstr "Startdatum" #. module: event #: view:event.confirm:0 msgid "or" -msgstr "" +msgstr "eller" #. module: event #: help:res.partner,speaker:0 msgid "Check this box if this contact is a speaker." -msgstr "" +msgstr "Om markerad så är den här kontakten en talare." #. module: event #: code:addons/event/event.py:108 @@ -649,7 +649,7 @@ msgstr "Nya evenemang" #: model:ir.ui.menu,name:event.menu_reporting_events #: view:res.partner:0 msgid "Events" -msgstr "Händelser" +msgstr "Evenemang" #. module: event #: view:event.event:0 @@ -662,7 +662,7 @@ msgstr "" #. module: event #: field:event.event,city:0 msgid "city" -msgstr "" +msgstr "stad" #. module: event #: selection:report.event.registration,month:0 @@ -672,7 +672,7 @@ msgstr "Augusti" #. module: event #: field:event.event,zip:0 msgid "zip" -msgstr "" +msgstr "postnummer" #. module: event #: field:res.partner,event_ids:0 @@ -683,7 +683,7 @@ msgstr "Okänd" #. module: event #: field:event.event,street2:0 msgid "Street2" -msgstr "" +msgstr "Gata 2" #. module: event #: selection:report.event.registration,month:0 @@ -702,12 +702,12 @@ msgstr "" #: help:event.event,message_ids:0 #: help:event.registration,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Meddelande- och kommunikationshistorik" #. module: event #: field:event.registration,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: event #: model:email.template,body_html:event.confirmation_event @@ -727,13 +727,13 @@ msgstr "" #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: event #: field:event.registration,user_id:0 #: model:res.groups,name:event.group_event_user msgid "User" -msgstr "" +msgstr "Användare" #. module: event #: view:event.confirm:0 @@ -747,7 +747,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "(confirmed:" -msgstr "" +msgstr "(bekräftad:" #. module: event #: view:event.registration:0 @@ -802,7 +802,7 @@ msgstr "Datum" #. module: event #: view:event.event:0 msgid "Email Configuration" -msgstr "" +msgstr "E-postkonfiguration" #. module: event #: field:event.type,default_registration_min:0 @@ -831,7 +831,7 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "Attended the Event" -msgstr "" +msgstr "Deltog på evenemanget" #. module: event #: constraint:event.event:0 @@ -853,7 +853,7 @@ msgstr "Klar" #. module: event #: view:report.event.registration:0 msgid "Show Confirmed Registrations" -msgstr "" +msgstr "Visa bekräftade registreringar" #. module: event #: view:event.confirm:0 @@ -869,13 +869,13 @@ msgstr "" #: code:addons/event/event.py:106 #, python-format msgid "Only %d Seats are Available!" -msgstr "" +msgstr "Endast %d platser är tillgängliga!" #. module: event #: model:email.template,subject:event.confirmation_event #: model:email.template,subject:event.confirmation_registration msgid "Your registration at ${object.event_id.name}" -msgstr "" +msgstr "Din registrering för ${object.event_id.name}" #. module: event #: view:event.registration:0 @@ -891,7 +891,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Unsubscribe" -msgstr "" +msgstr "Avsluta prenumeration" #. module: event #: view:event.event:0 @@ -902,7 +902,7 @@ msgstr "Ansvarig" #. module: event #: view:report.event.registration:0 msgid "Registration contact" -msgstr "" +msgstr "Registreringskontakt" #. module: event #: view:report.event.registration:0 @@ -914,7 +914,7 @@ msgstr "Talare" #. module: event #: view:event.event:0 msgid "Upcoming events from today" -msgstr "" +msgstr "Kommande evenemang från idag" #. module: event #: model:event.event,name:event.event_2 @@ -925,7 +925,7 @@ msgstr "" #: model:ir.actions.act_window,name:event.act_event_view_registration #: model:mail.message.subtype,name:event.mt_event_registration msgid "New Registration" -msgstr "" +msgstr "Ny registrering" #. module: event #: field:event.event,note:0 @@ -940,7 +940,7 @@ msgstr " # antal bekräftade anmälningar" #. module: event #: field:report.event.registration,name_registration:0 msgid "Participant / Contact Name" -msgstr "" +msgstr "Deltagar-/kontaktnamn" #. module: event #: selection:report.event.registration,month:0 @@ -1005,7 +1005,7 @@ msgstr "Stäng anmälan" #. module: event #: field:event.registration,origin:0 msgid "Source Document" -msgstr "" +msgstr "Källdokument" #. module: event #: selection:report.event.registration,month:0 @@ -1052,7 +1052,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "available." -msgstr "" +msgstr "tillgänglig." #. module: event #: field:event.registration,event_begin_date:0 @@ -1063,12 +1063,12 @@ msgstr "Evenemangsstartdatum" #. module: event #: view:report.event.registration:0 msgid "Participant / Contact" -msgstr "" +msgstr "Deltagare/kontakt" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "" +msgstr "Nuvarande registreringar" #. module: event #: model:email.template,body_html:event.confirmation_registration diff --git a/addons/event/i18n/tlh.po b/addons/event/i18n/tlh.po index 6407453d822..bddbb118c2a 100644 --- a/addons/event/i18n/tlh.po +++ b/addons/event/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tr.po b/addons/event/i18n/tr.po index 6806d753297..436fdfe6461 100644 --- a/addons/event/i18n/tr.po +++ b/addons/event/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/uk.po b/addons/event/i18n/uk.po index e66aa3a4594..365cfe19a06 100644 --- a/addons/event/i18n/uk.po +++ b/addons/event/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/vi.po b/addons/event/i18n/vi.po index c76553a9d54..8aff23a57d9 100644 --- a/addons/event/i18n/vi.po +++ b/addons/event/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index e599773e216..9c254670d51 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index 35c7d7fa03a..19da57e9366 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event #: view:event.event:0 diff --git a/addons/event_moodle/i18n/de.po b/addons/event_moodle/i18n/de.po index cd2fe7d8aba..d39860b0d58 100644 --- a/addons/event_moodle/i18n/de.po +++ b/addons/event_moodle/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/es.po b/addons/event_moodle/i18n/es.po index d8e63b07a3c..946ea34341d 100644 --- a/addons/event_moodle/i18n/es.po +++ b/addons/event_moodle/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/fr.po b/addons/event_moodle/i18n/fr.po index f6733792aef..8c3ee14f461 100644 --- a/addons/event_moodle/i18n/fr.po +++ b/addons/event_moodle/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/hr.po b/addons/event_moodle/i18n/hr.po index 9c1a8b7fb4f..14319e02a21 100644 --- a/addons/event_moodle/i18n/hr.po +++ b/addons/event_moodle/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/nl.po b/addons/event_moodle/i18n/nl.po index c4e248bf7b5..3bf3b561c55 100644 --- a/addons/event_moodle/i18n/nl.po +++ b/addons/event_moodle/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt.po b/addons/event_moodle/i18n/pt.po index c94a4ce93f2..dc8a17167d4 100644 --- a/addons/event_moodle/i18n/pt.po +++ b/addons/event_moodle/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt_BR.po b/addons/event_moodle/i18n/pt_BR.po index c22895dce6d..346deb3ce18 100644 --- a/addons/event_moodle/i18n/pt_BR.po +++ b/addons/event_moodle/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/zh_CN.po b/addons/event_moodle/i18n/zh_CN.po index 14e33def97a..5dc07af83cf 100644 --- a/addons/event_moodle/i18n/zh_CN.po +++ b/addons/event_moodle/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_sale/i18n/ar.po b/addons/event_sale/i18n/ar.po index 1fa7d2247f3..a265ec9539c 100644 --- a/addons/event_sale/i18n/ar.po +++ b/addons/event_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/de.po b/addons/event_sale/i18n/de.po index 56f8b72e170..bd4a4026b93 100644 --- a/addons/event_sale/i18n/de.po +++ b/addons/event_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/es.po b/addons/event_sale/i18n/es.po index 13cdaf022ad..1d3d4a54fa6 100644 --- a/addons/event_sale/i18n/es.po +++ b/addons/event_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -28,6 +28,8 @@ msgid "" "Determine if a product needs to create automatically an event registration " "at the confirmation of a sales order line." msgstr "" +"Determina si un producto crea automáticamente una inscripción a un evento en " +"la confirmación de la línea del pedido de venta." #. module: event_sale #: help:sale.order.line,event_id:0 @@ -48,6 +50,9 @@ msgid "" "Select event types so when we use this product in sales order lines, it will " "filter events of this type only." msgstr "" +"Seleccione los tipos de evento para que cuando se utilice este producto en " +"las líneas de los pedidos de venta, se filtren eventos de este tipo " +"únicamente." #. module: event_sale #: field:product.product,event_type_id:0 @@ -78,7 +83,7 @@ msgstr "Formación técnica" #: code:addons/event_sale/event_sale.py:88 #, python-format msgid "The registration %s has been created from the Sales Order %s." -msgstr "" +msgstr "Se ha creado la inscripción %s desde el pedido de venta %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/event_sale/i18n/fr.po b/addons/event_sale/i18n/fr.po index 7037f74c105..c581b4d039b 100644 --- a/addons/event_sale/i18n/fr.po +++ b/addons/event_sale/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/hr.po b/addons/event_sale/i18n/hr.po index d3cc0879476..4dad4ecb3d3 100644 --- a/addons/event_sale/i18n/hr.po +++ b/addons/event_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/it.po b/addons/event_sale/i18n/it.po index 9a828a5837f..1095d4ab595 100644 --- a/addons/event_sale/i18n/it.po +++ b/addons/event_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/nl.po b/addons/event_sale/i18n/nl.po index 4ce4821e670..9d83f7e3988 100644 --- a/addons/event_sale/i18n/nl.po +++ b/addons/event_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pl.po b/addons/event_sale/i18n/pl.po index 5bd31d77f40..bfaab1d0401 100644 --- a/addons/event_sale/i18n/pl.po +++ b/addons/event_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index 9106ea245b9..c4a626106d6 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt_BR.po b/addons/event_sale/i18n/pt_BR.po index 6ae9445f690..553dc2c4e7f 100644 --- a/addons/event_sale/i18n/pt_BR.po +++ b/addons/event_sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -28,6 +28,8 @@ msgid "" "Determine if a product needs to create automatically an event registration " "at the confirmation of a sales order line." msgstr "" +"Determina se um produto precisa criar uma inscrição automaticamente na " +"confirmação da linha do pedido de vendas." #. module: event_sale #: help:sale.order.line,event_id:0 @@ -48,6 +50,8 @@ msgid "" "Select event types so when we use this product in sales order lines, it will " "filter events of this type only." msgstr "" +"Escolha o tipo de evento quando usar este produto em linhas do pedido de " +"vendas, irá filtrar apenas eventos desse tipo." #. module: event_sale #: field:product.product,event_type_id:0 @@ -78,7 +82,7 @@ msgstr "Treinamento Técnico" #: code:addons/event_sale/event_sale.py:88 #, python-format msgid "The registration %s has been created from the Sales Order %s." -msgstr "" +msgstr "A inscrição %s foi criada pelo Pedido de Vendas %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/event_sale/i18n/sl.po b/addons/event_sale/i18n/sl.po index 1f08dd59018..cbf2dcef2c0 100644 --- a/addons/event_sale/i18n/sl.po +++ b/addons/event_sale/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-01-05 17:51+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/zh_CN.po b/addons/event_sale/i18n/zh_CN.po index 805143cc9c4..0d4ccb39e26 100644 --- a/addons/event_sale/i18n/zh_CN.po +++ b/addons/event_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/fetchmail/i18n/ar.po b/addons/fetchmail/i18n/ar.po index bbd561a5df2..c47d0ddfda0 100644 --- a/addons/fetchmail/i18n/ar.po +++ b/addons/fetchmail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/bg.po b/addons/fetchmail/i18n/bg.po index d6f0e7c811c..ccc25c760cd 100644 --- a/addons/fetchmail/i18n/bg.po +++ b/addons/fetchmail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ca.po b/addons/fetchmail/i18n/ca.po index d16a6434425..a20d9102375 100644 --- a/addons/fetchmail/i18n/ca.po +++ b/addons/fetchmail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/da.po b/addons/fetchmail/i18n/da.po index 0897b1d1fe7..26f5ff77c08 100644 --- a/addons/fetchmail/i18n/da.po +++ b/addons/fetchmail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/de.po b/addons/fetchmail/i18n/de.po index 2defeeae1ca..49bb7b24c85 100644 --- a/addons/fetchmail/i18n/de.po +++ b/addons/fetchmail/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/el.po b/addons/fetchmail/i18n/el.po index 24e43d4bae0..1a96a9f9f1c 100644 --- a/addons/fetchmail/i18n/el.po +++ b/addons/fetchmail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/en_GB.po b/addons/fetchmail/i18n/en_GB.po index b91d94303cd..aad7c15433a 100644 --- a/addons/fetchmail/i18n/en_GB.po +++ b/addons/fetchmail/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/es.po b/addons/fetchmail/i18n/es.po index b5d8da2732c..356bf023bc7 100644 --- a/addons/fetchmail/i18n/es.po +++ b/addons/fetchmail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -72,7 +72,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "" +msgstr "Configurar la pasarela de correo electrónico entrante" #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fetchmail/i18n/es_CR.po b/addons/fetchmail/i18n/es_CR.po index a50f60b5baf..f3d4e266b97 100644 --- a/addons/fetchmail/i18n/es_CR.po +++ b/addons/fetchmail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/et.po b/addons/fetchmail/i18n/et.po index fe7e47d400a..da8ab3757eb 100644 --- a/addons/fetchmail/i18n/et.po +++ b/addons/fetchmail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fi.po b/addons/fetchmail/i18n/fi.po index 23d2b9b5791..3537f8606c2 100644 --- a/addons/fetchmail/i18n/fi.po +++ b/addons/fetchmail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index 8a63a37a0de..6c2b9577636 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/gl.po b/addons/fetchmail/i18n/gl.po index 73b0f7bba7b..e364dae3502 100644 --- a/addons/fetchmail/i18n/gl.po +++ b/addons/fetchmail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hr.po b/addons/fetchmail/i18n/hr.po index 08f3d183dfb..248cb8abe05 100644 --- a/addons/fetchmail/i18n/hr.po +++ b/addons/fetchmail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hu.po b/addons/fetchmail/i18n/hu.po index 7b4e2695c39..401d2a30dff 100644 --- a/addons/fetchmail/i18n/hu.po +++ b/addons/fetchmail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index 4aa26e86f6b..4d3952fb71f 100644 --- a/addons/fetchmail/i18n/it.po +++ b/addons/fetchmail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ja.po b/addons/fetchmail/i18n/ja.po index d5cb5dfa1e1..841fb2c6930 100644 --- a/addons/fetchmail/i18n/ja.po +++ b/addons/fetchmail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lt.po b/addons/fetchmail/i18n/lt.po index 743d81af6ed..1be82c9f84c 100644 --- a/addons/fetchmail/i18n/lt.po +++ b/addons/fetchmail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lv.po b/addons/fetchmail/i18n/lv.po index 77ceeef03a2..4b5ea6dc0f0 100644 --- a/addons/fetchmail/i18n/lv.po +++ b/addons/fetchmail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/mk.po b/addons/fetchmail/i18n/mk.po index 6f7e19ac387..1be7f2fb0e8 100644 --- a/addons/fetchmail/i18n/mk.po +++ b/addons/fetchmail/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/mn.po b/addons/fetchmail/i18n/mn.po index 14be2a14c46..9d7d815b359 100644 --- a/addons/fetchmail/i18n/mn.po +++ b/addons/fetchmail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nb.po b/addons/fetchmail/i18n/nb.po index ebb273fe754..7361ca20803 100644 --- a/addons/fetchmail/i18n/nb.po +++ b/addons/fetchmail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nl.po b/addons/fetchmail/i18n/nl.po index f3ce64f66a7..ad79dff4898 100644 --- a/addons/fetchmail/i18n/nl.po +++ b/addons/fetchmail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pl.po b/addons/fetchmail/i18n/pl.po index 8bcd7fc2738..d5848b4a8fc 100644 --- a/addons/fetchmail/i18n/pl.po +++ b/addons/fetchmail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index 36751acec48..b373b5b4ed7 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt_BR.po b/addons/fetchmail/i18n/pt_BR.po index d329db41d74..7789ec4a311 100644 --- a/addons/fetchmail/i18n/pt_BR.po +++ b/addons/fetchmail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -72,7 +72,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "" +msgstr "Configure o servidor de emails de entrada" #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 7a0d2c54487..84369fbc716 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ru.po b/addons/fetchmail/i18n/ru.po index fe716967f5c..a178aff3bd6 100644 --- a/addons/fetchmail/i18n/ru.po +++ b/addons/fetchmail/i18n/ru.po @@ -8,14 +8,14 @@ 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 09:22+0000\n" -"Last-Translator: Olga \n" +"PO-Revision-Date: 2013-01-17 10:22+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -71,7 +71,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "" +msgstr "Настройте шлюз входящей почты" #. module: fetchmail #: view:fetchmail.server:0 @@ -102,7 +102,7 @@ msgstr "Локальный сервер" #. module: fetchmail #: field:fetchmail.server,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_server @@ -122,7 +122,7 @@ msgstr "SSL" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_config_settings msgid "fetchmail.config.settings" -msgstr "" +msgstr "Настройки эл. почты" #. module: fetchmail #: field:fetchmail.server,date:0 @@ -197,6 +197,8 @@ msgid "" "Here is what we got instead:\n" " %s." msgstr "" +"Это то что мы получили взамен:\n" +" %s." #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 4532959b612..57514f8142b 100644 --- a/addons/fetchmail/i18n/sl.po +++ b/addons/fetchmail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr.po b/addons/fetchmail/i18n/sr.po index af046f194c7..da7bd2fc0a4 100644 --- a/addons/fetchmail/i18n/sr.po +++ b/addons/fetchmail/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr@latin.po b/addons/fetchmail/i18n/sr@latin.po index 45ea0b39145..2d4278c79ea 100644 --- a/addons/fetchmail/i18n/sr@latin.po +++ b/addons/fetchmail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sv.po b/addons/fetchmail/i18n/sv.po index 9585554aef6..6a33d373584 100644 --- a/addons/fetchmail/i18n/sv.po +++ b/addons/fetchmail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/tr.po b/addons/fetchmail/i18n/tr.po index 8166e663f9e..b677da956ea 100644 --- a/addons/fetchmail/i18n/tr.po +++ b/addons/fetchmail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/vi.po b/addons/fetchmail/i18n/vi.po index 6e06b3183a8..00ebe5b2ab9 100644 --- a/addons/fetchmail/i18n/vi.po +++ b/addons/fetchmail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/zh_CN.po b/addons/fetchmail/i18n/zh_CN.po index da92139a115..439e932f7ba 100644 --- a/addons/fetchmail/i18n/zh_CN.po +++ b/addons/fetchmail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fleet/i18n/de.po b/addons/fleet/i18n/de.po index ee71e14a98a..20afeb3a4e7 100644 --- a/addons/fleet/i18n/de.po +++ b/addons/fleet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/es.po b/addons/fleet/i18n/es.po index 588b787d9bc..54e9f18900b 100644 --- a/addons/fleet/i18n/es.po +++ b/addons/fleet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -144,7 +144,7 @@ msgstr "Litro" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu msgid "Open Fleet Menu" -msgstr "" +msgstr "Abrir menú de flota" #. module: fleet #: view:board.board:0 @@ -301,7 +301,7 @@ msgstr "Mensajes" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "Usuario" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 @@ -972,7 +972,7 @@ msgstr "Registros de los servicios" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 @@ -1058,7 +1058,7 @@ msgstr "Repuesto del inyector de combustible" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu msgid "Vehicle Status" -msgstr "" +msgstr "Estado del vehículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 @@ -1933,7 +1933,7 @@ msgstr "Costes generados" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secuencia" #. module: fleet #: field:fleet.vehicle,color:0 @@ -1978,7 +1978,7 @@ msgstr "Nº de asientos del vehículo" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "Responsable" #. module: fleet #: view:fleet.vehicle.log.services:0 diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index e4a0bb2b5c6..b88d7a4b7b2 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/fr.po b/addons/fleet/i18n/fr.po index 82be0a2f774..f2b69272251 100644 --- a/addons/fleet/i18n/fr.po +++ b/addons/fleet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index 2f8ba6054be..1d3bca8c4f9 100644 --- a/addons/fleet/i18n/hr.po +++ b/addons/fleet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/it.po b/addons/fleet/i18n/it.po index c592b5bcd09..42ae3673b14 100644 --- a/addons/fleet/i18n/it.po +++ b/addons/fleet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl.po b/addons/fleet/i18n/nl.po index 155fe7ec508..fca21792afe 100644 --- a/addons/fleet/i18n/nl.po +++ b/addons/fleet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pl.po b/addons/fleet/i18n/pl.po index 13e995b66b4..be3c6d7bb4e 100644 --- a/addons/fleet/i18n/pl.po +++ b/addons/fleet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index b22d4252173..325dd288842 100644 --- a/addons/fleet/i18n/pt.po +++ b/addons/fleet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index cf95e832345..df804e7c0db 100644 --- a/addons/fleet/i18n/pt_BR.po +++ b/addons/fleet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ru.po b/addons/fleet/i18n/ru.po index 81942437667..4d609c478e3 100644 --- a/addons/fleet/i18n/ru.po +++ b/addons/fleet/i18n/ru.po @@ -8,14 +8,14 @@ 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-26 09:05+0000\n" -"Last-Translator: Эдуард \n" +"PO-Revision-Date: 2013-01-17 11:23+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -25,7 +25,7 @@ msgstr "Гибрид" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_compact msgid "Compact" -msgstr "" +msgstr "Компактный" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_1 @@ -36,6 +36,7 @@ msgstr "" #: help:fleet.vehicle,vin_sn:0 msgid "Unique number written on the vehicle motor (VIN/SN number)" msgstr "" +"Уникальный номер написанный на двигателе автомобиля (VIN/серийный номер)" #. module: fleet #: selection:fleet.service.type,category:0 @@ -63,7 +64,7 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Vehicle costs" -msgstr "" +msgstr "Стоимость транспорта" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -147,22 +148,22 @@ msgstr "" #. module: fleet #: view:board.board:0 msgid "Fuel Costs" -msgstr "" +msgstr "Стоимость топлива" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_9 msgid "Battery Inspection" -msgstr "" +msgstr "Осмотр батареи" #. module: fleet #: field:fleet.vehicle,company_id:0 msgid "Company" -msgstr "" +msgstr "Компания" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Invoice Date" -msgstr "" +msgstr "Дата выставления счета" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -204,41 +205,41 @@ msgstr "" #: view:fleet.vehicle:0 #: selection:fleet.vehicle.cost,cost_type:0 msgid "Services" -msgstr "" +msgstr "Услуги" #. module: fleet #: help:fleet.vehicle,odometer:0 #: help:fleet.vehicle.cost,odometer:0 #: help:fleet.vehicle.cost,odometer_id:0 msgid "Odometer measure of the vehicle at the moment of this log" -msgstr "" +msgstr "Показания километража на автомобиле на момент этой записи" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,notes:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Правила и условия" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_kanban msgid "Vehicles with alerts" -msgstr "" +msgstr "Автомобили с предупреждениями" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_costs_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_costs_menu msgid "Vehicle Costs" -msgstr "" +msgstr "Транспортные расходы" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Total Cost" -msgstr "" +msgstr "Общие расходы" #. module: fleet #: selection:fleet.service.type,category:0 msgid "Both" -msgstr "" +msgstr "Оба" #. module: fleet #: field:fleet.vehicle.log.contract,cost_id:0 @@ -250,17 +251,17 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Terminate Contract" -msgstr "" +msgstr "Завершить контракт" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 msgid "Parent cost to this current cost" -msgstr "" +msgstr "Родительские расходы для этих расходов" #. module: fleet #: help:fleet.vehicle.log.contract,cost_frequency:0 msgid "Frequency of the recuring cost" -msgstr "" +msgstr "Частота постоянства расходов" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_1 @@ -280,23 +281,23 @@ msgstr "" #: view:fleet.vehicle.log.services:0 #: field:fleet.vehicle.log.services,notes:0 msgid "Notes" -msgstr "" +msgstr "Заметки" #. module: fleet #: code:addons/fleet/fleet.py:47 #, python-format msgid "Operation not allowed!" -msgstr "" +msgstr "Операция не разрешена!" #. module: fleet #: field:fleet.vehicle,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "Пользователь" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 @@ -308,17 +309,17 @@ msgstr "" #: field:fleet.vehicle.log.fuel,cost_amount:0 #: field:fleet.vehicle.log.services,cost_amount:0 msgid "Amount" -msgstr "" +msgstr "Сумма" #. module: fleet #: field:fleet.vehicle,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные сообщения" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_6 msgid "Air Filter Replacement" -msgstr "" +msgstr "Замена воздушного фильтра" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_tag @@ -328,63 +329,63 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "show the services logs for this vehicle" -msgstr "" +msgstr "показать сервисные записи для этого автомобиля" #. module: fleet #: field:fleet.vehicle,contract_renewal_name:0 msgid "Name of contract to renew soon" -msgstr "" +msgstr "Название контракта для продления в скором времени" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior msgid "Senior" -msgstr "" +msgstr "Старший" #. module: fleet #: help:fleet.vehicle.log.contract,state:0 msgid "Choose wheter the contract is still valid or not" -msgstr "" +msgstr "Выберите, остается ли действующим контракт или нет" #. module: fleet #: selection:fleet.vehicle,transmission:0 msgid "Automatic" -msgstr "" +msgstr "Автоматический" #. module: fleet #: help:fleet.vehicle,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: fleet #: code:addons/fleet/fleet.py:414 #, python-format msgid "Driver: from '%s' to '%s'" -msgstr "" +msgstr "Водитель: от '%s' до '%s'" #. module: fleet #: view:fleet.vehicle:0 msgid "and" -msgstr "" +msgstr "и" #. module: fleet #: field:fleet.vehicle.model.brand,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Фото среднего размера" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_34 msgid "Oxygen Sensor Replacement" -msgstr "" +msgstr "Замена кислородного датчика" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Service Type" -msgstr "" +msgstr "Тип сервиса" #. module: fleet #: help:fleet.vehicle,transmission:0 msgid "Transmission Used by the vehicle" -msgstr "" +msgstr "Трансмиссия, используемая в автомобиле" #. module: fleet #: code:addons/fleet/fleet.py:730 @@ -392,12 +393,12 @@ msgstr "" #: model:ir.actions.act_window,name:fleet.act_renew_contract #, python-format msgid "Renew Contract" -msgstr "" +msgstr "Продлить контракт" #. module: fleet #: view:fleet.vehicle:0 msgid "show the odometer logs for this vehicle" -msgstr "" +msgstr "показать записи километража для этого автомобиля" #. module: fleet #: help:fleet.vehicle,odometer_unit:0 @@ -407,17 +408,17 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Costs Per Month" -msgstr "" +msgstr "Сервисные расходы за месяц" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Effective Costs" -msgstr "" +msgstr "Эффективные затраты" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_8 msgid "Repair and maintenance" -msgstr "" +msgstr "Ремонт и техническое обслуживание" #. module: fleet #: help:fleet.vehicle.log.contract,purchaser_id:0 @@ -440,22 +441,36 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для создания нового контракта.\n" +"

\n" +" Управляйте всеми вашими контрактами (лизинг, страховка и " +"т.д.) со\n" +" связанными с ними услугами, издержками. OpenERP будет " +"автоматически предупреждать\n" +" вас, когда некоторые контракты понадобится продлить.\n" +"

\n" +" Каждый контракт (например лизинговый) может включать в себя " +"несколько услуг\n" +" (ремонт, страховка, техническое обслуживание).\n" +"

\n" +" " #. module: fleet #: model:ir.model,name:fleet.model_fleet_service_type msgid "Type of services available on a vehicle" -msgstr "" +msgstr "Тип сервиса доступный для автомобиля" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_service_types_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_service_types_menu msgid "Service Types" -msgstr "" +msgstr "Типы услуг" #. module: fleet #: view:board.board:0 msgid "Contracts Costs" -msgstr "" +msgstr "Затраты контрактов" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act @@ -493,6 +508,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для создания новых затрат.\n" +"

\n" +" OpenERP помогает вам управлять затратами для ваших разных\n" +" автомобилей. Затраты создаются автоматически из услуг,\n" +" контрактов (фиксированные или повторяющиеся) и журналов " +"топлива.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 @@ -502,12 +526,12 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "" +msgstr "Подрядчик" #. module: fleet #: field:fleet.vehicle,license_plate:0 msgid "License Plate" -msgstr "" +msgstr "Номерной знак" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 @@ -517,33 +541,33 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 msgid "Recurring Cost Frequency" -msgstr "" +msgstr "Частота повторения расходов" #. module: fleet #: field:fleet.vehicle.log.fuel,inv_ref:0 #: field:fleet.vehicle.log.services,inv_ref:0 msgid "Invoice Reference" -msgstr "" +msgstr "Ссылка на счет" #. module: fleet #: field:fleet.vehicle,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Подписчики" #. module: fleet #: field:fleet.vehicle,location:0 msgid "Location" -msgstr "" +msgstr "Местоположение" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Costs Per Month" -msgstr "" +msgstr "Издержки в месяц" #. module: fleet #: field:fleet.contract.state,name:0 msgid "Contract Status" -msgstr "" +msgstr "Статус контракта" #. module: fleet #: field:fleet.vehicle,contract_renewal_total:0 @@ -553,17 +577,17 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.cost,cost_subtype_id:0 msgid "Type" -msgstr "" +msgstr "Тип" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 msgid "Has Contracts Overdued" -msgstr "" +msgstr "Был ли контракт просрочен" #. module: fleet #: field:fleet.vehicle.cost,amount:0 msgid "Total Price" -msgstr "" +msgstr "Общая цена" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 @@ -573,12 +597,12 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_14 msgid "Car Wash" -msgstr "" +msgstr "Мойка машины" #. module: fleet #: help:fleet.vehicle,driver_id:0 msgid "Driver of the vehicle" -msgstr "" +msgstr "Водитель автомобиля" #. module: fleet #: view:fleet.vehicle:0 @@ -588,7 +612,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_refueling msgid "Refueling" -msgstr "" +msgstr "Дозаправка" #. module: fleet #: help:fleet.vehicle,message_summary:0 @@ -600,12 +624,12 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 msgid "A/C Recharge" -msgstr "" +msgstr "Зарядка АКБ" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel msgid "Fuel log for vehicles" -msgstr "" +msgstr "Журнал топлива для транспорта" #. module: fleet #: view:fleet.vehicle:0 @@ -615,27 +639,27 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Costs Per Month" -msgstr "" +msgstr "Затраты на топливо в месяц" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan msgid "Sedan" -msgstr "" +msgstr "Седан" #. module: fleet #: field:fleet.vehicle,seats:0 msgid "Seats Number" -msgstr "" +msgstr "Количество посадочных мест" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible msgid "Convertible" -msgstr "" +msgstr "Конвертируемый" #. module: fleet #: model:ir.ui.menu,name:fleet.fleet_configuration msgid "Configuration" -msgstr "" +msgstr "Настройка" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -651,7 +675,7 @@ msgstr "" #. module: fleet #: help:fleet.vehicle,model_id:0 msgid "Model of the vehicle" -msgstr "" +msgstr "Модель транспорта" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_state_act diff --git a/addons/fleet/i18n/sl.po b/addons/fleet/i18n/sl.po index d401becd81a..26d0d220b37 100644 --- a/addons/fleet/i18n/sl.po +++ b/addons/fleet/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2013-01-01 14:15+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sv.po b/addons/fleet/i18n/sv.po new file mode 100644 index 00000000000..6ba2b6de97d --- /dev/null +++ b/addons/fleet/i18n/sv.po @@ -0,0 +1,1912 @@ +# Swedish 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:06+0000\n" +"PO-Revision-Date: 2013-01-17 23:59+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: fleet +#: selection:fleet.vehicle,fuel_type:0 +msgid "Hybrid" +msgstr "Hybrid" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_compact +msgid "Compact" +msgstr "Kompakt" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_1 +msgid "A/C Compressor Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,vin_sn:0 +msgid "Unique number written on the vehicle motor (VIN/SN number)" +msgstr "" + +#. module: fleet +#: selection:fleet.service.type,category:0 +#: view:fleet.vehicle.log.contract:0 +#: view:fleet.vehicle.log.services:0 +msgid "Service" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Monthly" +msgstr "Månadsvis" + +#. module: fleet +#: code:addons/fleet/fleet.py:62 +#, python-format +msgid "Unknown" +msgstr "Okänt" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_20 +msgid "Engine/Drive Belt(s) Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Vehicle costs" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,fuel_type:0 +msgid "Diesel" +msgstr "Diesel" + +#. module: fleet +#: code:addons/fleet/fleet.py:421 +#, python-format +msgid "License Plate: from '%s' to '%s'" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_38 +msgid "Resurface Rotors" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +#: view:fleet.vehicle.model:0 +msgid "Group By..." +msgstr "Gruppera efter..." + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_32 +msgid "Oil Pump Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_18 +msgid "Engine Belt Inspection" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,cost_frequency:0 +msgid "No" +msgstr "Nej" + +#. module: fleet +#: help:fleet.vehicle,power:0 +msgid "Power in kW of the vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_2 +msgid "Depreciation and Interests" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,insurer_id:0 +#: field:fleet.vehicle.log.fuel,vendor_id:0 +#: field:fleet.vehicle.log.services,vendor_id:0 +msgid "Supplier" +msgstr "Leverantör" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_35 +msgid "Power Steering Hose Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Odometer details" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "Has Alert(s)" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.fuel,liter:0 +msgid "Liter" +msgstr "" + +#. module: fleet +#: model:ir.actions.client,name:fleet.action_fleet_menu +msgid "Open Fleet Menu" +msgstr "" + +#. module: fleet +#: view:board.board:0 +msgid "Fuel Costs" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_9 +msgid "Battery Inspection" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,company_id:0 +msgid "Company" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Invoice Date" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +msgid "Refueling Details" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:659 +#, python-format +msgid "%s contract(s) need(s) to be renewed and/or closed!" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Indicative Costs" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_16 +msgid "Charging System Diagnosis" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,car_value:0 +msgid "Value of the bought vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_44 +msgid "Tie Rod End Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_24 +msgid "Head Gasket(s) Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +#: selection:fleet.vehicle.cost,cost_type:0 +msgid "Services" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,odometer:0 +#: help:fleet.vehicle.cost,odometer:0 +#: help:fleet.vehicle.cost,odometer_id:0 +msgid "Odometer measure of the vehicle at the moment of this log" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +#: field:fleet.vehicle.log.contract,notes:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_kanban +msgid "Vehicles with alerts" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_costs_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_costs_menu +msgid "Vehicle Costs" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Total Cost" +msgstr "" + +#. module: fleet +#: selection:fleet.service.type,category:0 +msgid "Both" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,cost_id:0 +#: field:fleet.vehicle.log.fuel,cost_id:0 +#: field:fleet.vehicle.log.services,cost_id:0 +msgid "Automatically created field to link to parent fleet.vehicle.cost" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Terminate Contract" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,parent_id:0 +msgid "Parent cost to this current cost" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Frequency of the recuring cost" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_1 +msgid "Calculation Benefit In Kind" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,expiration_date:0 +msgid "" +"Date when the coverage of the contract expirates (by default, one year after " +"begin date)" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +#: field:fleet.vehicle.log.fuel,notes:0 +#: view:fleet.vehicle.log.services:0 +#: field:fleet.vehicle.log.services,notes:0 +msgid "Notes" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:47 +#, python-format +msgid "Operation not allowed!" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: fleet +#: model:res.groups,name:fleet.group_fleet_user +msgid "User" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,vehicle_id:0 +msgid "Vehicle concerned by this log" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,cost_amount:0 +#: field:fleet.vehicle.log.fuel,cost_amount:0 +#: field:fleet.vehicle.log.services,cost_amount:0 +msgid "Amount" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_6 +msgid "Air Filter Replacement" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_tag +msgid "fleet.vehicle.tag" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "show the services logs for this vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,contract_renewal_name:0 +msgid "Name of contract to renew soon" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior +msgid "Senior" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,state:0 +msgid "Choose wheter the contract is still valid or not" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,transmission:0 +msgid "Automatic" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:414 +#, python-format +msgid "Driver: from '%s' to '%s'" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "and" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.model.brand,image_medium:0 +msgid "Medium-sized photo" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_34 +msgid "Oxygen Sensor Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.services:0 +msgid "Service Type" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,transmission:0 +msgid "Transmission Used by the vehicle" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:730 +#: view:fleet.vehicle.log.contract:0 +#: model:ir.actions.act_window,name:fleet.act_renew_contract +#, python-format +msgid "Renew Contract" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "show the odometer logs for this vehicle" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,odometer_unit:0 +msgid "Unit of the odometer " +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.services:0 +msgid "Services Costs Per Month" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Effective Costs" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_8 +msgid "Repair and maintenance" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,purchaser_id:0 +msgid "Person to which the contract is signed for" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_contract_act +msgid "" +"

\n" +" Click to create a new contract. \n" +"

\n" +" Manage all your contracts (leasing, insurances, etc.) with\n" +" their related services, costs. OpenERP will automatically " +"warn\n" +" you when some contracts have to be renewed.\n" +"

\n" +" Each contract (e.g.: leasing) may include several services\n" +" (reparation, insurances, periodic maintenance).\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_service_type +msgid "Type of services available on a vehicle" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_service_types_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_service_types_menu +msgid "Service Types" +msgstr "" + +#. module: fleet +#: view:board.board:0 +msgid "Contracts Costs" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_log_services_menu +msgid "Vehicles Services Logs" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu +msgid "Vehicles Fuel Logs" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.model.brand:0 +msgid "" +"$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " +"$(this).addClass('oe_employee_picture_wide') } });" +msgstr "" + +#. module: fleet +#: view:board.board:0 +msgid "Vehicles With Alerts" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_costs_act +msgid "" +"

\n" +" Click to create a new cost.\n" +"

\n" +" OpenERP helps you managing the costs for your different\n" +" vehicles. Costs are created automatically from services,\n" +" contracts (fixed or recurring) and fuel logs.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "show the fuel logs for this vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,purchaser_id:0 +msgid "Contractor" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,license_plate:0 +msgid "License Plate" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,state:0 +msgid "To Close" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Recurring Cost Frequency" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.fuel,inv_ref:0 +#: field:fleet.vehicle.log.services,inv_ref:0 +msgid "Invoice Reference" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,location:0 +msgid "Location" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Costs Per Month" +msgstr "" + +#. module: fleet +#: field:fleet.contract.state,name:0 +msgid "Contract Status" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,contract_renewal_total:0 +msgid "Total of contracts due or overdue minus one" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,cost_subtype_id:0 +msgid "Type" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,contract_renewal_overdue:0 +msgid "Has Contracts Overdued" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,amount:0 +msgid "Total Price" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_27 +msgid "Heater Core Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_14 +msgid "Car Wash" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,driver_id:0 +msgid "Driver of the vehicle" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "other(s)" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_refueling +msgid "Refueling" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_5 +msgid "A/C Recharge" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel +msgid "Fuel log for vehicles" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "Engine Options" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +msgid "Fuel Costs Per Month" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan +msgid "Sedan" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,seats:0 +msgid "Seats Number" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible +msgid "Convertible" +msgstr "" + +#. module: fleet +#: model:ir.ui.menu,name:fleet.fleet_configuration +msgid "Configuration" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +#: field:fleet.vehicle.log.contract,sum_cost:0 +msgid "Indicative Costs Total" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_junior +msgid "Junior" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,model_id:0 +msgid "Model of the vehicle" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_state_act +msgid "" +"

\n" +" Click to create a vehicule status.\n" +"

\n" +" You can customize available status to track the evolution " +"of\n" +" each vehicule. Example: Active, Being Repaired, Sold.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +#: field:fleet.vehicle,log_fuel:0 +#: view:fleet.vehicle.log.fuel:0 +msgid "Fuel Logs" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:409 +#: code:addons/fleet/fleet.py:413 +#: code:addons/fleet/fleet.py:417 +#: code:addons/fleet/fleet.py:420 +#, python-format +msgid "None" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs_non_effective +#: model:ir.ui.menu,name:fleet.menu_fleet_reporting_indicative_costs +msgid "Indicative Costs Analysis" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_12 +msgid "Brake Inspection" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,state_id:0 +msgid "Current state of the vehicle" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,transmission:0 +msgid "Manual" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_52 +msgid "Wheel Bearing Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,cost_subtype_id:0 +msgid "Cost type purchased with this cost" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,fuel_type:0 +msgid "Gasoline" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_brand_act +msgid "" +"

\n" +" Click to create a new brand.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,start_date:0 +msgid "Contract Start Date" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,odometer_unit:0 +msgid "Odometer Unit" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_30 +msgid "Intake Manifold Gasket Replacement" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Daily" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_6 +msgid "Snow tires" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,date:0 +msgid "Date when the cost has been executed" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +#: view:fleet.vehicle.model:0 +msgid "Vehicles costs" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_log_services +msgid "Services for vehicles" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Indicative Cost" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_26 +msgid "Heater Control Valve Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "" +"Create a new contract automatically with all the same informations except " +"for the date that will start at the end of current contract" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,state:0 +msgid "Terminated" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_cost +msgid "Cost related to a vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_33 +msgid "Other Maintenance" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +#: field:fleet.vehicle.cost,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,state_id:0 +#: view:fleet.vehicle.state:0 +msgid "State" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,cost_generated:0 +msgid "Recurring Cost Amount" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_49 +msgid "Transmission Replacement" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_fuel_act +msgid "" +"

\n" +" Click to create a new fuel log. \n" +"

\n" +" Here you can add refuelling entries for all vehicles. You " +"can\n" +" also filter logs of a particular vehicle using the search\n" +" field.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_11 +msgid "Brake Caliper Replacement" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,odometer:0 +msgid "Last Odometer" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_model_menu +msgid "Vehicle Model" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,doors:0 +msgid "Doors Number" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,acquisition_date:0 +msgid "Date when the vehicle has been bought" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.model:0 +msgid "Models" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "amount" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,fuel_type:0 +msgid "Fuel Used by the vehicle" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Set Contract In Progress" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,odometer_unit:0 +#: field:fleet.vehicle.odometer,unit:0 +msgid "Unit" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,horsepower:0 +msgid "Horsepower" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,image:0 +#: field:fleet.vehicle,image_medium:0 +#: field:fleet.vehicle,image_small:0 +#: field:fleet.vehicle.model,image:0 +#: field:fleet.vehicle.model,image_medium:0 +#: field:fleet.vehicle.model,image_small:0 +#: field:fleet.vehicle.model.brand,image:0 +msgid "Logo" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,horsepower_tax:0 +msgid "Horsepower Taxation" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,log_services:0 +#: view:fleet.vehicle.log.services:0 +msgid "Services Logs" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.model:0 +msgid "Brand" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_43 +msgid "Thermostat Replacement" +msgstr "" + +#. module: fleet +#: field:fleet.service.type,category:0 +msgid "Category" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_fuel_graph +msgid "Fuel Costs by Month" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.model.brand,image:0 +msgid "" +"This field holds the image used as logo for the brand, limited to " +"1024x1024px." +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_11 +msgid "Management Fee" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "All vehicles" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +#: view:fleet.vehicle.log.services:0 +msgid "Additional Details" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_services_graph +msgid "Services Costs by Month" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_9 +msgid "Assistance" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.fuel,price_per_liter:0 +msgid "Price Per Liter" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_17 +msgid "Door Window Motor/Regulator Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_46 +msgid "Tire Service" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_8 +msgid "Ball Joint Replacement" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,fuel_type:0 +msgid "Fuel Type" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_22 +msgid "Fuel Injector Replacement" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu +msgid "Vehicle Status" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_50 +msgid "Water Pump Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,location:0 +msgid "Location of the vehicle (garage, ...)" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_28 +msgid "Heater Hose Replacement" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,state:0 +msgid "Status" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_40 +msgid "Rotor Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.model,brand_id:0 +msgid "Brand of the vehicle" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,start_date:0 +msgid "Date when the coverage of the contract begins" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,fuel_type:0 +msgid "Electric" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,tag_ids:0 +msgid "Tags" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +#: field:fleet.vehicle,log_contracts:0 +msgid "Contracts" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_13 +msgid "Brake Pad(s) Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +#: view:fleet.vehicle.log.services:0 +msgid "Odometer Details" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,driver_id:0 +msgid "Driver" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.model.brand,image_small:0 +msgid "" +"Small-sized photo of the brand. It is automatically resized as a 64x64px " +"image, with aspect ratio preserved. Use this field anywhere a small image is " +"required." +msgstr "" + +#. module: fleet +#: view:board.board:0 +msgid "Fleet Dashboard" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_break +msgid "Break" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_contract_omnium +msgid "Omnium" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.services:0 +msgid "Services Details" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_15 +msgid "Residual value (Excluding VAT)" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_7 +msgid "Alternator Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_3 +msgid "A/C Diagnosis" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_23 +msgid "Fuel Pump Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Activation Cost" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Cost Type" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_4 +msgid "A/C Evaporator Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "show all the costs for this vehicle" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.odometer:0 +msgid "Odometer Values Per Month" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act +msgid "" +"

\n" +" Click to create a new model.\n" +"

\n" +" You can define several models (e.g. A3, A4) for each brand " +"(Audi).\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_act +msgid "" +"

\n" +" Click to create a new vehicle. \n" +"

\n" +" You will be able to manage your fleet by keeping track of " +"the\n" +" contracts, services, fixed and recurring costs, odometers " +"and\n" +" fuel logs associated to each vehicle.\n" +"

\n" +" OpenERP will warn you when services or contract have to be\n" +" renewed.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_13 +msgid "Entry into service tax" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,expiration_date:0 +msgid "Contract Expiration Date" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Cost Subtype" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.open_board_fleet +msgid "" +"
\n" +"

\n" +" Fleet dashboard is empty.\n" +"

\n" +" To add your first report into this dashboard, go to any\n" +" menu, switch to list or graph view, and click 'Add " +"to\n" +" Dashboard' in the extended search options.\n" +"

\n" +" You can filter and group data before inserting into the\n" +" dashboard using the search options.\n" +"

\n" +"
\n" +" " +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_12 +msgid "Rent (Excluding VAT)" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,odometer_unit:0 +msgid "Kilometers" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.fuel:0 +msgid "Vehicle Details" +msgstr "" + +#. module: fleet +#: selection:fleet.service.type,category:0 +#: field:fleet.vehicle.cost,contract_id:0 +#: selection:fleet.vehicle.cost,cost_type:0 +msgid "Contract" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu +msgid "Model brand of Vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_10 +msgid "Battery Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +#: field:fleet.vehicle.cost,date:0 +#: field:fleet.vehicle.odometer,date:0 +msgid "Date" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_menu +#: model:ir.ui.menu,name:fleet.fleet_vehicles +msgid "Vehicles" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle,odometer_unit:0 +msgid "Miles" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,cost_generated:0 +msgid "" +"Costs paid at regular intervals, depending on the cost frequency. If the " +"cost frequency is set to unique, the cost will be logged at the start date" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_17 +msgid "Emissions" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_model +msgid "Model of a vehicle" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs +#: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs_non_effective +msgid "" +"

\n" +" OpenERP helps you managing the costs for your different vehicles\n" +" Costs are generally created from services and contract and appears " +"here.\n" +"

\n" +"

\n" +" Thanks to the different filters, OpenERP can only print the " +"effective\n" +" costs, sort them by type and by vehicle.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,car_value:0 +msgid "Car Value" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.open_board_fleet +#: model:ir.module.category,name:fleet.module_fleet_category +#: model:ir.ui.menu,name:fleet.menu_fleet_dashboard +#: model:ir.ui.menu,name:fleet.menu_fleet_reporting +#: model:ir.ui.menu,name:fleet.menu_root +msgid "Fleet" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_14 +msgid "Total expenses (Excluding VAT)" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,odometer_id:0 +msgid "Odometer" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_45 +msgid "Tire Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.service.type:0 +msgid "Service types" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.fuel,purchaser_id:0 +#: field:fleet.vehicle.log.services,purchaser_id:0 +msgid "Purchaser" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_3 +msgid "Tax roll" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.model:0 +#: field:fleet.vehicle.model,vendors:0 +msgid "Vendors" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_contract_leasing +msgid "Leasing" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.model.brand,image_medium:0 +msgid "" +"Medium-sized logo of the brand. It is automatically resized as a 128x128px " +"image, with aspect ratio preserved. Use this field in form views or some " +"kanban views." +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Weekly" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +#: view:fleet.vehicle.odometer:0 +msgid "Odometer Logs" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,acquisition_date:0 +msgid "Acquisition Date" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_odometer +msgid "Odometer log for a vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,cost_type:0 +msgid "Category of the cost" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_5 +#: model:fleet.service.type,name:fleet.type_service_service_7 +msgid "Summer tires" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,contract_renewal_due_soon:0 +msgid "Has Contracts to renew" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_31 +msgid "Oil Change" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.model.brand,image_small:0 +msgid "Smal-sized photo" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_model_brand +msgid "Brand model of the vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_51 +msgid "Wheel Alignment" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_purchased +msgid "Purchased" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act +msgid "" +"

\n" +" Here you can add various odometer entries for all vehicles.\n" +" You can also show odometer value for a particular vehicle " +"using\n" +" the search field.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.model,brand_id:0 +#: view:fleet.vehicle.model.brand:0 +msgid "Model Brand" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "General Properties" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_21 +msgid "Exhaust Manifold Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_47 +msgid "Transmission Filter Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_10 +msgid "Replacement Vehicle" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,state:0 +msgid "In Progress" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.log.contract,cost_frequency:0 +msgid "Yearly" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.model,modelname:0 +msgid "Model name" +msgstr "" + +#. module: fleet +#: view:board.board:0 +#: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_costs_graph +msgid "Costs by Month" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_18 +msgid "Touring Assistance" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,power:0 +msgid "Power (kW)" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:418 +#, python-format +msgid "State: from '%s' to '%s'" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_2 +msgid "A/C Condenser Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_19 +msgid "Engine Coolant Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +msgid "Cost Details" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:410 +#, python-format +msgid "Model: from '%s' to '%s'" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.cost,cost_type:0 +msgid "Other" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Contract details" +msgstr "" + +#. module: fleet +#: model:fleet.vehicle.tag,name:fleet.vehicle_tag_leasing +msgid "Employee Car" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,auto_generated:0 +msgid "Automatically Generated" +msgstr "" + +#. module: fleet +#: selection:fleet.vehicle.cost,cost_type:0 +msgid "Fuel" +msgstr "" + +#. module: fleet +#: sql_constraint:fleet.vehicle.state:0 +msgid "State name already exists" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_37 +msgid "Radiator Repair" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_log_contract +msgid "Contract information on a vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,days_left:0 +msgid "Warning Date" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_19 +msgid "Residual value in %" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "Additional Properties" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle_state +msgid "fleet.vehicle.state" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Contract Costs Per Month" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_contract_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_log_contract_menu +msgid "Vehicles Contracts" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_48 +msgid "Transmission Fluid Replacement" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.model.brand,name:0 +msgid "Brand Name" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_36 +msgid "Power Steering Pump Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,contract_id:0 +msgid "Contract attached to this cost" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:397 +#, python-format +msgid "Vehicle %s has been added to the fleet!" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +#: view:fleet.vehicle.log.fuel:0 +#: view:fleet.vehicle.log.services:0 +msgid "Price" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,odometer:0 +#: field:fleet.vehicle.odometer,value:0 +msgid "Odometer Value" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +#: view:fleet.vehicle.cost:0 +#: field:fleet.vehicle.cost,vehicle_id:0 +#: field:fleet.vehicle.odometer,vehicle_id:0 +msgid "Vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.cost,cost_ids:0 +#: view:fleet.vehicle.log.contract:0 +#: view:fleet.vehicle.log.services:0 +msgid "Included Services" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.action_fleet_vehicle_kanban +msgid "" +"

\n" +" Here are displayed vehicles for which one or more contracts need " +"to be renewed. If you see this message, then there is no contracts to " +"renew.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_15 +msgid "Catalytic Converter Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_25 +msgid "Heater Blower Motor Replacement" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act +#: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu +msgid "Vehicles Odometer" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.log.contract,notes:0 +msgid "Write here all supplementary informations relative to this contract" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_29 +msgid "Ignition Coil Replacement" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_service_16 +msgid "Options" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_contract_repairing +msgid "Repairing" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs +#: model:ir.ui.menu,name:fleet.menu_fleet_reporting_costs +msgid "Costs Analysis" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.log.contract,ins_ref:0 +msgid "Contract Reference" +msgstr "" + +#. module: fleet +#: field:fleet.service.type,name:0 +#: field:fleet.vehicle,name:0 +#: field:fleet.vehicle.cost,name:0 +#: field:fleet.vehicle.log.contract,name:0 +#: field:fleet.vehicle.model,name:0 +#: field:fleet.vehicle.odometer,name:0 +#: field:fleet.vehicle.state,name:0 +#: field:fleet.vehicle.tag,name:0 +msgid "Name" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,doors:0 +msgid "Number of doors of the vehicle" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,transmission:0 +msgid "Transmission" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,vin_sn:0 +msgid "Chassis Number" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,color:0 +msgid "Color of the vehicle" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_services_act +msgid "" +"

\n" +" Click to create a new service entry. \n" +"

\n" +" OpenERP helps you keeping track of all the services done\n" +" on your vehicle. Services can be of many type: occasional\n" +" repair, fixed maintenance, etc.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,co2:0 +msgid "CO2 Emissions" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +msgid "Contract logs" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "Costs" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph +msgid "Contracts Costs by Month" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,model_id:0 +#: view:fleet.vehicle.model:0 +msgid "Model" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_41 +msgid "Spark Plug Replacement" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_vehicle +msgid "Information on a vehicle" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,co2:0 +msgid "CO2 emissions of the vehicle" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_53 +msgid "Windshield Wiper(s) Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.contract:0 +#: field:fleet.vehicle.log.contract,generated_cost_ids:0 +msgid "Generated Costs" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle.state,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: fleet +#: field:fleet.vehicle,color:0 +msgid "Color" +msgstr "" + +#. module: fleet +#: model:ir.actions.act_window,help:fleet.fleet_vehicle_service_types_act +msgid "" +"

\n" +" Click to create a new type of service.\n" +"

\n" +" Each service can used in contracts, as a standalone service " +"or both.\n" +"

\n" +" " +msgstr "" + +#. module: fleet +#: view:board.board:0 +msgid "Services Costs" +msgstr "" + +#. module: fleet +#: code:addons/fleet/fleet.py:47 +#, python-format +msgid "Emptying the odometer value of a vehicle is not allowed." +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,seats:0 +msgid "Number of seats of the vehicle" +msgstr "" + +#. module: fleet +#: model:res.groups,name:fleet.group_fleet_manager +msgid "Manager" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.services:0 +msgid "Cost" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_39 +msgid "Rotate Tires" +msgstr "" + +#. module: fleet +#: model:fleet.service.type,name:fleet.type_service_42 +msgid "Starter Replacement" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.cost:0 +#: field:fleet.vehicle.cost,year:0 +msgid "Year" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle,license_plate:0 +msgid "License plate number of the vehicle (ie: plate number for a car)" +msgstr "" + +#. module: fleet +#: model:ir.model,name:fleet.model_fleet_contract_state +msgid "Contains the different possible status of a leasing contract" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle:0 +msgid "show the contract for this vehicle" +msgstr "" + +#. module: fleet +#: view:fleet.vehicle.log.services:0 +msgid "Total" +msgstr "" + +#. module: fleet +#: help:fleet.service.type,category:0 +msgid "" +"Choose wheter the service refer to contracts, vehicle services or both" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.cost,cost_type:0 +msgid "For internal purpose only" +msgstr "" + +#. module: fleet +#: help:fleet.vehicle.state,sequence:0 +msgid "Used to order the note stages" +msgstr "" diff --git a/addons/fleet/i18n/zh_CN.po b/addons/fleet/i18n/zh_CN.po index 5ada61b8980..0133bc6a98c 100644 --- a/addons/fleet/i18n/zh_CN.po +++ b/addons/fleet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index 9d3a761c4b5..9f9bb4689ea 100644 --- a/addons/google_base_account/i18n/ar.po +++ b/addons/google_base_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/de.po b/addons/google_base_account/i18n/de.po index 7709588e57f..3d2a56e7a7f 100644 --- a/addons/google_base_account/i18n/de.po +++ b/addons/google_base_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es.po b/addons/google_base_account/i18n/es.po index 94e3c24116f..24836a1c51f 100644 --- a/addons/google_base_account/i18n/es.po +++ b/addons/google_base_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es_CR.po b/addons/google_base_account/i18n/es_CR.po index 190067d6b82..a2799df2600 100644 --- a/addons/google_base_account/i18n/es_CR.po +++ b/addons/google_base_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fi.po b/addons/google_base_account/i18n/fi.po index 6416405822f..f6e968b8fec 100644 --- a/addons/google_base_account/i18n/fi.po +++ b/addons/google_base_account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fr.po b/addons/google_base_account/i18n/fr.po index e0aca82811d..ba3a1692553 100644 --- a/addons/google_base_account/i18n/fr.po +++ b/addons/google_base_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hr.po b/addons/google_base_account/i18n/hr.po index 33f64dee753..017d674e19f 100644 --- a/addons/google_base_account/i18n/hr.po +++ b/addons/google_base_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/it.po b/addons/google_base_account/i18n/it.po index e245d3618a9..faeec6be604 100644 --- a/addons/google_base_account/i18n/it.po +++ b/addons/google_base_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ja.po b/addons/google_base_account/i18n/ja.po index ea259cfc113..9da681a42ac 100644 --- a/addons/google_base_account/i18n/ja.po +++ b/addons/google_base_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mn.po b/addons/google_base_account/i18n/mn.po index aa83c1d611a..c04de5ad6a6 100644 --- a/addons/google_base_account/i18n/mn.po +++ b/addons/google_base_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nb.po b/addons/google_base_account/i18n/nb.po index 27fc08657c1..15f798857a5 100644 --- a/addons/google_base_account/i18n/nb.po +++ b/addons/google_base_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nl.po b/addons/google_base_account/i18n/nl.po index 7bb706e3f11..aaf5737140a 100644 --- a/addons/google_base_account/i18n/nl.po +++ b/addons/google_base_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pl.po b/addons/google_base_account/i18n/pl.po index b2443e89e67..716d3bcedce 100644 --- a/addons/google_base_account/i18n/pl.po +++ b/addons/google_base_account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt.po b/addons/google_base_account/i18n/pt.po index 96e582f46fc..0d074c7a7f8 100644 --- a/addons/google_base_account/i18n/pt.po +++ b/addons/google_base_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt_BR.po b/addons/google_base_account/i18n/pt_BR.po index 4f9571d9f8a..ca28368a52e 100644 --- a/addons/google_base_account/i18n/pt_BR.po +++ b/addons/google_base_account/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index 405dd17ea08..638083b6ad4 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ru.po b/addons/google_base_account/i18n/ru.po index d0faf88e208..0de7e99672a 100644 --- a/addons/google_base_account/i18n/ru.po +++ b/addons/google_base_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index 241a3da7fe2..d6b89bb967c 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sr@latin.po b/addons/google_base_account/i18n/sr@latin.po index df0d1a35959..176c5689bc7 100644 --- a/addons/google_base_account/i18n/sr@latin.po +++ b/addons/google_base_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sv.po b/addons/google_base_account/i18n/sv.po index 147c09afa74..5f01dc901b7 100644 --- a/addons/google_base_account/i18n/sv.po +++ b/addons/google_base_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index a8b59d53daf..fa1ccc850d2 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/zh_CN.po b/addons/google_base_account/i18n/zh_CN.po index f0defacf924..5a2f68eb840 100644 --- a/addons/google_base_account/i18n/zh_CN.po +++ b/addons/google_base_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_docs/i18n/de.po b/addons/google_docs/i18n/de.po index e98c52543b0..16667864363 100644 --- a/addons/google_docs/i18n/de.po +++ b/addons/google_docs/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/es.po b/addons/google_docs/i18n/es.po index d8979e427fc..3702bb606e7 100644 --- a/addons/google_docs/i18n/es.po +++ b/addons/google_docs/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/fr.po b/addons/google_docs/i18n/fr.po index 5636ec8dc6f..5b8019d14a0 100644 --- a/addons/google_docs/i18n/fr.po +++ b/addons/google_docs/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/hr.po b/addons/google_docs/i18n/hr.po index a8c85b5a516..ba4b2afd8f0 100644 --- a/addons/google_docs/i18n/hr.po +++ b/addons/google_docs/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/it.po b/addons/google_docs/i18n/it.po index 69a187e86a1..574d5096e6d 100644 --- a/addons/google_docs/i18n/it.po +++ b/addons/google_docs/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/nl.po b/addons/google_docs/i18n/nl.po index da83f0db749..e9347b6e41b 100644 --- a/addons/google_docs/i18n/nl.po +++ b/addons/google_docs/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/pl.po b/addons/google_docs/i18n/pl.po index 4d5034a7226..406b06c705f 100644 --- a/addons/google_docs/i18n/pl.po +++ b/addons/google_docs/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/pt.po b/addons/google_docs/i18n/pt.po index b4747bfcb3b..5dd3ed35ef1 100644 --- a/addons/google_docs/i18n/pt.po +++ b/addons/google_docs/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/pt_BR.po b/addons/google_docs/i18n/pt_BR.po index 64ab80b0752..ba6f4f1de08 100644 --- a/addons/google_docs/i18n/pt_BR.po +++ b/addons/google_docs/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/google_docs/i18n/ru.po b/addons/google_docs/i18n/ru.po index b89452a929a..5b99d1f9f6c 100644 --- a/addons/google_docs/i18n/ru.po +++ b/addons/google_docs/i18n/ru.po @@ -8,20 +8,20 @@ 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-01-07 09:31+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 10:01+0000\n" +"Last-Translator: Эдуард \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 #, python-format msgid "Key Error!" -msgstr "" +msgstr "Ошибка ключа!" #. module: google_docs #: view:google.docs.config:0 @@ -42,7 +42,7 @@ msgstr "" #. module: google_docs #: field:google.docs.config,gdocs_resource_id:0 msgid "Google Resource ID to Use as Template" -msgstr "" +msgstr "ID ресурса Google для использования в качестве шаблона" #. module: google_docs #: view:google.docs.config:0 @@ -57,7 +57,7 @@ msgstr "" #: code:addons/google_docs/static/src/xml/gdocs.xml:6 #, python-format msgid "Add Google Doc..." -msgstr "" +msgstr "Добавить Google Документ..." #. module: google_docs #: view:google.docs.config:0 @@ -69,7 +69,7 @@ msgstr "" #. module: google_docs #: model:ir.model,name:google_docs.model_google_docs_config msgid "Google Docs templates config" -msgstr "" +msgstr "Конфигурация шаблонов Документов Google" #. module: google_docs #. openerp-web @@ -107,18 +107,20 @@ msgstr "" #: code:addons/google_docs/google_docs.py:125 #, python-format msgid "Google Docs Error!" -msgstr "" +msgstr "Ошибка Документов Google!" #. module: google_docs #: code:addons/google_docs/google_docs.py:56 #, python-format msgid "Check your google configuration in Users/Users/Synchronization tab." msgstr "" +"Проверьте ваши google настройки во вкладке " +"Пользователи/Пользователи/Синхронизация." #. module: google_docs #: model:ir.ui.menu,name:google_docs.menu_gdocs_config msgid "Google Docs configuration" -msgstr "" +msgstr "Настройки Документов Google" #. module: google_docs #: model:ir.actions.act_window,name:google_docs.action_google_docs_users_config @@ -129,7 +131,7 @@ msgstr "" #. module: google_docs #: field:google.docs.config,model_id:0 msgid "Model" -msgstr "" +msgstr "Модель" #. module: google_docs #. openerp-web @@ -154,7 +156,7 @@ msgstr "" #. module: google_docs #: view:google.docs.config:0 msgid "Google Docs Configuration" -msgstr "" +msgstr "Настройки Документов Google" #. module: google_docs #: help:google.docs.config,gdocs_resource_id:0 @@ -185,4 +187,4 @@ msgstr "" #. module: google_docs #: field:google.docs.config,name_template:0 msgid "Google Doc Name Pattern" -msgstr "" +msgstr "Шаблон имени Документа Google" diff --git a/addons/google_docs/i18n/zh_CN.po b/addons/google_docs/i18n/zh_CN.po index 5c4ddd1240d..58d97f29ea4 100644 --- a/addons/google_docs/i18n/zh_CN.po +++ b/addons/google_docs/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:139 diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index 835570290aa..1f7c33c3d1b 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index d697e9212aa..127fc7ab27b 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bn.po b/addons/hr/i18n/bn.po index 968753a13c1..8f3315cf5ba 100644 --- a/addons/hr/i18n/bn.po +++ b/addons/hr/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bs.po b/addons/hr/i18n/bs.po index ea9ef2dccae..36e19248e1e 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ca.po b/addons/hr/i18n/ca.po index e5f652e44d6..c35b7fef14f 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/cs.po b/addons/hr/i18n/cs.po index 89608325dff..da7ccf97163 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index d71bea43018..9bd657c492b 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index 93a48309aa0..a046fc76a56 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index 5bdfdf234c0..a3ad5d8655f 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index 5de93ac66e6..eb1be722347 100644 --- a/addons/hr/i18n/en_AU.po +++ b/addons/hr/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_GB.po b/addons/hr/i18n/en_GB.po index a87aa258850..f18799060ab 100644 --- a/addons/hr/i18n/en_GB.po +++ b/addons/hr/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es.po b/addons/hr/i18n/es.po index 0affa7c342c..de2791735fa 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -857,7 +857,7 @@ msgstr "Notas" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "Jerarquía subirdinada" +msgstr "Jerarquía subordinada" #. module: hr #: field:hr.employee,resource_id:0 diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index 364288fd664..c365504e0d4 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CL.po b/addons/hr/i18n/es_CL.po index 52cbf048c4b..6a1fd509676 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CR.po b/addons/hr/i18n/es_CR.po index d7c1224acaf..bda35257148 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index 45d15a350d4..dcef078a356 100644 --- a/addons/hr/i18n/es_EC.po +++ b/addons/hr/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/et.po b/addons/hr/i18n/et.po index 09f4cf51fa8..0616ba4ff50 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index 663d92f5ace..76496d12923 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index 0f10f75d5ca..a391535170e 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index f838c815c10..d7b9864afb8 100644 --- a/addons/hr/i18n/fr_BE.po +++ b/addons/hr/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gl.po b/addons/hr/i18n/gl.po index 538957e34f9..15c2bff1d67 100644 --- a/addons/hr/i18n/gl.po +++ b/addons/hr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gu.po b/addons/hr/i18n/gu.po index 5711db92fb1..e4eb063e281 100644 --- a/addons/hr/i18n/gu.po +++ b/addons/hr/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hi.po b/addons/hr/i18n/hi.po index 98b5fd53126..4088e5a8db6 100644 --- a/addons/hr/i18n/hi.po +++ b/addons/hr/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 9d14d0639f2..5b19c2a313e 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index f8cfb16a75f..c137a2d0a23 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/id.po b/addons/hr/i18n/id.po index 17a3c6b64b9..b09c034f0be 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/it.po b/addons/hr/i18n/it.po index d3d5197fde5..716806ccd0b 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ja.po b/addons/hr/i18n/ja.po index ef4e629bc1d..55f5699f22d 100644 --- a/addons/hr/i18n/ja.po +++ b/addons/hr/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ko.po b/addons/hr/i18n/ko.po index 636b9acd045..246a4430b62 100644 --- a/addons/hr/i18n/ko.po +++ b/addons/hr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lo.po b/addons/hr/i18n/lo.po index 3cfbc3724e9..a20e2a5cd95 100644 --- a/addons/hr/i18n/lo.po +++ b/addons/hr/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index 5eb1267447a..a2b939c0fa0 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index df957cf6054..0ef6e47bdb6 100644 --- a/addons/hr/i18n/lv.po +++ b/addons/hr/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index c2905598535..caf386dfff5 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index a025ed65c85..8639774a467 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nb.po b/addons/hr/i18n/nb.po index 95b8779097f..f91a35d574c 100644 --- a/addons/hr/i18n/nb.po +++ b/addons/hr/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index 93ff269b1d0..8504e881243 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index 57e254a498f..b76e634c14e 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pl.po b/addons/hr/i18n/pl.po index 259652fdd31..eb6be517a0d 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index 744bbfd2754..b5100db8f3b 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index a15c9a70a8d..3a1ebba3c4a 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -25,7 +25,7 @@ msgstr "Usuário Openerp" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "Permite validação da planilha de horas por gerentes" #. module: hr #: field:hr.job,requirements:0 @@ -35,7 +35,7 @@ msgstr "Pré-requisitos" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "Ligar o funcionário à informação" +msgstr "Associar o funcionário a informação" #. module: hr #: field:hr.employee,sinid:0 @@ -50,7 +50,7 @@ msgstr "No SIN" #: model:ir.ui.menu,name:hr.menu_hr_root #: model:ir.ui.menu,name:hr.menu_human_resources_configuration msgid "Human Resources" -msgstr "Recursos humanos" +msgstr "Recursos Humanos" #. module: hr #: help:hr.employee,image_medium:0 @@ -59,11 +59,13 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Foto média do funcionário. Será automaticamente redimensionado para 128x128 " +"px, mantendo o aspecto. Use este campo em visões de formulário ou kanban." #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Apontamento de Tempo" #. module: hr #: view:hr.employee:0 @@ -84,7 +86,7 @@ msgstr "Número de empregados atualmente ocupando esta posição" #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "Organizar avaliação periódica dos funcionários" #. module: hr #: view:hr.department:0 @@ -107,11 +109,13 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Este campo guarda a imagem usada como foto do funcionário, limitada para " +"1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Isto instala o módulo hr_holidays" #. module: hr #: view:hr.job:0 @@ -126,7 +130,7 @@ msgstr "Em Recrutamento" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr #: field:hr.department,company_id:0 @@ -144,33 +148,33 @@ msgstr "Esperado em Recrutamento" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "Funcionários Relacionados" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Erro! Você não pode criar categorias recursivas" #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Isto instala o módulo hr_recruitment." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Nascimento" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Marcadores de Funcionário" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "Lançar Recrutamento" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 @@ -185,7 +189,7 @@ msgstr "Departamento pai" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "Faltas" +msgstr "Folgas" #. module: hr #: selection:hr.employee,marital:0 @@ -195,22 +199,22 @@ msgstr "Casado(a)" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Gestão de Talentos" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Isto instala o módulo hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "Celular:" #. module: hr #: view:hr.employee:0 @@ -220,7 +224,7 @@ msgstr "Posição" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr #: field:hr.employee,color:0 @@ -239,7 +243,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Foto de tamanho médio" #. module: hr #: field:hr.employee,identification_id:0 @@ -280,14 +284,14 @@ msgstr "Localização do escritório" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr #: view:hr.employee:0 #: model:ir.model,name:hr.model_hr_employee #: model:process.node,name:hr.process_node_employee0 msgid "Employee" -msgstr "Colaborador" +msgstr "Funcionário" #. module: hr #: model:process.node,note:hr.process_node_employeecontact0 @@ -301,6 +305,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Foto pequena do funcionário. Será automaticamente redimensionada para 64x64 " +"px mantendo o aspecto. Use este campo em qualquer lugar que uma imagem " +"miniatura for necessária." #. module: hr #: field:hr.employee,birthday:0 @@ -310,12 +317,12 @@ msgstr "Data de Nascimento" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "Número de novos empregados a serem contratados." +msgstr "Número de novos funcionários a serem contratados." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Abrir Menu RH" #. module: hr #: help:hr.job,message_summary:0 @@ -323,6 +330,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -330,6 +340,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"Isto instala o módulo account_analytic_analysis, que irá instalar também a " +"gestão de vendas." #. module: hr #: view:board.board:0 @@ -346,7 +358,7 @@ msgstr "Função" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Número de Funcionários Atuais" #. module: hr #: field:hr.department,member_ids:0 @@ -356,7 +368,7 @@ msgstr "Membros" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" -msgstr "Configuração." +msgstr "Configuração" #. module: hr #: model:process.node,note:hr.process_node_employee0 @@ -366,12 +378,12 @@ msgstr "Formulário de Funcionários e estrutura" #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "Gestão de despesas de funcionários" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "Tel:" #. module: hr #: selection:hr.employee,marital:0 @@ -417,6 +429,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo cargo\n" +"

\n" +"Cargos são usados ​​para definir os trabalhos e os seus requisitos.\n" +"                 Você pode manter o controle do número de funcionários que " +"você tem por cargo\n" +"                 posicionar e acompanhar a evolução de acordo com o que foi " +"planejado\n" +"                 para o futuro.\n" +"

\n" +"Você pode anexar uma pesquisa para um cargo. Será usado no processo de\n" +"seleção para avaliar os candidatos para esta posição de trabalho.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -429,42 +455,44 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Isto instala o módulo hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Erro! Você não pode criar hierarquias recursivas para Funcionários" #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "Isto instala o módulo hr_attendance." #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Foto pequena." #. module: hr #: view:hr.employee.category:0 #: model:ir.model,name:hr.model_hr_employee_category msgid "Employee Category" -msgstr "Categoria de Colaborador" +msgstr "Categoria de Funcionários" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Marcadores" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "Isto instala o módulo hr_contract." #. module: hr #: view:hr.employee:0 @@ -474,7 +502,7 @@ msgstr "Usuário relacionado" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr #: field:hr.employee.category,name:0 @@ -484,27 +512,27 @@ msgstr "Categoria" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "Parar Recrutamento" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Instalar o recurso atendimentos" #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" -msgstr "Conta Salário bancária do Funcionário" +msgstr "Conta Bancária para Salário do Funcionário" #. module: hr #: field:hr.department,note:0 msgid "Note" -msgstr "Nota" +msgstr "Observação" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_tree msgid "Employees Structure" -msgstr "Estrutura de Funcional" +msgstr "Estrutura de Funcionários" #. module: hr #: view:hr.employee:0 @@ -514,7 +542,7 @@ msgstr "Informações do contato" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Gestão de Folgas, Férias e Pedidos de alocação" #. module: hr #: field:hr.department,child_ids:0 @@ -526,7 +554,7 @@ msgstr "Departamentos filho (Subordinados)" #: view:hr.job:0 #: field:hr.job,state:0 msgid "Status" -msgstr "Situação atual" +msgstr "Situação" #. module: hr #: field:hr.employee,otherid:0 @@ -541,12 +569,12 @@ msgstr "Contrato do Funcionário" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "Contratos" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr #: field:hr.employee,ssnid:0 @@ -556,12 +584,12 @@ msgstr "No SSN" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "Gestão do processo de seleção" #. module: hr #: view:hr.employee:0 @@ -571,12 +599,12 @@ msgstr "Ativo" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "Gestão de Recursos Humanos" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "Instala a Folha de Pagamentos" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -591,7 +619,7 @@ msgstr "Empresas" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -616,21 +644,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo funcionário.\n" +"

\n" +"Com apenas uma rápida olhada na tela de funcionário, você pode facilmente\n" +"encontrar todas as informações que você precisa para cada pessoa;\n" +"                 dados de contato, cargo que ocupa, disponibilidade, etc\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "Configurações de RH" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Cidadania & Outras Informações" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "Erro! Você não pode criar departamentos recursivos." #. module: hr #: field:hr.employee,address_id:0 @@ -640,7 +676,7 @@ msgstr "Endereço comercial" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Informação Pública" #. module: hr #: field:hr.employee,marital:0 @@ -655,7 +691,7 @@ msgstr "ir.actions.act_window" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "Conexão mais recente" #. module: hr #: field:hr.employee,image:0 @@ -665,7 +701,7 @@ msgstr "Foto" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -680,11 +716,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um departamento.\n" +"

\n" +"A estrutura de departamento é usado para gerenciar todos os documentos\n" +"                 relacionados aos funcionários pelos departamentos: " +"despesas, planilhas,\n" +"                 folgas e férias, recrutamentos, etc\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Isto instala o módulo hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 @@ -706,6 +751,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo departamento.\n" +"

\n" +" A estrutura de departamento é usado para gerenciar todos os " +"documentos\n" +"                 relacionados aos funcionários pelos departamentos: " +"despesas, planilhas,\n" +"                 folgas e férias, recrutamentos, etc\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -730,18 +785,20 @@ msgstr "Celular Comercial" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Recrutamento em Andamento" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" +"Permite o faturamento baseado em planilha de horas (a aplicação de vendas " +"será instalada)" #. module: hr #: view:hr.employee.category:0 msgid "Employees Categories" -msgstr "Categorias de Colaboradores" +msgstr "Categorias de Funcionários" #. module: hr #: field:hr.employee,address_home_id:0 @@ -751,7 +808,7 @@ msgstr "Endereço Residencial" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "" +msgstr "Gerenciar Planilha de Horas" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules @@ -776,12 +833,12 @@ msgstr "Em Posição" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "Isto instala o módulo hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "Registra contratos por funcionários" #. module: hr #: view:hr.department:0 @@ -796,12 +853,12 @@ msgstr "Nacionalidade" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "Características Adicionais" #. module: hr #: field:hr.employee,notes:0 msgid "Notes" -msgstr "Notas" +msgstr "Observações" #. module: hr #: model:ir.actions.act_window,name:hr.action2 @@ -834,7 +891,7 @@ msgstr "Sexo" #: model:ir.actions.act_window,name:hr.open_view_employee_list_my #: model:ir.ui.menu,name:hr.menu_open_view_employee_list_my msgid "Employees" -msgstr "Colaboradores" +msgstr "Funcionários" #. module: hr #: help:hr.employee,sinid:0 @@ -849,23 +906,23 @@ msgstr "Nome do Departamento" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "Relatórios" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "Gerenciar folha de pagamentos" #. module: hr #: view:hr.config.settings:0 #: model:ir.actions.act_window,name:hr.action_human_resources_configuration msgid "Configure Human Resources" -msgstr "" +msgstr "Configurar Recursos Humanos" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "No de Recrutamento" #. module: hr #: help:hr.employee,ssnid:0 @@ -885,7 +942,7 @@ msgstr "Nome de acesso" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Total de Funcionários Previstos" #. module: hr #: help:hr.job,state:0 @@ -893,11 +950,13 @@ msgid "" "By default 'In position', set it to 'In Recruitment' if recruitment process " "is going on for this job position." msgstr "" +"Por padrão 'Em posição' defina para 'Em seleção' se o processo de seleção " +"segue para este cargo" #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "Usuários" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job @@ -923,6 +982,22 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" O Painel de Recursos Humanos está vazio.\n" +"

\n" +" Para adicionar seu primeiro relatório a este painel, vá " +"em qualquer\n" +" menu, mude a visão para listagem ou gráfico, e clique " +"'Adicionar \n" +" ao Painél' nas opções da busca extendida.\n" +"

\n" +" Você pode filtrar e agrupar dados antes de inserir no " +"painél\n" +"usando as opções da busca.\n" +"

\n" +"
\n" +" " #. module: hr #: view:hr.employee:0 @@ -938,19 +1013,19 @@ msgstr "O nome do cargo deve ser único por empresa!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Isto instala o módulo hr_expense" #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 #: view:hr.employee:0 #: field:hr.employee,parent_id:0 msgid "Manager" -msgstr "Gestor" +msgstr "Gerente" #. module: hr #: selection:hr.employee,marital:0 @@ -965,4 +1040,4 @@ msgstr "Subordinados" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Aplicar" diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index ae0e3f19ce9..4c9a82de279 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ru.po b/addons/hr/i18n/ru.po index c659e7ed2e9..5fe191239dc 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index 165e328629d..b2f69448022 100644 --- a/addons/hr/i18n/sk.po +++ b/addons/hr/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sl.po b/addons/hr/i18n/sl.po index b4b965e2bb1..fb4e16fa2eb 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-01 14:34+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sq.po b/addons/hr/i18n/sq.po index 60ffbf73e31..58f251a9952 100644 --- a/addons/hr/i18n/sq.po +++ b/addons/hr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:13+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr.po b/addons/hr/i18n/sr.po index 6d4cfb1bb32..53e32de2b11 100644 --- a/addons/hr/i18n/sr.po +++ b/addons/hr/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr@latin.po b/addons/hr/i18n/sr@latin.po index c41b1a9bd25..f681d5d9526 100644 --- a/addons/hr/i18n/sr@latin.po +++ b/addons/hr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sv.po b/addons/hr/i18n/sv.po index 1f00a338a98..11a57edf684 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/th.po b/addons/hr/i18n/th.po index fba0c22be79..1e05ceecaa2 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 7411e27531d..da543c5c31f 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index de039cf237d..6c461bda03b 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 3f5b9379b72..3139da6eb95 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/vi.po b/addons/hr/i18n/vi.po index 6aeebfc6d1b..b68a9472444 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 3e2f951399e..6276cbd3127 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 0a14d78c09a..8a6eb163afe 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr_attendance/i18n/ar.po b/addons/hr_attendance/i18n/ar.po index d0b857aa99a..80c29db47e4 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bg.po b/addons/hr_attendance/i18n/bg.po index 20f19638202..c87e4ed4867 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bs.po b/addons/hr_attendance/i18n/bs.po index f7de24da55a..001a22edb55 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ca.po b/addons/hr_attendance/i18n/ca.po index 0152bb2b25d..e009b60028a 100644 --- a/addons/hr_attendance/i18n/ca.po +++ b/addons/hr_attendance/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/cs.po b/addons/hr_attendance/i18n/cs.po index 9f54471c922..beef6e2f397 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index dc322b4fbf9..51510392960 100644 --- a/addons/hr_attendance/i18n/da.po +++ b/addons/hr_attendance/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/de.po b/addons/hr_attendance/i18n/de.po index b75f633011e..f579e691822 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/el.po b/addons/hr_attendance/i18n/el.po index bd9d9545205..d5ebbb458c2 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index 0b2d48e207f..8a61a6ee8f5 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -98,7 +98,7 @@ msgstr "Octubre" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "Acceso a la asistencia" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index 4ee329e636d..0bfe980e9a0 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CL.po b/addons/hr_attendance/i18n/es_CL.po index b1462b18b9f..a178d80ac09 100644 --- a/addons/hr_attendance/i18n/es_CL.po +++ b/addons/hr_attendance/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CR.po b/addons/hr_attendance/i18n/es_CR.po index bd8030d06de..ca9ee20aa99 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index c1854390a5d..a69dc50d545 100644 --- a/addons/hr_attendance/i18n/es_EC.po +++ b/addons/hr_attendance/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_PY.po b/addons/hr_attendance/i18n/es_PY.po index 8a4cecc8438..f8ec0357475 100644 --- a/addons/hr_attendance/i18n/es_PY.po +++ b/addons/hr_attendance/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/et.po b/addons/hr_attendance/i18n/et.po index 4f9d41125bc..7c09db1760a 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index 6373c941654..4db644e9ba6 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fr.po b/addons/hr_attendance/i18n/fr.po index 225c326793d..ac93650824e 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index e375f075a43..cdff6dfa895 100644 --- a/addons/hr_attendance/i18n/gl.po +++ b/addons/hr_attendance/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/he.po b/addons/hr_attendance/i18n/he.po index d1165ca8502..a8c96de851f 100644 --- a/addons/hr_attendance/i18n/he.po +++ b/addons/hr_attendance/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hr.po b/addons/hr_attendance/i18n/hr.po index b9530cb67e7..14821f0b435 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hu.po b/addons/hr_attendance/i18n/hu.po index 7eb166e13b8..06785acb36c 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/id.po b/addons/hr_attendance/i18n/id.po index 2eadf9e9d90..413c9c06567 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/it.po b/addons/hr_attendance/i18n/it.po index 72141441de0..3e37c753745 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ja.po b/addons/hr_attendance/i18n/ja.po index c1be98fcb05..814a831ee7d 100644 --- a/addons/hr_attendance/i18n/ja.po +++ b/addons/hr_attendance/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ko.po b/addons/hr_attendance/i18n/ko.po index 2460c3821d1..2bbdf53a5b0 100644 --- a/addons/hr_attendance/i18n/ko.po +++ b/addons/hr_attendance/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lt.po b/addons/hr_attendance/i18n/lt.po index 520e7e32c1f..923eb415a75 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lv.po b/addons/hr_attendance/i18n/lv.po index d4ebe367d9f..1b2d130505c 100644 --- a/addons/hr_attendance/i18n/lv.po +++ b/addons/hr_attendance/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index c69acc608b3..b7ca942798e 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index 6f6e7b209e7..94050426825 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nb.po b/addons/hr_attendance/i18n/nb.po index a2206f3c0c5..bdcb8e44a92 100644 --- a/addons/hr_attendance/i18n/nb.po +++ b/addons/hr_attendance/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl.po b/addons/hr_attendance/i18n/nl.po index a45651e08b6..1c9693d9662 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 0cd81d7e7cf..f722e1337ec 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pl.po b/addons/hr_attendance/i18n/pl.po index b5e88e322f3..00ef7da1e00 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index be23648d2dc..ee9fc2e7bf3 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index c1ac7245780..7273f566b5d 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -30,7 +30,7 @@ msgstr "Pesquisa por Frequência de RH" #. module: hr_attendance #: field:hr.employee,last_sign:0 msgid "Last Sign" -msgstr "" +msgstr "Último Acesso" #. module: hr_attendance #: view:hr.attendance:0 @@ -44,12 +44,12 @@ msgstr "Frequência" #: code:addons/hr_attendance/static/src/js/attendance.js:34 #, python-format msgid "Last sign in: %s,
%s.
Click to sign out." -msgstr "" +msgstr "Último acesso em: %s,
%s.
Clique para sair." #. module: hr_attendance #: constraint:hr.attendance:0 msgid "Error ! Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" -msgstr "" +msgstr "Erro! Entrar (resp. Sair) deve seguir Sair (resp. Entrar)" #. module: hr_attendance #: help:hr.action.reason,name:0 @@ -73,7 +73,7 @@ msgstr "Imprimir Relatório de Frequência Mensal" #: code:addons/hr_attendance/report/timesheet.py:120 #, python-format msgid "Attendances by Week" -msgstr "" +msgstr "Freqüência por semana" #. module: hr_attendance #: selection:hr.action.reason,action_type:0 @@ -98,7 +98,7 @@ msgstr "Outubro" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "Acesso ao Atendimento" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 @@ -112,7 +112,7 @@ msgstr "Saída" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No records are found for your selection!" -msgstr "" +msgstr "Nenhum registro encontrado para sua seleção!" #. module: hr_attendance #: view:hr.attendance.error:0 @@ -178,7 +178,7 @@ msgstr "Atenção" #. module: hr_attendance #: help:hr.config.settings,group_hr_attendance:0 msgid "Allocates attendance group to all users." -msgstr "" +msgstr "Aloca grupo atendimento a todos os usuários." #. module: hr_attendance #: view:hr.attendance:0 @@ -194,7 +194,7 @@ msgstr "Junho" #: code:addons/hr_attendance/report/attendance_by_month.py:190 #, python-format msgid "Attendances by Month" -msgstr "" +msgstr "Atendimentos por mês" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.action_hr_attendance_week @@ -250,7 +250,7 @@ msgstr "Data" #. module: hr_attendance #: field:hr.config.settings,group_hr_attendance:0 msgid "Track attendances for all employees" -msgstr "" +msgstr "Acompanhar atendimentos para todos os funcionários" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -334,7 +334,7 @@ msgstr "Janeiro" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No Data Available !" -msgstr "" +msgstr "Nenhum dado disponível!" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -360,7 +360,7 @@ msgstr "Ação" #. module: hr_attendance #: model:ir.ui.menu,name:hr_attendance.menu_hr_time_tracking msgid "Time Tracking" -msgstr "Rastreamento de Tempo" +msgstr "Apontamento de Tempo" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.open_view_attendance_reason @@ -407,14 +407,14 @@ msgstr "Imprimir Relatório de Frequência Semanal" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_attendance #. openerp-web #: code:addons/hr_attendance/static/src/js/attendance.js:36 #, python-format msgid "Click to Sign In at %s." -msgstr "" +msgstr "Clique para Entrar em %s." #. module: hr_attendance #: field:hr.action.reason,action_type:0 @@ -433,6 +433,8 @@ msgid "" "You tried to %s with a date anterior to another event !\n" "Try to contact the HR Manager to correct attendances." msgstr "" +"Você tentou %s com uma data anterior para outro evento!\n" +"Entrar em contato com o Gerente de RH para atendimentos corretos" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -464,7 +466,7 @@ msgstr "" #: view:hr.attendance.month:0 #: view:hr.attendance.week:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_attendance #: help:hr.attendance,action_desc:0 diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index 5f0ce132a09..8f6a40433f4 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ru.po b/addons/hr_attendance/i18n/ru.po index 0cf0dfc6e42..8c8866e2c6f 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sl.po b/addons/hr_attendance/i18n/sl.po index d2bab541a7c..bd2a4c23757 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sq.po b/addons/hr_attendance/i18n/sq.po index bd153f09508..4a69ce997a5 100644 --- a/addons/hr_attendance/i18n/sq.po +++ b/addons/hr_attendance/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr.po b/addons/hr_attendance/i18n/sr.po index 41e2bad5ad0..90a82874b22 100644 --- a/addons/hr_attendance/i18n/sr.po +++ b/addons/hr_attendance/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr@latin.po b/addons/hr_attendance/i18n/sr@latin.po index d09d2b582af..3e498b47a74 100644 --- a/addons/hr_attendance/i18n/sr@latin.po +++ b/addons/hr_attendance/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sv.po b/addons/hr_attendance/i18n/sv.po index df7821f0f0f..9e2168e2748 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tlh.po b/addons/hr_attendance/i18n/tlh.po index ba63a5a0a23..18aebcff049 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index 69edb2cb6da..6da8dbb3627 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index 181b03d2235..b72e0acf2a8 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/vi.po b/addons/hr_attendance/i18n/vi.po index 37a83f02135..a292b05bfe0 100644 --- a/addons/hr_attendance/i18n/vi.po +++ b/addons/hr_attendance/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index 6dcf5c01f4f..c220574ee22 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index 5af60f18dc4..9a3c2744f09 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_contract/i18n/ar.po b/addons/hr_contract/i18n/ar.po index b260c44e8d7..8af376bc956 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bg.po b/addons/hr_contract/i18n/bg.po index be3140d825f..82f5b8b6e16 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bs.po b/addons/hr_contract/i18n/bs.po index 8f99f80f40a..ff55b8a64c8 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ca.po b/addons/hr_contract/i18n/ca.po index 7fc8137daf6..ad48ce3ecfb 100644 --- a/addons/hr_contract/i18n/ca.po +++ b/addons/hr_contract/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/cs.po b/addons/hr_contract/i18n/cs.po index ee1afa2f4a3..ea385775e13 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index a0a8621ec6b..984c809fb06 100644 --- a/addons/hr_contract/i18n/da.po +++ b/addons/hr_contract/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/de.po b/addons/hr_contract/i18n/de.po index ab617598528..c511cc69d03 100644 --- a/addons/hr_contract/i18n/de.po +++ b/addons/hr_contract/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/el.po b/addons/hr_contract/i18n/el.po index 1d3cd12c6e0..f10912c9ae9 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es.po b/addons/hr_contract/i18n/es.po index 1bb9b2d92ef..552dd5d6e4c 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index c1c21f21aee..a43d7be646f 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_CR.po b/addons/hr_contract/i18n/es_CR.po index ad48d7bc790..795191d01df 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index ef87d23e1f0..21578b58c5b 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_PY.po b/addons/hr_contract/i18n/es_PY.po index 7277f91d2c6..6f4853d45e0 100644 --- a/addons/hr_contract/i18n/es_PY.po +++ b/addons/hr_contract/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/et.po b/addons/hr_contract/i18n/et.po index 8d89f61cd43..469ad23bb54 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fi.po b/addons/hr_contract/i18n/fi.po index 700d756a1fe..9974067da99 100644 --- a/addons/hr_contract/i18n/fi.po +++ b/addons/hr_contract/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index 0a633bab78c..cabd5a0ca6c 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index 74682909bd4..71de9b44907 100644 --- a/addons/hr_contract/i18n/gl.po +++ b/addons/hr_contract/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gu.po b/addons/hr_contract/i18n/gu.po index 60bde520926..31da173be33 100644 --- a/addons/hr_contract/i18n/gu.po +++ b/addons/hr_contract/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hi.po b/addons/hr_contract/i18n/hi.po index a8e2340c47f..13c0eb598eb 100644 --- a/addons/hr_contract/i18n/hi.po +++ b/addons/hr_contract/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hr.po b/addons/hr_contract/i18n/hr.po index 616f4a7374c..ca3eb67bb31 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hu.po b/addons/hr_contract/i18n/hu.po index 89538ea6645..8c57a41e400 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/id.po b/addons/hr_contract/i18n/id.po index f733ca2a32d..7c6843869a8 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/it.po b/addons/hr_contract/i18n/it.po index 82f8d34533f..8fc84eb95ae 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ja.po b/addons/hr_contract/i18n/ja.po index 24069721693..97f062027e1 100644 --- a/addons/hr_contract/i18n/ja.po +++ b/addons/hr_contract/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ko.po b/addons/hr_contract/i18n/ko.po index aca5a1b1cce..7d050265593 100644 --- a/addons/hr_contract/i18n/ko.po +++ b/addons/hr_contract/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lo.po b/addons/hr_contract/i18n/lo.po index fffc697e396..7522e7e06ec 100644 --- a/addons/hr_contract/i18n/lo.po +++ b/addons/hr_contract/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lt.po b/addons/hr_contract/i18n/lt.po index d236038596f..ac4816278f1 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index 9a66201b3af..a87da7e0850 100644 --- a/addons/hr_contract/i18n/lv.po +++ b/addons/hr_contract/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index 367a61ee711..9cd6c9bf113 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index ff0327a4846..d4127c5ac87 100644 --- a/addons/hr_contract/i18n/mn.po +++ b/addons/hr_contract/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nb.po b/addons/hr_contract/i18n/nb.po index 18deee80c11..2218d1dccc7 100644 --- a/addons/hr_contract/i18n/nb.po +++ b/addons/hr_contract/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl.po b/addons/hr_contract/i18n/nl.po index b171f5089da..883039b4ed0 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index 9e593a55d25..063f94cb4b9 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pl.po b/addons/hr_contract/i18n/pl.po index 418e99f050b..ecbef800e3d 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index 14a74f79604..6f72d4c0b84 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index 01e5d7751e2..0221b00732d 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -103,7 +103,7 @@ msgstr "Tipos de Contrato" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Exame Médico" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -129,7 +129,7 @@ msgstr "Em Quilometros" #: view:hr.contract:0 #: field:hr.contract,notes:0 msgid "Notes" -msgstr "Notas" +msgstr "Observações" #. module: hr_contract #: field:hr.contract,permit_no:0 @@ -163,7 +163,7 @@ msgstr "Horário de Trabalho" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "Salário e Benefícios" #. module: hr_contract #: field:hr.contract,job_id:0 @@ -174,6 +174,7 @@ msgstr "Função" #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"Erro! A data de início do contrato deve ser anterior a data de término." #. module: hr_contract #: field:hr.employee,manager:0 @@ -193,7 +194,7 @@ msgstr "Núm. do Visto" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Distância do Trabalho" #. module: hr_contract #: field:hr.employee,place_of_birth:0 @@ -203,7 +204,7 @@ msgstr "Naturalidade" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Duração do Período de Experiência" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index e0bf20b582b..53f90354d93 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ru.po b/addons/hr_contract/i18n/ru.po index 840af9d2689..d785c0ec14a 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sl.po b/addons/hr_contract/i18n/sl.po index 1d82c88fd36..8f9be62b75c 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sq.po b/addons/hr_contract/i18n/sq.po index 90b20651dbe..fbcfbe8d512 100644 --- a/addons/hr_contract/i18n/sq.po +++ b/addons/hr_contract/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr.po b/addons/hr_contract/i18n/sr.po index 6ea3d39fc84..1b8b816d772 100644 --- a/addons/hr_contract/i18n/sr.po +++ b/addons/hr_contract/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr@latin.po b/addons/hr_contract/i18n/sr@latin.po index 38b99db8feb..be606aa5067 100644 --- a/addons/hr_contract/i18n/sr@latin.po +++ b/addons/hr_contract/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sv.po b/addons/hr_contract/i18n/sv.po index e8007fe2f97..2136c048e73 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/i18n/sv.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:52+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -40,7 +40,7 @@ msgstr "Företagsbil" #. module: hr_contract #: view:hr.contract:0 msgid "Group By..." -msgstr "Gruppera på..." +msgstr "Gruppera efter..." #. module: hr_contract #: field:hr.contract,department_id:0 @@ -123,7 +123,7 @@ msgstr "Avtalets referensnummer" #. module: hr_contract #: help:hr.employee,vehicle_distance:0 msgid "In kilometers" -msgstr "i kilometer" +msgstr "I kilometer" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index 49de22ac72c..3860415e8ae 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index 1c0c6dace29..122b0a6b9f8 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index d05333f8bb6..8c0a2c0448f 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/vi.po b/addons/hr_contract/i18n/vi.po index ea7eaf1f046..dcb2779cd01 100644 --- a/addons/hr_contract/i18n/vi.po +++ b/addons/hr_contract/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index 2f6aeab0eb3..87716981f61 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index 94a80bcc1c6..3c8fec56e8d 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_evaluation/i18n/ar.po b/addons/hr_evaluation/i18n/ar.po index 04017394e1c..06d610494ce 100644 --- a/addons/hr_evaluation/i18n/ar.po +++ b/addons/hr_evaluation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/bg.po b/addons/hr_evaluation/i18n/bg.po index 8128c368dc2..fd3a65e543a 100644 --- a/addons/hr_evaluation/i18n/bg.po +++ b/addons/hr_evaluation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ca.po b/addons/hr_evaluation/i18n/ca.po index 7e682dc29ed..b370cceef75 100644 --- a/addons/hr_evaluation/i18n/ca.po +++ b/addons/hr_evaluation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/da.po b/addons/hr_evaluation/i18n/da.po index 3ef51723fab..985a2e13a77 100644 --- a/addons/hr_evaluation/i18n/da.po +++ b/addons/hr_evaluation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/de.po b/addons/hr_evaluation/i18n/de.po index c55f60c0b47..a305439f291 100644 --- a/addons/hr_evaluation/i18n/de.po +++ b/addons/hr_evaluation/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index 43face972b5..57397f57621 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -906,6 +906,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una nueva petición de entrevista relacionada con una " +"evaluación personal.\n" +"

\n" +"Las peticiones de entrevista se generan normalmente automáticamente por " +"OpenERP de acuerdo al plan de evaluación del empleado. Cada usuario recibe " +"automáticamente correos electrónicos y peticiones para evaluar a sus " +"compañeros periódicamente.\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 diff --git a/addons/hr_evaluation/i18n/es_CR.po b/addons/hr_evaluation/i18n/es_CR.po index c20475eb8da..ddea8512ba9 100644 --- a/addons/hr_evaluation/i18n/es_CR.po +++ b/addons/hr_evaluation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index f9adda1a24e..6bf39c98994 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/et.po b/addons/hr_evaluation/i18n/et.po index 0095a45f7a7..4e6fa134a71 100644 --- a/addons/hr_evaluation/i18n/et.po +++ b/addons/hr_evaluation/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fi.po b/addons/hr_evaluation/i18n/fi.po index 4793e127d22..afb7cf5e0a4 100644 --- a/addons/hr_evaluation/i18n/fi.po +++ b/addons/hr_evaluation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index 0d57a5a995d..d01438e7d4c 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 1efeb51cb84..ebbbc4ec13e 100644 --- a/addons/hr_evaluation/i18n/gl.po +++ b/addons/hr_evaluation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hr.po b/addons/hr_evaluation/i18n/hr.po index 3ea179f9b92..730daaa3c30 100644 --- a/addons/hr_evaluation/i18n/hr.po +++ b/addons/hr_evaluation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hu.po b/addons/hr_evaluation/i18n/hu.po index 5407a7daf30..fb232230a84 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/id.po b/addons/hr_evaluation/i18n/id.po index 3a378d124bf..ae458004a8f 100644 --- a/addons/hr_evaluation/i18n/id.po +++ b/addons/hr_evaluation/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/it.po b/addons/hr_evaluation/i18n/it.po index 6b87ffb7658..3d4b2b47228 100644 --- a/addons/hr_evaluation/i18n/it.po +++ b/addons/hr_evaluation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ja.po b/addons/hr_evaluation/i18n/ja.po index c0c20aafdec..b3fa10a6744 100644 --- a/addons/hr_evaluation/i18n/ja.po +++ b/addons/hr_evaluation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index aabf43d1eeb..42adb0c6730 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index 82a8057e175..eb28e4c7114 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index 81b0ec6e7ca..59cf6cc227b 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt_BR.po b/addons/hr_evaluation/i18n/pt_BR.po index 9c369806c65..67f89021300 100644 --- a/addons/hr_evaluation/i18n/pt_BR.po +++ b/addons/hr_evaluation/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -83,7 +83,7 @@ msgstr "Fases de Avaliação" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Request" -msgstr "" +msgstr "Enviar Requisição" #. module: hr_evaluation #: help:hr_evaluation.plan,month_first:0 @@ -98,7 +98,7 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Avaliações" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -109,7 +109,7 @@ msgstr "(eval_name)s:Nome da Avaliação" #: field:hr.evaluation.interview,message_ids:0 #: field:hr_evaluation.evaluation,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -149,7 +149,7 @@ msgstr "Avaliar" #: help:hr.evaluation.interview,message_unread:0 #: help:hr_evaluation.evaluation,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -224,6 +224,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -240,7 +243,7 @@ msgstr "Prazo final" #: code:addons/hr_evaluation/hr_evaluation.py:320 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -260,7 +263,7 @@ msgstr "Data Atual" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview msgid "Interviews" -msgstr "" +msgstr "Entrevistas" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:83 @@ -272,13 +275,13 @@ msgstr "A respeito de " #: field:hr.evaluation.interview,message_follower_ids:0 #: field:hr_evaluation.evaluation,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr_evaluation #: field:hr.evaluation.interview,message_unread:0 #: field:hr_evaluation.evaluation,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -379,7 +382,7 @@ msgstr "Julho" #: view:hr_evaluation.evaluation:0 #: field:hr_evaluation.evaluation,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer @@ -401,6 +404,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um plano de avaliação.\n" +"

\n" +" Você pode definir planos de avaliação (ex: primeira " +"entrevista após 6\n" +"                 meses, depois a cada ano). Então, cada funcionário pode ser " +"associado a\n" +"                 um plano de avaliação para que o OpenERP possa gerar " +"automaticamente\n" +"                 pedidos de entrevista para os gestores e / ou " +"subordinados.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -448,7 +464,7 @@ msgstr "Todas as Respostas" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Answer Survey" -msgstr "" +msgstr "Responder Pesquisa" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -561,7 +577,7 @@ msgstr " (employee_name)s: Nome do funcionário" #: field:hr.evaluation.interview,message_is_follower:0 #: field:hr_evaluation.evaluation,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -610,7 +626,7 @@ msgstr "Entrevistas de Avaliação" #: field:hr.evaluation.interview,message_summary:0 #: field:hr_evaluation.evaluation,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -674,7 +690,7 @@ msgstr "Data Final" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Esta é a valorização no qual a avaliação é resumido." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -804,6 +820,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma nova avaliação.\n" +"

\n" +" Cada funcionário pode ser atribuído um Plano de Avaliação. " +"Tal plano\n" +"                 define a freqüência e a maneira como você gerencia a sua " +"avaliação\n" +" pessoal periódica. Você será capaz de definir as etapas e\n" +"                 anexar entrevistas a cada passo.O OpenERP gerencia todos os " +"tipos de\n" +"                 avaliações: de baixo para cima, de cima para baixo, a auto-" +"avaliação e final\n" +"                 avaliação por parte do gerente.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -859,6 +890,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Você não pode alterar o estado, por que algumas avaliações estão aguardando " +"respostas ou estão como provisórias." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -885,12 +918,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma solicitação de nova entrevista " +"relacionada a uma avaliação pessoal.\n" +"

\n" +" Pedidos de entrevista geralmente são gerados automaticamente " +"pelo\n" +"              OpenERP de acordo com o plano de avaliação do funcionário. " +"cada\n" +" usuário recebe e-mails automáticos e pedidos para avaliar os " +"seus\n" +"                 colegas periodicamente.\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 #: help:hr_evaluation.evaluation,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_evaluation #: view:hr.evaluation.interview:0 diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index 1237ced50e5..09755c19173 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ru.po b/addons/hr_evaluation/i18n/ru.po index 28e148232fc..a48ed93961c 100644 --- a/addons/hr_evaluation/i18n/ru.po +++ b/addons/hr_evaluation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index a5bb1d5317c..ebbc345e815 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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/sr.po b/addons/hr_evaluation/i18n/sr.po index f7481adecfc..711b9821462 100644 --- a/addons/hr_evaluation/i18n/sr.po +++ b/addons/hr_evaluation/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr@latin.po b/addons/hr_evaluation/i18n/sr@latin.po index 296da7be00d..62e8c649367 100644 --- a/addons/hr_evaluation/i18n/sr@latin.po +++ b/addons/hr_evaluation/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sv.po b/addons/hr_evaluation/i18n/sv.po index 70c8d2a0a04..fdf63a5b174 100644 --- a/addons/hr_evaluation/i18n/sv.po +++ b/addons/hr_evaluation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/tr.po b/addons/hr_evaluation/i18n/tr.po index 681f2aba27c..97df07afeac 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index 608960000b8..633644d96da 100644 --- a/addons/hr_evaluation/i18n/zh_CN.po +++ b/addons/hr_evaluation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_expense/i18n/ar.po b/addons/hr_expense/i18n/ar.po index f8a7a7a4e64..67580c1b9df 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index 5b20fd9e733..f3e519e7779 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index bab7d9ad594..0fbd2ce8947 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index e060a6e55b9..aec64ace734 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index ada9026b92e..78876a10673 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index 7e657adbcf0..adb871072d3 100644 --- a/addons/hr_expense/i18n/da.po +++ b/addons/hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index c02cc8541b7..c281aab4c7e 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 514af45de95..77599c4560c 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index e6c3784dc39..adc7255b167 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -36,7 +36,7 @@ msgstr "El contable reembolsa los gastos" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Gasto aprobado" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -113,6 +113,8 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"No se ha encontrado diario de gastos. Asegúrese por favor que tiene un " +"diario con el tipo 'Compras' configurado." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -160,7 +162,7 @@ msgstr "¡Error!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Gasto rechazado" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -601,7 +603,7 @@ msgstr "Usuario" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Categorías de gasto" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -842,7 +844,7 @@ msgstr "Puede ser un gasto" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Gasto confirmado, esperando confirmación" #. module: hr_expense #: report:hr.expense:0 diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index e71e82df2b3..019edae3c10 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index 9e78f6c653f..a7f839983e3 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index a7475477794..259bfadd6cf 100644 --- a/addons/hr_expense/i18n/es_EC.po +++ b/addons/hr_expense/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index 4b1f950f28d..b32ac742ee3 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index 4804cf3add5..ef87b786626 100644 --- a/addons/hr_expense/i18n/fi.po +++ b/addons/hr_expense/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index a53c0241cba..688393a7049 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index a38f2011710..410326b5999 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index eca77316f76..3be12b1ddaf 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index ff616ce178b..43d994d5ae6 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index 00846055daf..851a4c18415 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 338d375b9ec..31d774c3f88 100644 --- a/addons/hr_expense/i18n/ja.po +++ b/addons/hr_expense/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index 2ef6e4619a4..c2cb1d06ee2 100644 --- a/addons/hr_expense/i18n/ko.po +++ b/addons/hr_expense/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index 5b43baf04db..3ea0a7463b1 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index e8b8c633eb5..c6b6a8d7090 100644 --- a/addons/hr_expense/i18n/lv.po +++ b/addons/hr_expense/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 1d620bc8aa7..78bcf501575 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index f2ff0f6a618..966647ed6bf 100644 --- a/addons/hr_expense/i18n/nb.po +++ b/addons/hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index 9e52dc603f7..7d99ea6a13d 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index b9925f649bc..32cb2757f4b 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index 198472743a1..256f7c42087 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index 52dcb8512f2..489a351c529 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index 2ae43b5b991..96638fab97a 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -36,7 +36,7 @@ msgstr "A conta para reembolso de despesas" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Despesa aprovada" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -77,7 +77,7 @@ msgstr "Nova Despesa" #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de Medida" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -87,7 +87,7 @@ msgstr "Março" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr_expense #: field:hr.expense.expense,company_id:0 @@ -113,6 +113,8 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"Nenhum diário de despesas encontrado. Por favor verifique se você possui um " +"diário com o tipo 'compras' configurado." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -122,7 +124,7 @@ msgstr "Estatísticas das Despesas" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Open Receipt" -msgstr "" +msgstr "Recibo Aberto" #. module: hr_expense #: view:hr.expense.report:0 @@ -147,7 +149,7 @@ msgstr "Observações" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -155,12 +157,12 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:197 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Despesa recusada" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -186,7 +188,7 @@ msgstr "O gerente recusa as despesas. Retorna para Provisório." #. module: hr_expense #: help:hr.expense.expense,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -217,6 +219,11 @@ msgid "" "If the admin accepts it, the status is 'Accepted'.\n" " If a receipt is made for the expense request, the status is 'Done'." msgstr "" +"Quando a solicitação de despesa é criada o estado é 'Provisório'.\n" +"Quando é confirmado pelo usuário e o pedido é enviado ao administrador, a " +"situação é 'Aguardando Confirmação'.\n" +"Se o administrador aceita, a situação é 'Aceito'.\n" +"Se um recibo é feito para a solicitação de despesa, a situação é 'Concluído'." #. module: hr_expense #: help:hr.expense.expense,date_confirm:0 @@ -239,12 +246,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:302 #, python-format msgid "Warning" -msgstr "" +msgstr "Atenção" #. module: hr_expense #: report:hr.expense:0 @@ -293,7 +303,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 @@ -315,7 +325,7 @@ msgstr "Aguardando" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr_expense #: report:hr.expense:0 @@ -352,7 +362,7 @@ msgstr "Alguns custos podem ser refaturados para o cliente" #: code:addons/hr_expense/hr_expense.py:197 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "O funcionário precisa ter um endereço residencial." #. module: hr_expense #: view:board.board:0 @@ -385,7 +395,7 @@ msgstr "Despesa reembolsável" #: field:hr.expense.expense,journal_id:0 #: field:hr.expense.report,journal_id:0 msgid "Force Journal" -msgstr "Forçar Livro" +msgstr "Forçar Diário" #. module: hr_expense #: view:hr.expense.report:0 @@ -401,13 +411,13 @@ msgstr "Julho" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimburseexpense0 msgid "After creating invoice, reimburse expenses" -msgstr "Depois de criar a fatura, reimbolsar despesas" +msgstr "Depois de criar a fatura, reembolsar despesas" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:116 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 @@ -424,7 +434,7 @@ msgstr "Data de Validação" #: code:addons/hr_expense/hr_expense.py:227 #, python-format msgid "Expense Receipt" -msgstr "" +msgstr "Recibo de Despesa" #. module: hr_expense #: view:hr.expense.report:0 @@ -479,7 +489,7 @@ msgstr "Moeda" #. module: hr_expense #: field:hr.expense.expense,voucher_id:0 msgid "Employee's Receipt" -msgstr "" +msgstr "Recibo do Funcionário" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -498,11 +508,13 @@ msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure" msgstr "" +"A Unidade de Medida não pertence a mesma categoria da unidade de medida do " +"produto" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 msgid "The journal used when the expense is done." -msgstr "" +msgstr "O diário usado quando a despesa é concluída." #. module: hr_expense #: field:hr.expense.expense,note:0 @@ -526,6 +538,8 @@ msgid "" "Please configure Default Expense account for Product purchase: " "`property_account_expense_categ`." msgstr "" +"Por favor configure a conta padrão de despesas para compra de produto: " +"`property_account_expense_categ`." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 @@ -560,7 +574,7 @@ msgstr "Despesas Provisórias" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.product_normal_form_view_installer @@ -592,7 +606,7 @@ msgstr "Usuário" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Categorias de Depesas" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -614,11 +628,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar novas despesas. \n" +"

\n" +"O OpenERP irá garantir que todo o processo é seguido, a folha de despesa\n" +"                 é validada pelo gerente(s), o funcionário é reembolsado\n" +"                 de seus gastos, algumas despesas devem ser re-faturadas " +"aos\n" +"                 clientes.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "Gerar Lançamentos Contábeis" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -633,7 +657,7 @@ msgstr "Despesas de RH" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: hr_expense #: model:product.template,name:hr_expense.car_travel_product_template @@ -648,7 +672,7 @@ msgstr "Enviar ao Gerente" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "Despesas Concluídas" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 @@ -674,7 +698,7 @@ msgstr "Despesas" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 msgid "Receipt" -msgstr "" +msgstr "Recibo" #. module: hr_expense #: view:hr.expense.report:0 @@ -692,7 +716,7 @@ msgstr "Preço Unitário" #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" -msgstr "" +msgstr "Concluído" #. module: hr_expense #: model:process.transition.action,name:hr_expense.process_transition_action_supplierinvoice0 @@ -713,12 +737,12 @@ msgstr "Refaturar" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Data da Despesa" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Validada por" #. module: hr_expense #: view:hr.expense.expense:0 @@ -820,12 +844,12 @@ msgstr "Recusado" #. module: hr_expense #: field:product.product,hr_expense_ok:0 msgid "Can be Expensed" -msgstr "Pode conter despesa" +msgstr "Pode ser debitado" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Despesa confirmada, aguardando validação" #. module: hr_expense #: report:hr.expense:0 @@ -846,7 +870,7 @@ msgstr "Usuário de validação" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting Data" -msgstr "Contabilizando dados" +msgstr "Dados Contábeis" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -862,7 +886,7 @@ msgstr "Nome" #: code:addons/hr_expense/hr_expense.py:116 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "Você só pode excluir despesas provisórias!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 @@ -897,12 +921,12 @@ msgstr "Aprovar" #. module: hr_expense #: help:hr.expense.expense,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_expense #: field:hr.expense.line,sequence:0 msgid "Sequence" -msgstr "Sequencia" +msgstr "Seqüência" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_confirmexpense0 @@ -922,11 +946,12 @@ msgstr "Despesas" #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." msgstr "" +"Especifica se o produto pode ser selecionado em uma linha de despesa do RH." #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidade" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index f4ca46e94b7..77a56a954b4 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index 7e5abe5f469..720dc2ce39d 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index 9af888749d8..080302d675c 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index 75c04906acf..f0712e18f09 100644 --- a/addons/hr_expense/i18n/sq.po +++ b/addons/hr_expense/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:14+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index 676b99b0948..207319a0cdd 100644 --- a/addons/hr_expense/i18n/sr.po +++ b/addons/hr_expense/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index 1d6a307bcd0..272d55462e6 100644 --- a/addons/hr_expense/i18n/sr@latin.po +++ b/addons/hr_expense/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index d97f9240c68..dca642036cc 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tlh.po b/addons/hr_expense/i18n/tlh.po index d8192356266..50e5d513657 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index 0c7e0bac185..0e1c84cedb0 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/uk.po b/addons/hr_expense/i18n/uk.po index b2853ff511e..3f948ea0e5d 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 6fa3db0cb8f..86abaac0d7a 100644 --- a/addons/hr_expense/i18n/vi.po +++ b/addons/hr_expense/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 6aa33268126..4f99d6adeeb 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index f4ae911eaf4..90aac26e87b 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_holidays/i18n/ar.po b/addons/hr_holidays/i18n/ar.po index 46d7a8aa122..66c8b4c7dfd 100644 --- a/addons/hr_holidays/i18n/ar.po +++ b/addons/hr_holidays/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bg.po b/addons/hr_holidays/i18n/bg.po index 0ade3c49a0a..eddc1e0e612 100644 --- a/addons/hr_holidays/i18n/bg.po +++ b/addons/hr_holidays/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bs.po b/addons/hr_holidays/i18n/bs.po index c19deafece6..2df5f211900 100644 --- a/addons/hr_holidays/i18n/bs.po +++ b/addons/hr_holidays/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ca.po b/addons/hr_holidays/i18n/ca.po index 441efa579eb..aea5d0596dc 100644 --- a/addons/hr_holidays/i18n/ca.po +++ b/addons/hr_holidays/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/cs.po b/addons/hr_holidays/i18n/cs.po index a3c8e6c1962..c4bf901a93a 100644 --- a/addons/hr_holidays/i18n/cs.po +++ b/addons/hr_holidays/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/da.po b/addons/hr_holidays/i18n/da.po index 2428a94bcca..195a36bc9e2 100644 --- a/addons/hr_holidays/i18n/da.po +++ b/addons/hr_holidays/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/de.po b/addons/hr_holidays/i18n/de.po index f0c9319694a..4ea5505d65d 100644 --- a/addons/hr_holidays/i18n/de.po +++ b/addons/hr_holidays/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/el.po b/addons/hr_holidays/i18n/el.po index 52f70829661..84ee6a4346d 100644 --- a/addons/hr_holidays/i18n/el.po +++ b/addons/hr_holidays/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index 7740057fed8..2a050bf1ab1 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -116,7 +116,7 @@ msgstr "" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Petición rechazada" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 @@ -754,7 +754,7 @@ msgstr "Ausencias de mi departamento" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed msgid "Request confirmed, waiting confirmation" -msgstr "" +msgstr "Petición confirmada, esperando confirmación" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -1061,7 +1061,7 @@ msgstr "Para aprobar" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Petición aprobada" #. module: hr_holidays #: field:hr.holidays,notes:0 diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index 4d60d2222b7..2be6919e6cc 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_CR.po b/addons/hr_holidays/i18n/es_CR.po index b82c62f62ce..4bc532ea4f6 100644 --- a/addons/hr_holidays/i18n/es_CR.po +++ b/addons/hr_holidays/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_EC.po b/addons/hr_holidays/i18n/es_EC.po index 63c05e3975a..6f535edcb72 100644 --- a/addons/hr_holidays/i18n/es_EC.po +++ b/addons/hr_holidays/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/et.po b/addons/hr_holidays/i18n/et.po index 9fe17d11259..890c9fd361b 100644 --- a/addons/hr_holidays/i18n/et.po +++ b/addons/hr_holidays/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fi.po b/addons/hr_holidays/i18n/fi.po index e2fdc409605..58d49f66d7a 100644 --- a/addons/hr_holidays/i18n/fi.po +++ b/addons/hr_holidays/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fr.po b/addons/hr_holidays/i18n/fr.po index e01b0db5528..06b0044a9ca 100644 --- a/addons/hr_holidays/i18n/fr.po +++ b/addons/hr_holidays/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/gu.po b/addons/hr_holidays/i18n/gu.po index 9fa7a43ac10..c252d127ccc 100644 --- a/addons/hr_holidays/i18n/gu.po +++ b/addons/hr_holidays/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hi.po b/addons/hr_holidays/i18n/hi.po index f4658ab4c06..772a24a750b 100644 --- a/addons/hr_holidays/i18n/hi.po +++ b/addons/hr_holidays/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hr.po b/addons/hr_holidays/i18n/hr.po index bf884e5910e..0e77b47dc6b 100644 --- a/addons/hr_holidays/i18n/hr.po +++ b/addons/hr_holidays/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hu.po b/addons/hr_holidays/i18n/hu.po index cf1405aef64..ddc504d693c 100644 --- a/addons/hr_holidays/i18n/hu.po +++ b/addons/hr_holidays/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/id.po b/addons/hr_holidays/i18n/id.po index 704001a5f68..5bb46619224 100644 --- a/addons/hr_holidays/i18n/id.po +++ b/addons/hr_holidays/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index 17c3bf3aa6d..b88b89513ed 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ja.po b/addons/hr_holidays/i18n/ja.po index 0958fbddc76..939b24009f0 100644 --- a/addons/hr_holidays/i18n/ja.po +++ b/addons/hr_holidays/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ko.po b/addons/hr_holidays/i18n/ko.po index 2a881ac41ad..737a1767685 100644 --- a/addons/hr_holidays/i18n/ko.po +++ b/addons/hr_holidays/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index 8ef2d92dcce..b1be2b224b0 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lv.po b/addons/hr_holidays/i18n/lv.po index d3fc0eba25b..8a2251c2907 100644 --- a/addons/hr_holidays/i18n/lv.po +++ b/addons/hr_holidays/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index 64ba2b41411..fe050cbc716 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/mn.po b/addons/hr_holidays/i18n/mn.po index 2e028cbc42f..e0d39fabc9e 100644 --- a/addons/hr_holidays/i18n/mn.po +++ b/addons/hr_holidays/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nb.po b/addons/hr_holidays/i18n/nb.po index ceb4e6d410d..5264c3886f7 100644 --- a/addons/hr_holidays/i18n/nb.po +++ b/addons/hr_holidays/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 3475583b3c5..09d60443edb 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index 591df1f6e06..383ea3c7e25 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pl.po b/addons/hr_holidays/i18n/pl.po index 1c616e32f0c..c0d350f1c43 100644 --- a/addons/hr_holidays/i18n/pl.po +++ b/addons/hr_holidays/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pt.po b/addons/hr_holidays/i18n/pt.po index 840580b2c69..672e8b7808d 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 8878aea6b58..394cf7d9216 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -39,6 +39,8 @@ msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"Você não pode modificar um pedido de folga que foi aprovado. Contate o " +"Gerente de RH." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -63,7 +65,7 @@ msgstr "Modo de Alocação" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "Data Inicial" #. module: hr_holidays #: view:hr.holidays:0 @@ -75,7 +77,7 @@ msgstr "Departamento" #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Pedidos de alocação de aprovar" #. module: hr_holidays #: help:hr.holidays,category_id:0 @@ -95,7 +97,7 @@ msgstr "Dias Restantes" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "" +msgstr "de" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 @@ -108,21 +110,23 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"O intervalo de duração padrão entre a data de início e a data final é de 8 " +"horas. Você pode adaptá-lo às suas necessidades livremente." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Solicitação recusada" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "Alocação" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "para" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -132,7 +136,7 @@ msgstr "Ciano Claro" #. module: hr_holidays #: constraint:hr.holidays:0 msgid "You can not have 2 leaves that overlaps on same day!" -msgstr "" +msgstr "Você não pode ter duas folgas que se sobrepõe no mesmo dia!" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -147,7 +151,7 @@ msgstr "Tipo de Folga Atual" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "Validar" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -172,7 +176,7 @@ msgstr "Recusar" #: code:addons/hr_holidays/hr_holidays.py:433 #, python-format msgid "Request approved, waiting second validation." -msgstr "" +msgstr "Solicitação aprovada. aguardando segunda validação." #. module: hr_holidays #: view:hr.employee:0 @@ -184,18 +188,18 @@ msgstr "Folgas" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "" +msgstr "Análise" #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays @@ -240,7 +244,7 @@ msgstr "Validação" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr_holidays #: field:hr.holidays.status,color_name:0 @@ -270,6 +274,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:238 @@ -290,12 +297,12 @@ msgstr "Lilás" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Deixar Reuniões" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl msgid "Legal Leaves 2012" -msgstr "" +msgstr "Folgas Legais 2012" #. module: hr_holidays #: selection:hr.holidays.summary.dept,holiday_type:0 @@ -323,13 +330,13 @@ msgstr "Folga Solicitada por %s" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Sum" -msgstr "" +msgstr "Total" #. module: hr_holidays #: view:hr.holidays.status:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status msgid "Leave Types" -msgstr "" +msgstr "Tipo de Folga" #. module: hr_holidays #: field:hr.holidays.status,remaining_leaves:0 @@ -339,7 +346,7 @@ msgstr "Folhas Restantes" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -402,6 +409,12 @@ msgid "" " \n" "The status is 'Approved', when holiday request is approved by manager." msgstr "" +"O status é definido como a 'Apresentar', quando um pedido de férias é " +"criado.\n" +"O status é 'Para aprovar', quando o pedido de férias é confirmado pelo " +"usuário.\n" +"O status é 'Recusado', quando o pedido de férias é recusado pelo gerente.\n" +"O status é 'Aprovado', quando o pedido de férias é aceito pelo gerente." #. module: hr_holidays #: view:hr.holidays:0 @@ -443,7 +456,7 @@ msgstr "Aguardando Aprovação" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "Marcador de Funcionário" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 @@ -456,6 +469,8 @@ msgid "" "Filters only on allocations and requests that belong to an holiday type that " "is 'active' (active field is True)" msgstr "" +"Filtra apenas sobre as alocações e pedidos que pertencem a um tipo de férias " +"que é \"ativo\" (campo ativo é verdadeiro)" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.hr_holidays_leaves_assign_legal @@ -467,6 +482,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Você pode atribuir folgas restantes Legais para cada " +"funcionário, o OpenERP\n" +"                automaticamente cria e valida as solicitações de alocação.\n" +"

\n" +" " #. module: hr_holidays #: help:hr.holidays.status,categ_id:0 @@ -474,12 +495,15 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Assim que a folga é validada, o OpenERP irá criar uma reunião correspondente " +"desde tipo no calendário." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." msgstr "" +"Você precisa selecionar pelo menos um Departamento, e tentar novamente." #. module: hr_holidays #: field:hr.holidays,parent_id:0 @@ -499,7 +523,7 @@ msgstr "Mês" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr_holidays #: view:hr.holidays:0 @@ -526,12 +550,14 @@ msgid "" "There are not enough %s allocated for employee %s; please create an " "allocation request for this leave type." msgstr "" +"Não existe %s suficientes alocados ao funcionário %s; por favor crie uma " +"solicitação de alocação para este tipo de folga." #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -546,11 +572,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma solicitação de folga.\n" +"

\n" +" Depois de ter registrado o seu pedido de licença, ele será " +"enviado para\n" +" um gerente para validação. Certifique-se de definir o direito a licença\n" +"                 Tipo (recuperação, férias legais, doença) e a quantidade " +"exata\n" +"                 do número de dias em aberto relacionadas com a sua " +"licença.\n" +"

\n" +" " #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The employee or employee category of this request is missing." msgstr "" +"O funcionário ou categoria de funcionário desde pedido está faltando." #. module: hr_holidays #: view:hr.holidays:0 @@ -573,16 +612,19 @@ msgid "" "leaves than the available ones for this type and take them into account for " "the \"Remaining Legal Leaves\" defined on the employee form." msgstr "" +"Se você selecionar esta opção, o sistema permite que os funcionários a tire " +"mais folgas do que as disponíveis para este tipo e levá em conta para as " +"\"Folgas Legais Remanescentes\", definidos no formulário do funcionário." #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "Reiniciar como Novo" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "" +msgstr "O número de dias deve ser maior do que 0." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -592,7 +634,7 @@ msgstr "Coral Leve" #. module: hr_holidays #: field:hr.employee,leave_date_to:0 msgid "To Date" -msgstr "" +msgstr "Até a Data" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -607,7 +649,7 @@ msgstr "Definir Folgas para os Funcionários" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Leaves Types" -msgstr "" +msgstr "Tipo de Folga" #. module: hr_holidays #: field:hr.holidays,meeting_id:0 @@ -620,12 +662,14 @@ msgid "" "This color will be used in the leaves summary located in Reporting\\Leaves " "by Department." msgstr "" +"Esta cor será usada no resumo da folga localizada em Relatórios \\ Folgas " +"por Departamento." #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -635,12 +679,12 @@ msgstr "Marfim" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_employee msgid "HR Leaves Summary Report By Employee" -msgstr "" +msgstr "Relatório do Resumo de Folgas do RH por funcionário" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "Solicitações a Aprovar" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -650,7 +694,7 @@ msgstr "Folga já tirada" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -677,7 +721,7 @@ msgstr "Primeira Aprovação" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid @@ -698,7 +742,7 @@ msgstr "Resumo das Folgas" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "Enviar ao Gerente" #. module: hr_holidays #: view:hr.employee:0 @@ -718,7 +762,7 @@ msgstr "Folgas em meu Departamento" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed msgid "Request confirmed, waiting confirmation" -msgstr "" +msgstr "Solicitação confirmada, aguardando validação" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -775,7 +819,7 @@ msgstr "Validado" #: code:addons/hr_holidays/hr_holidays.py:238 #, python-format msgid "You cannot delete a leave which is in %s state." -msgstr "" +msgstr "Você não pode excluir uma folga que está no estado %s." #. module: hr_holidays #: view:hr.holidays:0 @@ -789,6 +833,8 @@ msgid "" "By Employee: Allocation/Request for individual Employee, By Employee Tag: " "Allocation/Request for group of employees in category" msgstr "" +"Por Funcionário: Alocação / Pedido individual, por Marcador de Funcionário: " +"Alocação / Pedido de grupo de funcionários na categoria" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves @@ -805,7 +851,7 @@ msgstr "Aplicar Validação Dupla" #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "dias" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -833,7 +879,7 @@ msgstr "Departamento(s)" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "Para Enviar" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:336 @@ -853,7 +899,7 @@ msgstr "Descrição" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "Por marcador de funcionário" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -865,7 +911,7 @@ msgstr "Recusado" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "Tipo de Reunião" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -875,7 +921,7 @@ msgstr "Folgas Restantes" #. module: hr_holidays #: view:hr.holidays:0 msgid "Allocated Days" -msgstr "" +msgstr "Dias alocados" #. module: hr_holidays #: view:hr.holidays:0 @@ -924,7 +970,7 @@ msgstr "Modo" #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Ambos Aprovado e Confirmado" #. module: hr_holidays #: view:hr.holidays:0 @@ -934,7 +980,7 @@ msgstr "Aprovar" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:249 @@ -942,7 +988,7 @@ msgstr "" #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." -msgstr "" +msgstr "A data inicial deve ser anterior a data final." #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays @@ -968,7 +1014,7 @@ msgstr "Solicitações de Alocação" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "Cor" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 @@ -977,6 +1023,9 @@ msgid "" "to create allocation/leave request. Total based on all the leave types " "without overriding limit." msgstr "" +"Número total de folgas legais alocados a este funcionário, alterando este " +"valor para criar um pedido de folga/alocação. Total com base em todos os " +"tipos de folgas, sem limite de substituição." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -986,7 +1035,7 @@ msgstr "Rosa" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "leaves." -msgstr "" +msgstr "Folgas" #. module: hr_holidays #: view:hr.holidays:0 @@ -996,7 +1045,7 @@ msgstr "Gerente" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept msgid "HR Leaves Summary Report By Department" -msgstr "" +msgstr "Relatório de Folgas do RH por Departamento" #. module: hr_holidays #: view:hr.holidays:0 @@ -1006,7 +1055,7 @@ msgstr "Ano" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "Duration" #. module: hr_holidays #: view:hr.holidays:0 @@ -1018,7 +1067,7 @@ msgstr "Para Aprovar" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Solicitação Aprovada" #. module: hr_holidays #: field:hr.holidays,notes:0 @@ -1028,4 +1077,4 @@ msgstr "Motivos" #. module: hr_holidays #: field:hr.holidays.summary.employee,holiday_type:0 msgid "Select Leave Type" -msgstr "" +msgstr "Escolha o Tipo de Folga" diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index b1a9a8b8a33..83202aed249 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -95,7 +95,7 @@ msgstr "Zile ramase" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "" +msgstr "ale" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 @@ -122,7 +122,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "la" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -189,7 +189,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "" +msgstr "Analiza de la" #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 @@ -324,7 +324,7 @@ msgstr "Cerere de concediu pentru %s" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Sum" -msgstr "" +msgstr "Sumă" #. module: hr_holidays #: view:hr.holidays.status:0 @@ -969,7 +969,7 @@ msgstr "Cereri de alocare" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "Culoare" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 diff --git a/addons/hr_holidays/i18n/ru.po b/addons/hr_holidays/i18n/ru.po index 4ad323439c9..773bcbdac40 100644 --- a/addons/hr_holidays/i18n/ru.po +++ b/addons/hr_holidays/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index dce1c93b4b0..430067eeb4d 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sq.po b/addons/hr_holidays/i18n/sq.po index 3c87f0d03a5..cbe4f7e56a6 100644 --- a/addons/hr_holidays/i18n/sq.po +++ b/addons/hr_holidays/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr.po b/addons/hr_holidays/i18n/sr.po index f9446d71661..2aa17bd366b 100644 --- a/addons/hr_holidays/i18n/sr.po +++ b/addons/hr_holidays/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr@latin.po b/addons/hr_holidays/i18n/sr@latin.po index a8046200788..20c1c76be68 100644 --- a/addons/hr_holidays/i18n/sr@latin.po +++ b/addons/hr_holidays/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sv.po b/addons/hr_holidays/i18n/sv.po index b07a096ed07..b59ec430f0d 100644 --- a/addons/hr_holidays/i18n/sv.po +++ b/addons/hr_holidays/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/th.po b/addons/hr_holidays/i18n/th.po index d2285a41877..c5ecb40bb39 100644 --- a/addons/hr_holidays/i18n/th.po +++ b/addons/hr_holidays/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tlh.po b/addons/hr_holidays/i18n/tlh.po index f046d94372c..6a7a7f47de8 100644 --- a/addons/hr_holidays/i18n/tlh.po +++ b/addons/hr_holidays/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index ca07fc060f7..58aaafe5197 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/uk.po b/addons/hr_holidays/i18n/uk.po index a95f0e8bd84..7cfcd037deb 100644 --- a/addons/hr_holidays/i18n/uk.po +++ b/addons/hr_holidays/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/vi.po b/addons/hr_holidays/i18n/vi.po index f5f907c141d..1b67e5ecba4 100644 --- a/addons/hr_holidays/i18n/vi.po +++ b/addons/hr_holidays/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 30a4d8dc4b6..18ec4f55cfd 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index c20bff91410..0ce7ab2f07b 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_payroll/i18n/ar.po b/addons/hr_payroll/i18n/ar.po index 2b1a65e8dc0..f99247ba71a 100644 --- a/addons/hr_payroll/i18n/ar.po +++ b/addons/hr_payroll/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/bg.po b/addons/hr_payroll/i18n/bg.po index 274cb72f63c..a49bab1d6c1 100644 --- a/addons/hr_payroll/i18n/bg.po +++ b/addons/hr_payroll/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ca.po b/addons/hr_payroll/i18n/ca.po index 77bd16e0c7c..502f72e4dab 100644 --- a/addons/hr_payroll/i18n/ca.po +++ b/addons/hr_payroll/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/cs.po b/addons/hr_payroll/i18n/cs.po index 4a62d208a80..114d31058c0 100644 --- a/addons/hr_payroll/i18n/cs.po +++ b/addons/hr_payroll/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/da.po b/addons/hr_payroll/i18n/da.po index 8f9c75a23db..9a0c8494903 100644 --- a/addons/hr_payroll/i18n/da.po +++ b/addons/hr_payroll/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/de.po b/addons/hr_payroll/i18n/de.po index b9ff71d7975..52fffe08a0f 100644 --- a/addons/hr_payroll/i18n/de.po +++ b/addons/hr_payroll/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/en_GB.po b/addons/hr_payroll/i18n/en_GB.po index 3604c61295a..90fc6540f51 100644 --- a/addons/hr_payroll/i18n/en_GB.po +++ b/addons/hr_payroll/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 56ecc82cd84..71f217df263 100644 --- a/addons/hr_payroll/i18n/es.po +++ b/addons/hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_CR.po b/addons/hr_payroll/i18n/es_CR.po index 20bc1195f40..da9bac885a3 100644 --- a/addons/hr_payroll/i18n/es_CR.po +++ b/addons/hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_EC.po b/addons/hr_payroll/i18n/es_EC.po index 1112fc92002..c9a4d955304 100644 --- a/addons/hr_payroll/i18n/es_EC.po +++ b/addons/hr_payroll/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_MX.po b/addons/hr_payroll/i18n/es_MX.po index b6a09a12f88..ef4980b8a6a 100644 --- a/addons/hr_payroll/i18n/es_MX.po +++ b/addons/hr_payroll/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/et.po b/addons/hr_payroll/i18n/et.po index d131f1d36bf..7d4a4486555 100644 --- a/addons/hr_payroll/i18n/et.po +++ b/addons/hr_payroll/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fi.po b/addons/hr_payroll/i18n/fi.po index e98c0da2ae7..09145bd20b1 100644 --- a/addons/hr_payroll/i18n/fi.po +++ b/addons/hr_payroll/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fr.po b/addons/hr_payroll/i18n/fr.po index 47aa0b98b82..f2adb55caac 100644 --- a/addons/hr_payroll/i18n/fr.po +++ b/addons/hr_payroll/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gl.po b/addons/hr_payroll/i18n/gl.po index 9603b6642d1..ac35bda87cf 100644 --- a/addons/hr_payroll/i18n/gl.po +++ b/addons/hr_payroll/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gu.po b/addons/hr_payroll/i18n/gu.po index 1eb660cfc50..96b677d6224 100644 --- a/addons/hr_payroll/i18n/gu.po +++ b/addons/hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/he.po b/addons/hr_payroll/i18n/he.po index 292a76f69db..42c57473943 100644 --- a/addons/hr_payroll/i18n/he.po +++ b/addons/hr_payroll/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hr.po b/addons/hr_payroll/i18n/hr.po index 56088407f9d..5014386afda 100644 --- a/addons/hr_payroll/i18n/hr.po +++ b/addons/hr_payroll/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hu.po b/addons/hr_payroll/i18n/hu.po index dfd8f2bfa37..e2940380a95 100644 --- a/addons/hr_payroll/i18n/hu.po +++ b/addons/hr_payroll/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/id.po b/addons/hr_payroll/i18n/id.po index c641d685cfd..cc445277769 100644 --- a/addons/hr_payroll/i18n/id.po +++ b/addons/hr_payroll/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/it.po b/addons/hr_payroll/i18n/it.po index 079a8714072..7e20e5cf670 100644 --- a/addons/hr_payroll/i18n/it.po +++ b/addons/hr_payroll/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ja.po b/addons/hr_payroll/i18n/ja.po index b5ecbf56171..aa5630d085f 100644 --- a/addons/hr_payroll/i18n/ja.po +++ b/addons/hr_payroll/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lo.po b/addons/hr_payroll/i18n/lo.po index 2d065169755..eb6d501a17e 100644 --- a/addons/hr_payroll/i18n/lo.po +++ b/addons/hr_payroll/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lt.po b/addons/hr_payroll/i18n/lt.po index 32e7a31bc11..81aa5bc1031 100644 --- a/addons/hr_payroll/i18n/lt.po +++ b/addons/hr_payroll/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lv.po b/addons/hr_payroll/i18n/lv.po index c157314e5c5..153f6a4aa74 100644 --- a/addons/hr_payroll/i18n/lv.po +++ b/addons/hr_payroll/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/mn.po b/addons/hr_payroll/i18n/mn.po index 5b583281599..1fa871f027f 100644 --- a/addons/hr_payroll/i18n/mn.po +++ b/addons/hr_payroll/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nb.po b/addons/hr_payroll/i18n/nb.po index 9f39f848789..491e02144a7 100644 --- a/addons/hr_payroll/i18n/nb.po +++ b/addons/hr_payroll/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nl.po b/addons/hr_payroll/i18n/nl.po index 7193608e97f..479fb560523 100644 --- a/addons/hr_payroll/i18n/nl.po +++ b/addons/hr_payroll/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pl.po b/addons/hr_payroll/i18n/pl.po index 45a6f2d32ae..c8c40042c18 100644 --- a/addons/hr_payroll/i18n/pl.po +++ b/addons/hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index 79cb5ba4e43..6c425544f72 100644 --- a/addons/hr_payroll/i18n/pt.po +++ b/addons/hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt_BR.po b/addons/hr_payroll/i18n/pt_BR.po index d680adcac39..d970abf1758 100644 --- a/addons/hr_payroll/i18n/pt_BR.po +++ b/addons/hr_payroll/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -125,7 +125,7 @@ msgstr "hr.salary.rule" #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "to" -msgstr "" +msgstr "até" #. module: hr_payroll #: field:hr.payslip,payslip_run_id:0 @@ -210,7 +210,7 @@ msgstr "Anotações" #: code:addons/hr_payroll/hr_payroll.py:900 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -236,7 +236,7 @@ msgstr "Outra informação" #. module: hr_payroll #: field:hr.config.settings,module_hr_payroll_account:0 msgid "Link your payroll to accounting system" -msgstr "" +msgstr "Associar a folha de pagamento a contabilidade" #. module: hr_payroll #: help:hr.payslip.line,amount_select:0 @@ -305,7 +305,7 @@ msgstr "Estrutura" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Parceiro" #. module: hr_payroll #: view:hr.payslip:0 @@ -351,6 +351,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo registo de contribuição.\n" +"

\n" +" Um registo de contribuição é um terceiro envolvido no " +"pagamento do\n" +"               salário dos funcionários. Ela pode ser a INSSl, o\n" +"               Governo ou qualquer pessoa que coletar ou injetar dinheiro no " +"holerites.\n" +"

\n" +" " #. module: hr_payroll #: help:hr.payslip.line,condition_range_max:0 @@ -439,12 +449,12 @@ msgstr "Porcentagem baseada na" #: code:addons/hr_payroll/hr_payroll.py:85 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: hr_payroll #: help:hr.config.settings,module_hr_payroll_account:0 msgid "Create journal entries from payslips" -msgstr "" +msgstr "Criar lançamentos de diário a partir de holetires" #. module: hr_payroll #: field:hr.payslip,paid:0 @@ -467,7 +477,7 @@ msgstr "Linhas do Holerite" #. module: hr_payroll #: view:hr.payslip:0 msgid "Miscellaneous" -msgstr "" +msgstr "Diversos" #. module: hr_payroll #: selection:hr.payslip,state:0 @@ -519,7 +529,7 @@ msgstr "Quantidade fixa" #: code:addons/hr_payroll/hr_payroll.py:365 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_payroll #: help:hr.payslip.line,active:0 @@ -535,7 +545,7 @@ msgstr "" #: field:hr.payslip,state:0 #: field:hr.payslip.run,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: hr_payroll #: view:hr.payslip:0 @@ -629,7 +639,7 @@ msgstr "Detalhes do Cálculo de Holerite" #: help:hr.payslip.line,appears_on_payslip:0 #: help:hr.salary.rule,appears_on_payslip:0 msgid "Used to display the salary rule on payslip." -msgstr "" +msgstr "Usado para mostrar a regra do salário no holerite." #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_input @@ -659,6 +669,7 @@ msgstr "Calcular" #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" +"Condição de intervalo errada definido para a regra de salário %s (%s)." #. module: hr_payroll #: help:hr.payslip.input,amount:0 @@ -704,6 +715,7 @@ msgstr "" #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" +"Percentual base errada ou quantidade definida para a regra salário %s (%s)." #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_list_form @@ -761,7 +773,7 @@ msgstr "Porcentagem (%)" #: code:addons/hr_payroll/hr_payroll.py:866 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "Quantidade errada definida para a regra de salário %s (%s)." #. module: hr_payroll #: view:hr.payslip:0 @@ -846,7 +858,7 @@ msgstr "Contrato" #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 #, python-format msgid "You must select employee(s) to generate payslip(s)." -msgstr "" +msgstr "Você precisa selecionar o funcionário para gerar o holerite." #. module: hr_payroll #: report:paylip.details:0 @@ -925,12 +937,12 @@ msgstr "Seqüência" #. module: hr_payroll #: view:hr.payslip:0 msgid "Period" -msgstr "" +msgstr "Período" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Period from" -msgstr "" +msgstr "Período de" #. module: hr_payroll #: view:hr.salary.rule:0 @@ -1017,7 +1029,7 @@ msgstr "Holerites do Funcionário" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1099,6 +1111,7 @@ msgstr "Holerites por linhas de Contribuições Registrada" #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" +"Você não pode excluir um holerite que não está como provisório ou cancelado!" #. module: hr_payroll #: report:paylip.details:0 @@ -1170,6 +1183,11 @@ msgid "" "* If the payslip is confirmed then status is set to 'Done'. \n" "* When user cancel payslip the status is 'Rejected'." msgstr "" +"* Quando o holerite é criado o estado é 'Provisório'.\n" +"* Se o holerite está sob verificação, a situação 'Aguardando'.\n" +"* Se o holerite é confirmado em seguida a situação é definida como " +"'Concluído'.\n" +"* Quando o usuário cancelar o holerite a situação é 'Rejeitado'." #. module: hr_payroll #: help:hr.payslip.line,condition_range:0 @@ -1196,7 +1214,7 @@ msgstr "Entradas de Holerites" #. module: hr_payroll #: view:hr.payslip:0 msgid "Other Inputs" -msgstr "" +msgstr "Outras Entradas" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category_tree_view @@ -1208,7 +1226,7 @@ msgstr "Hierarquia da Regra de Salário" #: code:addons/hr_payroll/hr_payroll.py:877 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." -msgstr "" +msgstr "Código Python errado definido para a regra de salário %s (%s)." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -1239,7 +1257,7 @@ msgstr "O código que pode ser usado nas regras de salários" #: code:addons/hr_payroll/hr_payroll.py:900 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." -msgstr "" +msgstr "Condição python errada definida para a regra de salário %s (%s)." #. module: hr_payroll #: view:hr.payslip.run:0 @@ -1271,7 +1289,7 @@ msgstr "Nome do Holerite" #. module: hr_payroll #: view:hr.payslip:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidade" #. module: hr_payroll #: field:hr.payslip.line,condition_range:0 diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index 6b9adf09567..f1aad96e840 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ru.po b/addons/hr_payroll/i18n/ru.po index af82a31a2ed..922a45a8c4a 100644 --- a/addons/hr_payroll/i18n/ru.po +++ b/addons/hr_payroll/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 31f930419a6..6e9216a71aa 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-05 17:09+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:30+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sr.po b/addons/hr_payroll/i18n/sr.po index 3f6f0dab190..fca6951a5fd 100644 --- a/addons/hr_payroll/i18n/sr.po +++ b/addons/hr_payroll/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sr@latin.po b/addons/hr_payroll/i18n/sr@latin.po index 87faa40ed79..5fa9d28039c 100644 --- a/addons/hr_payroll/i18n/sr@latin.po +++ b/addons/hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sv.po b/addons/hr_payroll/i18n/sv.po index b31bf8dff73..643e69cc661 100644 --- a/addons/hr_payroll/i18n/sv.po +++ b/addons/hr_payroll/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/tr.po b/addons/hr_payroll/i18n/tr.po index 458b09cda0c..3aba2b1993d 100644 --- a/addons/hr_payroll/i18n/tr.po +++ b/addons/hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/vi.po b/addons/hr_payroll/i18n/vi.po index 3ee3ef461ef..7020ed0f2dc 100644 --- a/addons/hr_payroll/i18n/vi.po +++ b/addons/hr_payroll/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/zh_CN.po b/addons/hr_payroll/i18n/zh_CN.po index 69f81dfa78f..25b4d982a4d 100644 --- a/addons/hr_payroll/i18n/zh_CN.po +++ b/addons/hr_payroll/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll_account/i18n/ar.po b/addons/hr_payroll_account/i18n/ar.po index 0a5ec039c40..2cb9fcd1f90 100644 --- a/addons/hr_payroll_account/i18n/ar.po +++ b/addons/hr_payroll_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/bg.po b/addons/hr_payroll_account/i18n/bg.po index 06fa01b0d78..7f83cb4cc33 100644 --- a/addons/hr_payroll_account/i18n/bg.po +++ b/addons/hr_payroll_account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ca.po b/addons/hr_payroll_account/i18n/ca.po index ceb0e65a21a..b64f908611a 100644 --- a/addons/hr_payroll_account/i18n/ca.po +++ b/addons/hr_payroll_account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/da.po b/addons/hr_payroll_account/i18n/da.po index 47ee951443f..07abae05053 100644 --- a/addons/hr_payroll_account/i18n/da.po +++ b/addons/hr_payroll_account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/de.po b/addons/hr_payroll_account/i18n/de.po index c734c30bdd6..4a071bb22e8 100644 --- a/addons/hr_payroll_account/i18n/de.po +++ b/addons/hr_payroll_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/en_GB.po b/addons/hr_payroll_account/i18n/en_GB.po index 1ea1cda85c1..46d7f63afc3 100644 --- a/addons/hr_payroll_account/i18n/en_GB.po +++ b/addons/hr_payroll_account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es.po b/addons/hr_payroll_account/i18n/es.po index 40268c0406a..f9844247d69 100644 --- a/addons/hr_payroll_account/i18n/es.po +++ b/addons/hr_payroll_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_CR.po b/addons/hr_payroll_account/i18n/es_CR.po index 1eff5c39597..229179e47a4 100644 --- a/addons/hr_payroll_account/i18n/es_CR.po +++ b/addons/hr_payroll_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_EC.po b/addons/hr_payroll_account/i18n/es_EC.po index 183490195fb..fd2f006b007 100644 --- a/addons/hr_payroll_account/i18n/es_EC.po +++ b/addons/hr_payroll_account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_PY.po b/addons/hr_payroll_account/i18n/es_PY.po index 3402286e325..dd85954bf25 100644 --- a/addons/hr_payroll_account/i18n/es_PY.po +++ b/addons/hr_payroll_account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index 00cafbb0bde..b8fcb1140fa 100644 --- a/addons/hr_payroll_account/i18n/fr.po +++ b/addons/hr_payroll_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gl.po b/addons/hr_payroll_account/i18n/gl.po index c445b56db07..62fb2d56c10 100644 --- a/addons/hr_payroll_account/i18n/gl.po +++ b/addons/hr_payroll_account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gu.po b/addons/hr_payroll_account/i18n/gu.po index 8c4b9e72aab..7a6c3cf9c20 100644 --- a/addons/hr_payroll_account/i18n/gu.po +++ b/addons/hr_payroll_account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hr.po b/addons/hr_payroll_account/i18n/hr.po index cac5d147b97..25b7f69a4bb 100644 --- a/addons/hr_payroll_account/i18n/hr.po +++ b/addons/hr_payroll_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hu.po b/addons/hr_payroll_account/i18n/hu.po index 178cb40bd69..c24a718d0c8 100644 --- a/addons/hr_payroll_account/i18n/hu.po +++ b/addons/hr_payroll_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/id.po b/addons/hr_payroll_account/i18n/id.po index cbf5a5c6294..a409ac6df61 100644 --- a/addons/hr_payroll_account/i18n/id.po +++ b/addons/hr_payroll_account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po index 2a000311e96..4277f3361f2 100644 --- a/addons/hr_payroll_account/i18n/it.po +++ b/addons/hr_payroll_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ja.po b/addons/hr_payroll_account/i18n/ja.po index 4fa8769a810..ac4f78a063a 100644 --- a/addons/hr_payroll_account/i18n/ja.po +++ b/addons/hr_payroll_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/lv.po b/addons/hr_payroll_account/i18n/lv.po index 57835fec775..ee413f0d4b6 100644 --- a/addons/hr_payroll_account/i18n/lv.po +++ b/addons/hr_payroll_account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/mn.po b/addons/hr_payroll_account/i18n/mn.po index 084be98c465..7ef78aa9a64 100644 --- a/addons/hr_payroll_account/i18n/mn.po +++ b/addons/hr_payroll_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nb.po b/addons/hr_payroll_account/i18n/nb.po index 121b9040841..75d1ba0988b 100644 --- a/addons/hr_payroll_account/i18n/nb.po +++ b/addons/hr_payroll_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nl.po b/addons/hr_payroll_account/i18n/nl.po index ab188504e38..dfb8ddef00a 100644 --- a/addons/hr_payroll_account/i18n/nl.po +++ b/addons/hr_payroll_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pl.po b/addons/hr_payroll_account/i18n/pl.po index eff771f4fce..1f00505f602 100644 --- a/addons/hr_payroll_account/i18n/pl.po +++ b/addons/hr_payroll_account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pt.po b/addons/hr_payroll_account/i18n/pt.po index 1892e7d76b0..4dc492c59d8 100644 --- a/addons/hr_payroll_account/i18n/pt.po +++ b/addons/hr_payroll_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pt_BR.po b/addons/hr_payroll_account/i18n/pt_BR.po index 81185ba6478..6818aa8a600 100644 --- a/addons/hr_payroll_account/i18n/pt_BR.po +++ b/addons/hr_payroll_account/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -52,7 +52,7 @@ msgstr "" #. module: hr_payroll_account #: field:hr.salary.rule,account_tax_id:0 msgid "Tax Code" -msgstr "Código da Taxa" +msgstr "Código do Imposto" #. module: hr_payroll_account #: field:hr.payslip,period_id:0 diff --git a/addons/hr_payroll_account/i18n/ro.po b/addons/hr_payroll_account/i18n/ro.po index 652738c2ff0..da38a6da819 100644 --- a/addons/hr_payroll_account/i18n/ro.po +++ b/addons/hr_payroll_account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ru.po b/addons/hr_payroll_account/i18n/ru.po index 82e4c5c60b7..e167122eb99 100644 --- a/addons/hr_payroll_account/i18n/ru.po +++ b/addons/hr_payroll_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sr@latin.po b/addons/hr_payroll_account/i18n/sr@latin.po index 8873a110a24..8c2077f7522 100644 --- a/addons/hr_payroll_account/i18n/sr@latin.po +++ b/addons/hr_payroll_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sv.po b/addons/hr_payroll_account/i18n/sv.po index 0e8c3db8b31..333026b9c3d 100644 --- a/addons/hr_payroll_account/i18n/sv.po +++ b/addons/hr_payroll_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/tr.po b/addons/hr_payroll_account/i18n/tr.po index 56176e9a832..43dc01d670e 100644 --- a/addons/hr_payroll_account/i18n/tr.po +++ b/addons/hr_payroll_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/zh_CN.po b/addons/hr_payroll_account/i18n/zh_CN.po index 426cfcc808e..96103c9bcc9 100644 --- a/addons/hr_payroll_account/i18n/zh_CN.po +++ b/addons/hr_payroll_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_recruitment/i18n/ar.po b/addons/hr_recruitment/i18n/ar.po index c391684393e..a194e0a159f 100644 --- a/addons/hr_recruitment/i18n/ar.po +++ b/addons/hr_recruitment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/bg.po b/addons/hr_recruitment/i18n/bg.po index f21e7f660dd..80952002845 100644 --- a/addons/hr_recruitment/i18n/bg.po +++ b/addons/hr_recruitment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ca.po b/addons/hr_recruitment/i18n/ca.po index 5f0a83fee86..60385ac681d 100644 --- a/addons/hr_recruitment/i18n/ca.po +++ b/addons/hr_recruitment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/da.po b/addons/hr_recruitment/i18n/da.po index 9e40d830f67..76d4ba71dbb 100644 --- a/addons/hr_recruitment/i18n/da.po +++ b/addons/hr_recruitment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/de.po b/addons/hr_recruitment/i18n/de.po index 5def4b55649..3ee32bff704 100644 --- a/addons/hr_recruitment/i18n/de.po +++ b/addons/hr_recruitment/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/es.po b/addons/hr_recruitment/i18n/es.po index 52a9ffe974a..c75fda89088 100644 --- a/addons/hr_recruitment/i18n/es.po +++ b/addons/hr_recruitment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -393,7 +393,7 @@ msgstr "Enlace ficha Monster" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired msgid "Applicant Hired" -msgstr "" +msgstr "Solicitante contratado" #. module: hr_recruitment #: field:hr.applicant,email_from:0 @@ -602,7 +602,7 @@ msgstr "Contratar y crear empleado" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired msgid "Applicant hired" -msgstr "" +msgstr "Solicitante contratado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -686,7 +686,7 @@ msgstr "o" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused msgid "Applicant Refused" -msgstr "" +msgstr "Solicitante rechazado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -796,7 +796,7 @@ msgstr "Planificar reunión con este solicitante" #: code:addons/hr_recruitment/hr_recruitment.py:397 #, python-format msgid "Applicant created" -msgstr "" +msgstr "Solicitante creado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1024,7 +1024,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1098,7 +1098,7 @@ msgstr "Descripción" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed msgid "Stage Changed" -msgstr "" +msgstr "Etapa cambiada" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -1253,7 +1253,7 @@ msgstr "Mensajes e historial de comunicación" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused msgid "Applicant refused" -msgstr "" +msgstr "Solicitante rechazado" #. module: hr_recruitment #: field:hr.recruitment.stage,department_id:0 diff --git a/addons/hr_recruitment/i18n/es_CR.po b/addons/hr_recruitment/i18n/es_CR.po index 06a1b6f57bf..ca72e760540 100644 --- a/addons/hr_recruitment/i18n/es_CR.po +++ b/addons/hr_recruitment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/fr.po b/addons/hr_recruitment/i18n/fr.po index 0464b4855a5..d90ee2d4da0 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hi.po b/addons/hr_recruitment/i18n/hi.po index 179f47c8e9f..820b5dfaf89 100644 --- a/addons/hr_recruitment/i18n/hi.po +++ b/addons/hr_recruitment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hr.po b/addons/hr_recruitment/i18n/hr.po index f26f5eb0638..3ca4c352abc 100644 --- a/addons/hr_recruitment/i18n/hr.po +++ b/addons/hr_recruitment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hu.po b/addons/hr_recruitment/i18n/hu.po index b56283de0c4..35ac08cff32 100644 --- a/addons/hr_recruitment/i18n/hu.po +++ b/addons/hr_recruitment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/id.po b/addons/hr_recruitment/i18n/id.po index 79845083f77..be37eafdce2 100644 --- a/addons/hr_recruitment/i18n/id.po +++ b/addons/hr_recruitment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/it.po b/addons/hr_recruitment/i18n/it.po index cb82b3c700d..9b88d4f1e95 100644 --- a/addons/hr_recruitment/i18n/it.po +++ b/addons/hr_recruitment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ja.po b/addons/hr_recruitment/i18n/ja.po index 6912b2a8032..751e873aac9 100644 --- a/addons/hr_recruitment/i18n/ja.po +++ b/addons/hr_recruitment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/mk.po b/addons/hr_recruitment/i18n/mk.po index 79288ad055a..e9b896dbcae 100644 --- a/addons/hr_recruitment/i18n/mk.po +++ b/addons/hr_recruitment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/mn.po b/addons/hr_recruitment/i18n/mn.po index 37922488e81..40774644faa 100644 --- a/addons/hr_recruitment/i18n/mn.po +++ b/addons/hr_recruitment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nb.po b/addons/hr_recruitment/i18n/nb.po index 538fc251da9..cc56b05fd32 100644 --- a/addons/hr_recruitment/i18n/nb.po +++ b/addons/hr_recruitment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nl.po b/addons/hr_recruitment/i18n/nl.po index bd20ce9d0c5..1c176ae1c11 100644 --- a/addons/hr_recruitment/i18n/nl.po +++ b/addons/hr_recruitment/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pl.po b/addons/hr_recruitment/i18n/pl.po index 13311837c04..9181ed8afa5 100644 --- a/addons/hr_recruitment/i18n/pl.po +++ b/addons/hr_recruitment/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pt.po b/addons/hr_recruitment/i18n/pt.po index ee15e579c72..49f25b560ff 100644 --- a/addons/hr_recruitment/i18n/pt.po +++ b/addons/hr_recruitment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pt_BR.po b/addons/hr_recruitment/i18n/pt_BR.po index 411c59f0f97..28681c57822 100644 --- a/addons/hr_recruitment/i18n/pt_BR.po +++ b/addons/hr_recruitment/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -35,17 +35,17 @@ msgstr "Pré-requisitos" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Application Summary" -msgstr "" +msgstr "Resumo da Aplicação" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Start Interview" -msgstr "" +msgstr "Iniciar Entrevista" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Mobile:" -msgstr "" +msgstr "Celular:" #. module: hr_recruitment #: help:hr.recruitment.stage,fold:0 @@ -53,6 +53,8 @@ msgid "" "This stage is not visible, for example in status bar or kanban view, when " "there are no records in that stage to display." msgstr "" +"Este estágio não é visível, por exemplo na barra de situação ou visão " +"kanban, quando não há registros definidos no mesmo para visualizar." #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate @@ -101,7 +103,7 @@ msgstr "Trabalhos Pendentes" #: view:hr.applicant:0 #: field:hr.applicant,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr_recruitment #: field:hr.applicant,company_id:0 @@ -154,12 +156,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo candidato a emprego.\n" +"

\n" +"O OpenERP te ajuda no acompanhamento dos candidatos no processo de\n" +"seleção e acompanhar todas as operações: reuniões, entrevistas, etc\n" +"

\n" +"Se você configurar o servidor de e-mail, os candidatos e seus CV em anexo\n" +"                são criados automaticamente quando um email é enviado para\n" +"                 vagas@suaempresa.com.br. Se você instalar o módulo de " +"gerenciamento de\n" +"                documentos, todos os currículos são indexados " +"automaticamente, de modo que\n" +" você pode pesquisar o seu conteúdo facilmente.\n" +"

\n" +" " #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job #: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job msgid "Applications" -msgstr "" +msgstr "Aplicações" #. module: hr_recruitment #: field:hr.applicant,day_open:0 @@ -169,12 +186,12 @@ msgstr "Dias para Abrir" #. module: hr_recruitment #: field:hr.applicant,emp_id:0 msgid "employee" -msgstr "" +msgstr "funcionário" #. module: hr_recruitment #: field:hr.config.settings,fetchmail_applicants:0 msgid "Create applicants from an incoming email account" -msgstr "" +msgstr "Criar candidatos a partir de uma conta de email de entrada" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -186,7 +203,7 @@ msgstr "Dia" #: view:hr.recruitment.partner.create:0 #: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create msgid "Create Contact" -msgstr "" +msgstr "Criar contato" #. module: hr_recruitment #: view:hr.applicant:0 @@ -218,7 +235,7 @@ msgstr "Próximas Ações" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 @@ -237,11 +254,13 @@ msgid "" "Stages of the recruitment process may be different per department. If this " "stage is common to all departments, keep this field empty." msgstr "" +"Etapas do processo de recrutamento pode ser diferente por departamento. Se " +"esta fase, é comum a todos os departamentos, deixe este campo em branco." #. module: hr_recruitment #: help:hr.applicant,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr_recruitment #: field:hr.applicant,color:0 @@ -251,7 +270,7 @@ msgstr "Índice de cores" #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.act_hr_applicant_to_meeting msgid "Meetings" -msgstr "" +msgstr "Reuniões" #. module: hr_recruitment #: view:hr.applicant:0 @@ -290,6 +309,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:435 @@ -344,7 +366,7 @@ msgstr "Estatísticas de Recrutamentos" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Print interview report" -msgstr "" +msgstr "Imprimir relatório da entrevista" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -365,7 +387,7 @@ msgstr "Origem" #. module: hr_recruitment #: field:hr.applicant,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr_recruitment #: model:hr.recruitment.source,name:hr_recruitment.source_monster @@ -375,7 +397,7 @@ msgstr "Sites de Emprego" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired msgid "Applicant Hired" -msgstr "" +msgstr "Candidato Contratado" #. module: hr_recruitment #: field:hr.applicant,email_from:0 @@ -395,6 +417,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar uma nova etapa no processo de seleção.\n" +"

\n" +" Definir aqui as suas etapas do processo de seleção, por exemplo:\n" +"            qualificação, primeira entrevista, segunda entrevista, " +"recusado,\n" +"             contratado.\n" +"

\n" +" " #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -412,6 +443,8 @@ msgid "" "Email alias for this job position. New emails will automatically create new " "applicants for this job position." msgstr "" +"Apelido de e-mail para este cargo. Novos e-mails criarão novos candidatos " +"para este cargo automaticamente." #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -534,6 +567,10 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"A situação é definida como 'Provisória' quando o caso é criado. Se o caso " +"está em progresso, a situação muda para 'Aberto'. Quando o caso termina, a " +"situação é definida como 'Concluído'. Se o caso precisa ser revisado, a " +"situação é definida como 'Pendente'." #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -565,12 +602,12 @@ msgstr "Em andamento" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Hire & Create Employee" -msgstr "" +msgstr "Contratar & Criar Funcionário" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired msgid "Applicant hired" -msgstr "" +msgstr "Candidato contratado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -601,17 +638,17 @@ msgstr "Dezembro" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:39 #, python-format msgid "A contact is already defined on this job request." -msgstr "" +msgstr "Um contato já está defnido para esta vaga de emprego." #. module: hr_recruitment #: field:hr.applicant,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Marcadores" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant_category msgid "Category of applicant" -msgstr "" +msgstr "Categoria de candidato" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -622,7 +659,7 @@ msgstr "Mês" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Answer related job question" -msgstr "" +msgstr "Responda a pergunta relacionada com o trabalho" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 @@ -649,12 +686,12 @@ msgstr "Assunto" #: view:hired.employee:0 #: view:hr.recruitment.partner.create:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused msgid "Applicant Refused" -msgstr "" +msgstr "Candidato Recusado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -758,13 +795,13 @@ msgstr "Status" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule interview with this applicant" -msgstr "" +msgstr "Agendar entrevista com este candidato" #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:397 #, python-format msgid "Applicant created" -msgstr "" +msgstr "Candidato criado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -794,7 +831,7 @@ msgstr "Dias para concluir" #. module: hr_recruitment #: field:hr.applicant,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr_recruitment #: field:hr.recruitment.report,user_id:0 @@ -816,7 +853,7 @@ msgstr "Ativo" #: view:hr.recruitment.report:0 #: field:hr.recruitment.report,nbr:0 msgid "# of Applications" -msgstr "" +msgstr "# de Candidatos" #. module: hr_recruitment #: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_act @@ -830,6 +867,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"             Clique para adicionar uma nova etapa no processo de seleção.\n" +"          

\n" +"             Não se esqueça de especificar o departamento se o seu processo " +"de seleção\n" +"             é diferente de acordo com o cargo.\n" +"           \n" +" " #. module: hr_recruitment #: field:hr.applicant,response:0 @@ -844,7 +889,7 @@ msgstr "Outubro" #. module: hr_recruitment #: field:hr.config.settings,module_document_ftp:0 msgid "Allow the automatic indexation of resumes" -msgstr "" +msgstr "Permite a indexação automática de currículos" #. module: hr_recruitment #: field:hr.applicant,salary_proposed_extra:0 @@ -860,7 +905,7 @@ msgstr "Janeiro" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 #, python-format msgid "A contact is already existing with the same name." -msgstr "" +msgstr "Um contato com o mesmo nome já existe." #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer @@ -870,7 +915,7 @@ msgstr "Reveja os Estágios de Recrutamento" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Contact:" -msgstr "" +msgstr "Contato:" #. module: hr_recruitment #: view:hr.applicant:0 @@ -896,7 +941,7 @@ msgstr "Gostaria de criar um funcionário?" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Degree:" -msgstr "" +msgstr "Grau:" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -917,7 +962,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 @@ -950,6 +995,7 @@ msgstr "Cancelar" #: view:hr.recruitment.partner.create:0 msgid "Are you sure you want to create a contact based on this job request ?" msgstr "" +"Tem certeza de que deseja criar um contato com base neste pedido de emprego?" #. module: hr_recruitment #: help:hr.config.settings,fetchmail_applicants:0 @@ -958,6 +1004,9 @@ msgid "" "(jobs@mycompany.com),\n" " and create automatically application documents in the system." msgstr "" +"Permitir que os candidatos enviem seus pedidos de emprego para um endereço " +"de e-mail (vagas@minhaempresa.com.br),\n" +"                 e criar automaticamente documentos de candidatos do sistema." #. module: hr_recruitment #: view:hr.applicant:0 @@ -980,7 +1029,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed msgid "Stage changed" -msgstr "" +msgstr "Estágio alterado" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1009,7 +1058,7 @@ msgstr "LinkedIn" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant msgid "New Applicant" -msgstr "" +msgstr "Novo Candidato" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage @@ -1044,7 +1093,7 @@ msgstr "Nome da Fonte" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Day(s)" -msgstr "" +msgstr "Dia(s)" #. module: hr_recruitment #: field:hr.applicant,description:0 @@ -1054,7 +1103,7 @@ msgstr "Descrição" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed msgid "Stage Changed" -msgstr "" +msgstr "Estágio Alterado" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -1074,7 +1123,7 @@ msgstr "Boca a Boca" #. module: hr_recruitment #: field:hr.recruitment.stage,fold:0 msgid "Hide in views if empty" -msgstr "" +msgstr "Esconder se visão estiver vazia" #. module: hr_recruitment #: help:hr.config.settings,module_document_ftp:0 @@ -1084,6 +1133,11 @@ msgid "" "knowledge management module in order to allow you to search using specific " "keywords through the content of all documents (PDF, .DOCx...)" msgstr "" +"Gerenciar seu CV e carta de motivação relacionada a todos os candidatos.\n" +"                 Isso instala o módulo document_ftp. Isto irá instalar o " +"módulo de gestão do conhecimento, para permitir que você pesquise usando " +"palavras-chave específicas, através do conteúdo de todos os documentos " +"(PDF,. DOCX ...)" #. module: hr_recruitment #: selection:hr.applicant,state:0 @@ -1104,12 +1158,12 @@ msgstr "Contratado" #. module: hr_recruitment #: field:hr.applicant,reference:0 msgid "Referred By" -msgstr "" +msgstr "Indicado por" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Departement:" -msgstr "" +msgstr "Departamento:" #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -1125,7 +1179,7 @@ msgstr "Grau de Recrutamento" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop_avg:0 msgid "Avg. Proposed Salary" -msgstr "" +msgstr "Média Salarial" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1158,12 +1212,12 @@ msgstr "Novembro" #. module: hr_recruitment #: field:hr.recruitment.report,salary_exp_avg:0 msgid "Avg. Expected Salary" -msgstr "" +msgstr "Média Salarial Esperada" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Expected Salary" -msgstr "" +msgstr "Média Salarial Esperada" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create @@ -1178,7 +1232,7 @@ msgstr "Essas pessoas receberão e-mail." #. module: hr_recruitment #: field:hr.job,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Apelido" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -1188,22 +1242,22 @@ msgstr "Recrutamento Pendente" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: hr_recruitment #: field:hr.applicant,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: hr_recruitment #: help:hr.applicant,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused msgid "Applicant refused" -msgstr "" +msgstr "Candidato recusado" #. module: hr_recruitment #: field:hr.recruitment.stage,department_id:0 @@ -1234,7 +1288,7 @@ msgstr "Recrutamentos sem assinar" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_recruitment #: help:hr.recruitment.stage,state:0 @@ -1244,6 +1298,10 @@ msgid "" "related to the status 'Close', when your document reach this stage, it will " "be automatically closed." msgstr "" +"A situação relacionada com o estágio. O estado do documento irá mudar " +"automaticamente de acordo com a fase selecionada. Exemplo, uma etapa está " +"relacionada a situação \"Fechada\", quando o documento chegar a esta fase, " +"será automaticamente fechado." #. module: hr_recruitment #: help:hr.applicant,salary_proposed_extra:0 @@ -1263,9 +1321,9 @@ msgstr "Aberto" #. module: hr_recruitment #: view:board.board:0 msgid "Applications to be Processed" -msgstr "" +msgstr "Candidatos a serem processados" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule Interview" -msgstr "" +msgstr "Agendar Entrevista" diff --git a/addons/hr_recruitment/i18n/ro.po b/addons/hr_recruitment/i18n/ro.po index 8531f1121c5..18a54be6fc2 100644 --- a/addons/hr_recruitment/i18n/ro.po +++ b/addons/hr_recruitment/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ru.po b/addons/hr_recruitment/i18n/ru.po index b8b4527a60d..5b2e581c421 100644 --- a/addons/hr_recruitment/i18n/ru.po +++ b/addons/hr_recruitment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sl.po b/addons/hr_recruitment/i18n/sl.po index 86228091535..c16dc832c01 100644 --- a/addons/hr_recruitment/i18n/sl.po +++ b/addons/hr_recruitment/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr.po b/addons/hr_recruitment/i18n/sr.po index 516bef474af..f521733a6e1 100644 --- a/addons/hr_recruitment/i18n/sr.po +++ b/addons/hr_recruitment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr@latin.po b/addons/hr_recruitment/i18n/sr@latin.po index 9f2fa032e00..b45473e366e 100644 --- a/addons/hr_recruitment/i18n/sr@latin.po +++ b/addons/hr_recruitment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sv.po b/addons/hr_recruitment/i18n/sv.po index 9296982f6da..658f7ad5bc9 100644 --- a/addons/hr_recruitment/i18n/sv.po +++ b/addons/hr_recruitment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/tr.po b/addons/hr_recruitment/i18n/tr.po index e9bc55c0236..361cffc6133 100644 --- a/addons/hr_recruitment/i18n/tr.po +++ b/addons/hr_recruitment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/vi.po b/addons/hr_recruitment/i18n/vi.po index 39f97fe7db2..8b106ac451a 100644 --- a/addons/hr_recruitment/i18n/vi.po +++ b/addons/hr_recruitment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/zh_CN.po b/addons/hr_recruitment/i18n/zh_CN.po index a26f3ad0752..bdf5c4c1ee8 100644 --- a/addons/hr_recruitment/i18n/zh_CN.po +++ b/addons/hr_recruitment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_timesheet/i18n/ar.po b/addons/hr_timesheet/i18n/ar.po index 55716630327..6d16e34841b 100644 --- a/addons/hr_timesheet/i18n/ar.po +++ b/addons/hr_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bg.po b/addons/hr_timesheet/i18n/bg.po index 4ea442403e1..5567cbf7a81 100644 --- a/addons/hr_timesheet/i18n/bg.po +++ b/addons/hr_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bs.po b/addons/hr_timesheet/i18n/bs.po index f48fabfa22c..d05b00d289d 100644 --- a/addons/hr_timesheet/i18n/bs.po +++ b/addons/hr_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ca.po b/addons/hr_timesheet/i18n/ca.po index 39ae6979f53..2a4573b0681 100644 --- a/addons/hr_timesheet/i18n/ca.po +++ b/addons/hr_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/cs.po b/addons/hr_timesheet/i18n/cs.po index 9648185bdb9..e8021fd755b 100644 --- a/addons/hr_timesheet/i18n/cs.po +++ b/addons/hr_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/da.po b/addons/hr_timesheet/i18n/da.po index df1fbf3f0c9..ed1dd3f35fe 100644 --- a/addons/hr_timesheet/i18n/da.po +++ b/addons/hr_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/de.po b/addons/hr_timesheet/i18n/de.po index e07268e8a1c..448aa2d50e3 100644 --- a/addons/hr_timesheet/i18n/de.po +++ b/addons/hr_timesheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/el.po b/addons/hr_timesheet/i18n/el.po index 39254e94664..7b2f5245a12 100644 --- a/addons/hr_timesheet/i18n/el.po +++ b/addons/hr_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es.po b/addons/hr_timesheet/i18n/es.po index 97e9f4c2aeb..32abfb72a8f 100644 --- a/addons/hr_timesheet/i18n/es.po +++ b/addons/hr_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index fb8f76fc87b..fa45079ff13 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_CR.po b/addons/hr_timesheet/i18n/es_CR.po index 3eafae4fb71..57fbbc7a089 100644 --- a/addons/hr_timesheet/i18n/es_CR.po +++ b/addons/hr_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_EC.po b/addons/hr_timesheet/i18n/es_EC.po index e76a2b68837..ba4c3e47156 100644 --- a/addons/hr_timesheet/i18n/es_EC.po +++ b/addons/hr_timesheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/et.po b/addons/hr_timesheet/i18n/et.po index 7fe31e42e8e..bd23e96a8e2 100644 --- a/addons/hr_timesheet/i18n/et.po +++ b/addons/hr_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fi.po b/addons/hr_timesheet/i18n/fi.po index 2d1d73653eb..574e860cc06 100644 --- a/addons/hr_timesheet/i18n/fi.po +++ b/addons/hr_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index aac42eee4f2..1d1a4b280b7 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/gl.po b/addons/hr_timesheet/i18n/gl.po index ea57df53c2e..0c6d0b23c5d 100644 --- a/addons/hr_timesheet/i18n/gl.po +++ b/addons/hr_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hr.po b/addons/hr_timesheet/i18n/hr.po index 246001532f3..db4916145a9 100644 --- a/addons/hr_timesheet/i18n/hr.po +++ b/addons/hr_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hu.po b/addons/hr_timesheet/i18n/hu.po index 8b77f14c8dd..67667842476 100644 --- a/addons/hr_timesheet/i18n/hu.po +++ b/addons/hr_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/id.po b/addons/hr_timesheet/i18n/id.po index e3b01325af8..11f26cddb44 100644 --- a/addons/hr_timesheet/i18n/id.po +++ b/addons/hr_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index 27dcd041a08..001fc4c9bf1 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ja.po b/addons/hr_timesheet/i18n/ja.po index 059b6f4c6f1..8826c240a34 100644 --- a/addons/hr_timesheet/i18n/ja.po +++ b/addons/hr_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ko.po b/addons/hr_timesheet/i18n/ko.po index 213f3eade13..862fafaf42f 100644 --- a/addons/hr_timesheet/i18n/ko.po +++ b/addons/hr_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lt.po b/addons/hr_timesheet/i18n/lt.po index ff1de865575..ca8a9257b57 100644 --- a/addons/hr_timesheet/i18n/lt.po +++ b/addons/hr_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lv.po b/addons/hr_timesheet/i18n/lv.po index 4cf0ee05558..31085e493e5 100644 --- a/addons/hr_timesheet/i18n/lv.po +++ b/addons/hr_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index 5e144b33482..cd2e5425049 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/mn.po b/addons/hr_timesheet/i18n/mn.po index 57e74dd79b1..4d087f0f020 100644 --- a/addons/hr_timesheet/i18n/mn.po +++ b/addons/hr_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nb.po b/addons/hr_timesheet/i18n/nb.po index 0c734648fd9..cf7286720dd 100644 --- a/addons/hr_timesheet/i18n/nb.po +++ b/addons/hr_timesheet/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index 476d9d50863..86658eb1023 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pl.po b/addons/hr_timesheet/i18n/pl.po index 28a1966fec4..a7cdd45865b 100644 --- a/addons/hr_timesheet/i18n/pl.po +++ b/addons/hr_timesheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index 6893b1f3022..05983eb3c29 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index 25ef4b38bdd..b22ef1f8c6f 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -42,6 +42,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nenhuma atividade ainda sobre este contrato.\n" +"

\n" +" No OpenERP, contratos e projetos são implementados usando\n" +"                 conta analítica. Assim, você pode controlar os custos e " +"receitas para analisar\n" +"                 suas margens facilmente.\n" +"

\n" +"Os custos serão criados automaticamente quando você se cadastrar faturas\n" +"do fornecedor, despesas ou planilhas de horas.\n" +"

\n" +"As receitas serão criadas automaticamente quando você cria faturas de " +"clientes.\n" +"                 Faturas de clientes pode ser criada com base em pedidos de " +"venda\n" +"                 (faturas com preços fixos), em planilhas de horas (com base " +"no trabalho feito) ou\n" +"                 em despesas (por exemplo reembolsos das despesas de " +"viagem).\n" +"

\n" +" " #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -76,7 +97,7 @@ msgstr "" #. module: hr_timesheet #: field:hr.employee,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de Medida" #. module: hr_timesheet #: field:hr.employee,journal_id:0 @@ -104,7 +125,7 @@ msgstr "Planilha de Horas" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "Por favor defina o funcionário para este usuário!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -130,7 +151,7 @@ msgstr "Sex" #: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_all_form #: model:ir.ui.menu,name:hr_timesheet.menu_hr_working_hours msgid "Timesheet Activities" -msgstr "" +msgstr "Atividades da Planilha de Horas" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 @@ -167,12 +188,12 @@ msgstr "Imprimir Quadro de Horas" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "Por favor defina o funcionário para seu usuário." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue msgid "Costs & Revenues" -msgstr "" +msgstr "Custos & Receitas" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -189,7 +210,7 @@ msgstr "Conta Analítica" #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Costs and Revenues" -msgstr "" +msgstr "Custos e Receitas" #. module: hr_timesheet #: code:addons/hr_timesheet/hr_timesheet.py:144 @@ -199,7 +220,7 @@ msgstr "" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_timesheet #: field:hr.analytic.timesheet,partner_id:0 @@ -245,6 +266,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar as atividades\n" +"

\n" +"Você pode se cadastrar e controlar as horas de seus funcionamentos para cada " +"projeto\n" +"                 todos os dias. Todo o tempo gasto em um projeto vai se " +"tornar um custo na\n" +"                 contabilidade analítica / contrato e pode ser re-faturados " +"aos clientes, se necessário.\n" +"

\n" +" " #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 @@ -255,7 +287,7 @@ msgstr "Imprimir" #. module: hr_timesheet #: help:account.analytic.account,use_timesheets:0 msgid "Check this field if this project manages timesheets" -msgstr "" +msgstr "Marque este campo se este projeto gera planilha de horas" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -281,7 +313,7 @@ msgstr "Data Inicial" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:77 #, python-format msgid "Please define cost unit for this employee." -msgstr "" +msgstr "Por favor defina o custo unitário para este funcionário." #. module: hr_timesheet #: help:hr.employee,product_id:0 @@ -296,6 +328,8 @@ msgid "" "No analytic account is defined on the project.\n" "Please set one or we cannot automatically fill the timesheet." msgstr "" +"Sem conta analítica definida no projeto.\n" +"Por favor defina uma ou não poderemos preencher a planilha de horas." #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -309,6 +343,9 @@ msgid "" "No 'Analytic Journal' is defined for employee %s \n" "Define an employee for the selected user and assign an 'Analytic Journal'!" msgstr "" +"Nenhum 'Diário Analítico' definido para o funcionário %s\n" +"Defina um funcionário para o usuário selecionado e associe um 'Diário " +"Analítico'!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -350,12 +387,12 @@ msgstr "Descrição do Trabalho" #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet #: xsl:hr.analytical.timesheet:0 msgid "Timesheet by Employee" -msgstr "" +msgstr "Planilha de Horas por Funcionários" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet @@ -423,6 +460,8 @@ msgid "" "No analytic journal defined for '%s'.\n" "You should assign an analytic journal on the employee form." msgstr "" +"Nenhum diário analítico definido para '%s'.\n" +"Você deve associar um diário analítico no formulário do funcionário." #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -437,7 +476,7 @@ msgstr "Junho" #: field:hr.sign.in.project,state:0 #: field:hr.sign.out.project,state:0 msgid "Current Status" -msgstr "" +msgstr "Situação Atual" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -487,7 +526,7 @@ msgstr "Qui" #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "Sign In/Out by Project" -msgstr "" +msgstr "Entrada/Saída por Projeto" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_analytical_timesheet_employee @@ -503,7 +542,7 @@ msgstr "ID do Funcionário" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 msgid "Period" -msgstr "" +msgstr "Período" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -617,6 +656,8 @@ msgid "" "Please create an employee for this user, using the menu: Human Resources > " "Employees." msgstr "" +"Por favor crie um funcionário para este usuário, usando o menu: Recursos " +"Humanos > Funcionários." #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -646,7 +687,7 @@ msgstr "Abril" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erro de Usuário!" #. module: hr_timesheet #: view:hr.sign.in.project:0 @@ -662,7 +703,7 @@ msgstr "Ano" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Duration" -msgstr "" +msgstr "Duração" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index 579af68ab74..f786cfb9eb7 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ru.po b/addons/hr_timesheet/i18n/ru.po index 232830d132f..b653a6aa872 100644 --- a/addons/hr_timesheet/i18n/ru.po +++ b/addons/hr_timesheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index 89c8ad64666..36c232d7aa3 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sq.po b/addons/hr_timesheet/i18n/sq.po index e415087c84f..2de25921ddc 100644 --- a/addons/hr_timesheet/i18n/sq.po +++ b/addons/hr_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sr@latin.po b/addons/hr_timesheet/i18n/sr@latin.po index ebc651ca155..19c0b72e1c8 100644 --- a/addons/hr_timesheet/i18n/sr@latin.po +++ b/addons/hr_timesheet/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sv.po b/addons/hr_timesheet/i18n/sv.po index 76395cee28e..fbecf99d809 100644 --- a/addons/hr_timesheet/i18n/sv.po +++ b/addons/hr_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tlh.po b/addons/hr_timesheet/i18n/tlh.po index 118d65e9449..33e00a83f12 100644 --- a/addons/hr_timesheet/i18n/tlh.po +++ b/addons/hr_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 0aaea053be5..9510ab9729a 100644 --- a/addons/hr_timesheet/i18n/tr.po +++ b/addons/hr_timesheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/uk.po b/addons/hr_timesheet/i18n/uk.po index a25f6153a60..f8b73442e77 100644 --- a/addons/hr_timesheet/i18n/uk.po +++ b/addons/hr_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/vi.po b/addons/hr_timesheet/i18n/vi.po index 7fce667e382..d7ce2fd7d83 100644 --- a/addons/hr_timesheet/i18n/vi.po +++ b/addons/hr_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index c74ce98ed8f..74f8551ceea 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 05bc1e41bce..b94050e2f7e 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet_invoice/i18n/ar.po b/addons/hr_timesheet_invoice/i18n/ar.po index 82e2c6a7d77..2999247a08e 100644 --- a/addons/hr_timesheet_invoice/i18n/ar.po +++ b/addons/hr_timesheet_invoice/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bg.po b/addons/hr_timesheet_invoice/i18n/bg.po index b9ce2bc9852..b673d537206 100644 --- a/addons/hr_timesheet_invoice/i18n/bg.po +++ b/addons/hr_timesheet_invoice/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bs.po b/addons/hr_timesheet_invoice/i18n/bs.po index 952441c7bc1..19baf4e59c5 100644 --- a/addons/hr_timesheet_invoice/i18n/bs.po +++ b/addons/hr_timesheet_invoice/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ca.po b/addons/hr_timesheet_invoice/i18n/ca.po index fd355b857ba..17a05cc9681 100644 --- a/addons/hr_timesheet_invoice/i18n/ca.po +++ b/addons/hr_timesheet_invoice/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/cs.po b/addons/hr_timesheet_invoice/i18n/cs.po index b2c2e47ccbe..2da29c057a1 100644 --- a/addons/hr_timesheet_invoice/i18n/cs.po +++ b/addons/hr_timesheet_invoice/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/da.po b/addons/hr_timesheet_invoice/i18n/da.po index d8126d15731..73ff2111d58 100644 --- a/addons/hr_timesheet_invoice/i18n/da.po +++ b/addons/hr_timesheet_invoice/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/de.po b/addons/hr_timesheet_invoice/i18n/de.po index 490bae0d374..deaae705cef 100644 --- a/addons/hr_timesheet_invoice/i18n/de.po +++ b/addons/hr_timesheet_invoice/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/el.po b/addons/hr_timesheet_invoice/i18n/el.po index a96c4f27141..9884e9f2855 100644 --- a/addons/hr_timesheet_invoice/i18n/el.po +++ b/addons/hr_timesheet_invoice/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es.po b/addons/hr_timesheet_invoice/i18n/es.po index c618aa8a5e1..de3e57854ac 100644 --- a/addons/hr_timesheet_invoice/i18n/es.po +++ b/addons/hr_timesheet_invoice/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -229,6 +229,11 @@ msgid "" "20% advance invoice (fixed price, based on a sales order), you should " "invoice the rest on timesheet with a 80% ratio." msgstr "" +"Normalmente se factura el 100% de los partes de horas. Pero si se combina un " +"precio fijo y facturación por partes de horas, puede ser necesario usar otra " +"proporción. Por ejemplo, si se hace un factura avanzada de un 20% (precio " +"fijo, basado en un pedido de venta), se debería facturar el resto del parte " +"de horas con una proporción de un 80%." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 5c9502077a0..f64a508a261 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_CR.po b/addons/hr_timesheet_invoice/i18n/es_CR.po index 016b199dee0..93a66a81158 100644 --- a/addons/hr_timesheet_invoice/i18n/es_CR.po +++ b/addons/hr_timesheet_invoice/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_EC.po b/addons/hr_timesheet_invoice/i18n/es_EC.po index 39f50146959..214ce7bdd87 100644 --- a/addons/hr_timesheet_invoice/i18n/es_EC.po +++ b/addons/hr_timesheet_invoice/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/et.po b/addons/hr_timesheet_invoice/i18n/et.po index b5d93334a6f..b6cc2fb2ce1 100644 --- a/addons/hr_timesheet_invoice/i18n/et.po +++ b/addons/hr_timesheet_invoice/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fi.po b/addons/hr_timesheet_invoice/i18n/fi.po index e2ec75c98af..aa98896a9cc 100644 --- a/addons/hr_timesheet_invoice/i18n/fi.po +++ b/addons/hr_timesheet_invoice/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index 3ab7eab4a86..6b8d745b5e3 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hr.po b/addons/hr_timesheet_invoice/i18n/hr.po index e731aba4fd4..345930fcae5 100644 --- a/addons/hr_timesheet_invoice/i18n/hr.po +++ b/addons/hr_timesheet_invoice/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hu.po b/addons/hr_timesheet_invoice/i18n/hu.po index 3aee3752c63..b49e9b37999 100644 --- a/addons/hr_timesheet_invoice/i18n/hu.po +++ b/addons/hr_timesheet_invoice/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/id.po b/addons/hr_timesheet_invoice/i18n/id.po index 5c19ad5fd74..81a6da43448 100644 --- a/addons/hr_timesheet_invoice/i18n/id.po +++ b/addons/hr_timesheet_invoice/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index 8256ddbb8f8..9ab0b0db5ba 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -26,7 +26,7 @@ msgstr "Orari di Lavoro da Utente" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Nome Interno" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -39,18 +39,20 @@ msgid "" "The product to invoice is defined on the employee form, the price will be " "deducted by this pricelist on the product." msgstr "" +"Il prodotto da fatturare è definito nella scheda dipendente, il prezzo sarà " +"preso da questo listino prezzi sul prodotto." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Nessun record trovato per questo report." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Dati Insufficienti!" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -70,17 +72,17 @@ msgstr "Entrata" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,name:0 msgid "Log of Activity" -msgstr "" +msgstr "Log delle Attività" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Re-open project" -msgstr "" +msgstr "Ri-apri Progetto" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unità di misura" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user @@ -105,7 +107,7 @@ msgstr "Profitto" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 #, python-format msgid "You cannot modify an invoiced analytic line!" -msgstr "" +msgstr "Non è possibile modificare una linea analitica fatturata!" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_factor @@ -129,6 +131,8 @@ msgid "" "Fill this field only if you want to force to use a specific product. Keep " "empty to use the real product that comes from the cost." msgstr "" +"Completare questo campo solo per forzare l'uso di un prodotto specifico. " +"Lasciare vuoto per usare il prodotto vero che proviene dal costo." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,help:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -146,6 +150,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliccare per aggiungere un nuovo tipo di fatturazione.\n" +"

\n" +" OpenERP permette di creare tipi di fatturazione standard. E' " +"possibile\n" +" aver bisogno di assegnare regolarmente sconti per uno " +"specifico contratto\n" +" o accordo con un cliente. Da questo menu, è possibile creare " +"tipi \n" +" aggiuntivi di fatturazione per velocizzare le \n" +" fatturazioni.\n" +"

\n" +" " #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -166,7 +183,7 @@ msgstr "Importo Fatturato" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 #, python-format msgid "Analytic Account incomplete !" -msgstr "" +msgstr "Conto Analitico incompleto !" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 @@ -176,7 +193,7 @@ msgstr "Progetto" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Invoice on Timesheets Options" -msgstr "" +msgstr "Fattura sulle Opzioni dell'Orario di Lavoro" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,amount:0 @@ -191,7 +208,7 @@ msgstr "Il dettaglio di ciascun lavoro sarà mostrato sulla fattura" #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Listino Prezzi" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -216,6 +233,11 @@ msgid "" "20% advance invoice (fixed price, based on a sales order), you should " "invoice the rest on timesheet with a 80% ratio." msgstr "" +"Solitamente viene fatturato il 100% delle ore lavorate. Ma nel caso venga " +"utilizzata la fatturazione sia con prezzi fissi che con orari lavorativi, è " +"possibile usare un altro tasso. Per esempio, se viene emessa una fattura di " +"acconto del 20% (prezzi fissi, basata sugli ordini di vendita), è possibile " +"fatturare il resto sulle ore lavorate con un tasso dell'80%." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -245,7 +267,7 @@ msgstr "Scadenza" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Errore di configurazione!" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 @@ -260,7 +282,7 @@ msgstr "Le tempistiche di ciascun lavoro saranno mostrate nella fattura" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Cancel Contract" -msgstr "" +msgstr "Annulla Contratto" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,date_from:0 @@ -282,7 +304,7 @@ msgstr "Costi da Fatturare" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Please define income account for product '%s'." -msgstr "" +msgstr "E' necessario definire un conto ricavi per il prodotto '%s'." #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,account_id:0 @@ -312,7 +334,7 @@ msgstr "" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create.final:0 msgid "Force to use a special product" -msgstr "" +msgstr "Forza l'uso di un prodotto speciale" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_user_stat_all @@ -337,12 +359,12 @@ msgstr "Profitto dal Foglio ore" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 msgid "Force Product" -msgstr "" +msgstr "Forza Prodotto" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Contract Finished" -msgstr "" +msgstr "Contratti Conclusi" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -356,13 +378,13 @@ msgstr "Luglio" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Invoiceable" -msgstr "" +msgstr "Fatturabile" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Warning!" -msgstr "" +msgstr "Attenzione!" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -378,7 +400,7 @@ msgstr "Teorico" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor3 msgid "Free of charge" -msgstr "" +msgstr "Gratis" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_account_analytic_line_to_invoice @@ -409,7 +431,7 @@ msgstr "Sì (100%)" #. module: hr_timesheet_invoice #: view:report_timesheet.user:0 msgid "Timesheet by users" -msgstr "" +msgstr "Orari di lavoro per utenti" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:58 @@ -430,7 +452,7 @@ msgstr "Dicembre" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create.final:0 msgid "Invoice contract" -msgstr "" +msgstr "Fattura contratto" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,month:0 @@ -537,7 +559,7 @@ msgstr "Orari di Lavoro da Contabilità" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Voci sezionale" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -606,7 +628,7 @@ msgstr "Data" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Ora" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -651,6 +673,8 @@ msgid "" "It allows to set the discount while making invoice, keep empty if the " "activities should not be invoiced." msgstr "" +"Permette di impostare lo sconto facendo le fatture, lasciare vuoto se le " +"attività non dovrebbero essere fatturate." #. module: hr_timesheet_invoice #: field:account.analytic.account,amount_max:0 @@ -660,7 +684,7 @@ msgstr "Prezzo Massimo Fattura" #. module: hr_timesheet_invoice #: field:account.analytic.account,to_invoice:0 msgid "Timesheet Invoicing Ratio" -msgstr "" +msgstr "Tasso di Fatturazione degli Orari di Lavoro" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -711,7 +735,7 @@ msgstr "A" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Do you want to show details of work in invoice?" -msgstr "" +msgstr "E' necessario visualizzare i dettagli del lavoro nella fattura?" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -719,7 +743,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_create #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_create_final msgid "Create Invoice" -msgstr "" +msgstr "Crea Fattura" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.act_res_users_2_report_timehsheet_account @@ -747,6 +771,8 @@ msgstr "Orari di Lavoro da Fatturare" msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." msgstr "" +"Contratto incompleto. E' necessario completare i campi Cliente e Listino " +"Prezzi." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_date_stat_all @@ -793,17 +819,19 @@ msgstr "Il prodotto che verrà utilizzato per fatture l'importo rimenente" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,time:0 msgid "Time Spent" -msgstr "" +msgstr "Tempo impiegato" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_max:0 msgid "Keep empty if this contract is not limited to a total fixed price." msgstr "" +"Lasciare vuoto se questo contratto non è limitato a un totale prefissato di " +"prezzo." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create.final:0 msgid "Do you want to show details of each activity to your customer?" -msgstr "" +msgstr "E' necessario mostrare i dettagli di ogni attività del cliente?" #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 @@ -832,7 +860,7 @@ msgstr "Nome" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "" +msgstr "Linee Analitiche" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -865,6 +893,8 @@ msgid "" "There is no product defined. Please select one or force the product through " "the wizard." msgstr "" +"Non ci sono prodotti definiti. E' necessario selezionarne uno o forzare il " +"prodotto tramite la procedura guidata." #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,factor:0 @@ -875,7 +905,7 @@ msgstr "Sconto in percentuale" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Invoice is already linked to some of the analytic line(s)!" -msgstr "" +msgstr "La fattura è già collegata ad una o più linee analitiche!" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,name:0 @@ -893,19 +923,19 @@ msgstr "Unità" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 #, python-format msgid "Error!" -msgstr "" +msgstr "Errore!" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor4 msgid "80%" -msgstr "" +msgstr "80%" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 #: view:hr.timesheet.invoice.create:0 #: view:hr.timesheet.invoice.create.final:0 msgid "or" -msgstr "" +msgstr "o" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,manager_id:0 @@ -935,4 +965,4 @@ msgstr "Anno" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Duration" -msgstr "" +msgstr "Durata" diff --git a/addons/hr_timesheet_invoice/i18n/ja.po b/addons/hr_timesheet_invoice/i18n/ja.po index b3b04f615c6..5c1cc6c748b 100644 --- a/addons/hr_timesheet_invoice/i18n/ja.po +++ b/addons/hr_timesheet_invoice/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ko.po b/addons/hr_timesheet_invoice/i18n/ko.po index 90ea412d210..d35a9bf863e 100644 --- a/addons/hr_timesheet_invoice/i18n/ko.po +++ b/addons/hr_timesheet_invoice/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lt.po b/addons/hr_timesheet_invoice/i18n/lt.po index 747cf7dbb03..e6b9b3abd9a 100644 --- a/addons/hr_timesheet_invoice/i18n/lt.po +++ b/addons/hr_timesheet_invoice/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lv.po b/addons/hr_timesheet_invoice/i18n/lv.po index 83a5e78fd90..0293c33fb76 100644 --- a/addons/hr_timesheet_invoice/i18n/lv.po +++ b/addons/hr_timesheet_invoice/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/mn.po b/addons/hr_timesheet_invoice/i18n/mn.po index f056ab571fc..61c17c9bc4c 100644 --- a/addons/hr_timesheet_invoice/i18n/mn.po +++ b/addons/hr_timesheet_invoice/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl.po b/addons/hr_timesheet_invoice/i18n/nl.po index e12d687250f..e678d9ffbc1 100644 --- a/addons/hr_timesheet_invoice/i18n/nl.po +++ b/addons/hr_timesheet_invoice/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index 1fa8452b881..8c484d5dd0d 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pl.po b/addons/hr_timesheet_invoice/i18n/pl.po index 3d83f2df41b..9a2f10a2fe9 100644 --- a/addons/hr_timesheet_invoice/i18n/pl.po +++ b/addons/hr_timesheet_invoice/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index 4014ae31eb5..f20b1253d89 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index 2f9bf7cb97a..83128f06465 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -26,7 +26,7 @@ msgstr "Planilhas de Horas por usuário" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Nome Interno" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -39,18 +39,20 @@ msgid "" "The product to invoice is defined on the employee form, the price will be " "deducted by this pricelist on the product." msgstr "" +"O produto a faturar está definido no formulário do funcionário, o preço será " +"deduzido por esta lista de preços no produto." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Nenhum registro encontrado para este relatório." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Dados insuficientes!" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -70,7 +72,7 @@ msgstr "Receita" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,name:0 msgid "Log of Activity" -msgstr "" +msgstr "Registro de Atividades" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -80,7 +82,7 @@ msgstr "Reabrir projeto" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de Medida" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user @@ -129,6 +131,8 @@ msgid "" "Fill this field only if you want to force to use a specific product. Keep " "empty to use the real product that comes from the cost." msgstr "" +"Preencha este campo se você deseja forçar o uso de um produto específico. " +"Deixe em branco para usar o produto real que vem a partir do custo." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,help:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -146,6 +150,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo tipo de faturamento.\n" +"

\n" +"O OpenERP permite que você crie tipos de faturamento padrão. você pode\n" +"                 ter que atribuir descontos regularmente por causa de um " +"contrato\n" +"                 específico ou acordo com um cliente. A partir deste menu, " +"você pode\n" +"                 criar outros tipos de faturamento para acelerar o seu\n" +"                 faturamento.\n" +"

\n" +" " #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -166,7 +182,7 @@ msgstr "Valor Faturado" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 #, python-format msgid "Analytic Account incomplete !" -msgstr "" +msgstr "Conta Analítica incompleta!" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 @@ -176,7 +192,7 @@ msgstr "Projeto" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Invoice on Timesheets Options" -msgstr "" +msgstr "Faturar nas Opções da Planilha de Horas" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,amount:0 @@ -191,7 +207,7 @@ msgstr "O detalhe de cada trabalho realizado será mostrado na fatura" #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Lista de Preços" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -216,6 +232,11 @@ msgid "" "20% advance invoice (fixed price, based on a sales order), you should " "invoice the rest on timesheet with a 80% ratio." msgstr "" +"Você geralmente fatura 100% da planilha de horas. Mas se você misturar preço " +"fixo e faturamento de horários, você pode usar outra proporção. Por exemplo, " +"se você fizer uma fatura com adiantamento de 20% (preço fixo, com base em um " +"pedido de venda), você deve faturar o restante na planilha de horas com uma " +"proporção de 80%." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -245,7 +266,7 @@ msgstr "Prazo final" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erro de Configuração!" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 @@ -260,7 +281,7 @@ msgstr "O tempo de cada trabalho realizado será mostrado na fatura" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Cancel Contract" -msgstr "" +msgstr "Cancelar Contrato" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,date_from:0 @@ -282,7 +303,7 @@ msgstr "Custos para fatura" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Please define income account for product '%s'." -msgstr "" +msgstr "Por favor defina a conta de receitas para o produto '%s'." #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,account_id:0 @@ -337,12 +358,12 @@ msgstr "Ganho da Planilha de Horas" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 msgid "Force Product" -msgstr "" +msgstr "Forçar Produto" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Contract Finished" -msgstr "" +msgstr "Contrato Terminado" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -356,13 +377,13 @@ msgstr "Julho" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Invoiceable" -msgstr "" +msgstr "Faturável" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -378,7 +399,7 @@ msgstr "Teórico" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor3 msgid "Free of charge" -msgstr "" +msgstr "Sem custo" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_account_analytic_line_to_invoice @@ -409,7 +430,7 @@ msgstr "Sim (100%)" #. module: hr_timesheet_invoice #: view:report_timesheet.user:0 msgid "Timesheet by users" -msgstr "" +msgstr "Planilha de Horas por usuários" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:58 @@ -606,7 +627,7 @@ msgstr "Data" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Tempo" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -651,6 +672,8 @@ msgid "" "It allows to set the discount while making invoice, keep empty if the " "activities should not be invoiced." msgstr "" +"Permite a você definir um desconto ao fazer uma fatura, deixe em branco se " +"as atividades não devem ser faturadas." #. module: hr_timesheet_invoice #: field:account.analytic.account,amount_max:0 @@ -660,7 +683,7 @@ msgstr "Preço Máx. Fatura" #. module: hr_timesheet_invoice #: field:account.analytic.account,to_invoice:0 msgid "Timesheet Invoicing Ratio" -msgstr "" +msgstr "Proporção de Faturamento da Planilha de Horas" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -711,7 +734,7 @@ msgstr "Até" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Do you want to show details of work in invoice?" -msgstr "" +msgstr "Você quer mostrar detalhes do trabalho na fatura?" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -747,6 +770,8 @@ msgstr "Planilhas de Horas a faturar" msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." msgstr "" +"Contrato incompleto. Por favor preencha os campos de Cliente e Lista de " +"Preços." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_date_stat_all @@ -793,7 +818,7 @@ msgstr "O produto que será usado para cobrar o valor restante" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,time:0 msgid "Time Spent" -msgstr "" +msgstr "Tempo Gasto" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_max:0 @@ -804,7 +829,7 @@ msgstr "" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create.final:0 msgid "Do you want to show details of each activity to your customer?" -msgstr "" +msgstr "Você quer mostrar detalhes de cada atividade para o seu cliente?" #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 @@ -833,7 +858,7 @@ msgstr "Nome" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "" +msgstr "Linhas Analíticas" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -866,6 +891,8 @@ msgid "" "There is no product defined. Please select one or force the product through " "the wizard." msgstr "" +"Não existe nenhum produto definido. Por favor, selecione ou forçe um produto " +"através do assistente." #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,factor:0 @@ -894,19 +921,19 @@ msgstr "Unidades" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor4 msgid "80%" -msgstr "" +msgstr "80%" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 #: view:hr.timesheet.invoice.create:0 #: view:hr.timesheet.invoice.create.final:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,manager_id:0 @@ -936,4 +963,4 @@ msgstr "Ano" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Duration" -msgstr "" +msgstr "Duração" diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index 0fbd32ea98f..e37c9d6aeed 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ru.po b/addons/hr_timesheet_invoice/i18n/ru.po index 52e4a6869e0..edc92da33a7 100644 --- a/addons/hr_timesheet_invoice/i18n/ru.po +++ b/addons/hr_timesheet_invoice/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sl.po b/addons/hr_timesheet_invoice/i18n/sl.po index 71a9c44c65a..53842616e9a 100644 --- a/addons/hr_timesheet_invoice/i18n/sl.po +++ b/addons/hr_timesheet_invoice/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sq.po b/addons/hr_timesheet_invoice/i18n/sq.po index 531156a2cb7..6eb743313ca 100644 --- a/addons/hr_timesheet_invoice/i18n/sq.po +++ b/addons/hr_timesheet_invoice/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sr@latin.po b/addons/hr_timesheet_invoice/i18n/sr@latin.po index 0042add259b..91832f669a4 100644 --- a/addons/hr_timesheet_invoice/i18n/sr@latin.po +++ b/addons/hr_timesheet_invoice/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index 0d9873c168a..564015fdc92 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tlh.po b/addons/hr_timesheet_invoice/i18n/tlh.po index d72ca8ca037..9bb0a076f4f 100644 --- a/addons/hr_timesheet_invoice/i18n/tlh.po +++ b/addons/hr_timesheet_invoice/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index 02faf33183b..b5e4d21b4ec 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/uk.po b/addons/hr_timesheet_invoice/i18n/uk.po index e00e1b287e8..c39a77796d7 100644 --- a/addons/hr_timesheet_invoice/i18n/uk.po +++ b/addons/hr_timesheet_invoice/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/vi.po b/addons/hr_timesheet_invoice/i18n/vi.po index 219fbd77af1..3dc86e301a6 100644 --- a/addons/hr_timesheet_invoice/i18n/vi.po +++ b/addons/hr_timesheet_invoice/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 502845ea38f..329d09db9f1 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index bfe4fd2b295..c531a334d02 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_sheet/i18n/ar.po b/addons/hr_timesheet_sheet/i18n/ar.po index e60368f38f7..cf964647823 100644 --- a/addons/hr_timesheet_sheet/i18n/ar.po +++ b/addons/hr_timesheet_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bg.po b/addons/hr_timesheet_sheet/i18n/bg.po index 6520bf2f65d..758f5ffdcc6 100644 --- a/addons/hr_timesheet_sheet/i18n/bg.po +++ b/addons/hr_timesheet_sheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bs.po b/addons/hr_timesheet_sheet/i18n/bs.po index 1e7c78f7c32..cff3e2769f2 100644 --- a/addons/hr_timesheet_sheet/i18n/bs.po +++ b/addons/hr_timesheet_sheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ca.po b/addons/hr_timesheet_sheet/i18n/ca.po index e8b73d0715c..02ee9bcdc43 100644 --- a/addons/hr_timesheet_sheet/i18n/ca.po +++ b/addons/hr_timesheet_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/cs.po b/addons/hr_timesheet_sheet/i18n/cs.po index 82fa836b31c..ede58f54f98 100644 --- a/addons/hr_timesheet_sheet/i18n/cs.po +++ b/addons/hr_timesheet_sheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/da.po b/addons/hr_timesheet_sheet/i18n/da.po index 2a1b8ee4bb4..508929b3b8a 100644 --- a/addons/hr_timesheet_sheet/i18n/da.po +++ b/addons/hr_timesheet_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 96cf8b7b41b..625953b01d4 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/el.po b/addons/hr_timesheet_sheet/i18n/el.po index a0777532441..e0db18c6fd2 100644 --- a/addons/hr_timesheet_sheet/i18n/el.po +++ b/addons/hr_timesheet_sheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index fba0f298bf3..585c735dd76 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index a4e5dec030d..0d8616c87f7 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_CR.po b/addons/hr_timesheet_sheet/i18n/es_CR.po index 46159be8725..8395e684fcd 100644 --- a/addons/hr_timesheet_sheet/i18n/es_CR.po +++ b/addons/hr_timesheet_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_EC.po b/addons/hr_timesheet_sheet/i18n/es_EC.po index 1effd070ffe..5e9615f3bbc 100644 --- a/addons/hr_timesheet_sheet/i18n/es_EC.po +++ b/addons/hr_timesheet_sheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/et.po b/addons/hr_timesheet_sheet/i18n/et.po index aa16413d6dc..fc2038e002e 100644 --- a/addons/hr_timesheet_sheet/i18n/et.po +++ b/addons/hr_timesheet_sheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fi.po b/addons/hr_timesheet_sheet/i18n/fi.po index d842b4ac650..22d4871987f 100644 --- a/addons/hr_timesheet_sheet/i18n/fi.po +++ b/addons/hr_timesheet_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fr.po b/addons/hr_timesheet_sheet/i18n/fr.po index b92bff58988..97e2b67f231 100644 --- a/addons/hr_timesheet_sheet/i18n/fr.po +++ b/addons/hr_timesheet_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hr.po b/addons/hr_timesheet_sheet/i18n/hr.po index 73d09d9744d..65d87c1b284 100644 --- a/addons/hr_timesheet_sheet/i18n/hr.po +++ b/addons/hr_timesheet_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hu.po b/addons/hr_timesheet_sheet/i18n/hu.po index 7f8ed835d58..f05b03c33e8 100644 --- a/addons/hr_timesheet_sheet/i18n/hu.po +++ b/addons/hr_timesheet_sheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/id.po b/addons/hr_timesheet_sheet/i18n/id.po index b3dcb90a086..a05a9caca56 100644 --- a/addons/hr_timesheet_sheet/i18n/id.po +++ b/addons/hr_timesheet_sheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/it.po b/addons/hr_timesheet_sheet/i18n/it.po index 20cc0ecb09c..fb92e1c8a05 100644 --- a/addons/hr_timesheet_sheet/i18n/it.po +++ b/addons/hr_timesheet_sheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ja.po b/addons/hr_timesheet_sheet/i18n/ja.po index 5b5f7ca82c9..c717842d586 100644 --- a/addons/hr_timesheet_sheet/i18n/ja.po +++ b/addons/hr_timesheet_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ko.po b/addons/hr_timesheet_sheet/i18n/ko.po index 841ef7905ed..43dbd82f694 100644 --- a/addons/hr_timesheet_sheet/i18n/ko.po +++ b/addons/hr_timesheet_sheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index e4ac72acb04..2120a7d8728 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lv.po b/addons/hr_timesheet_sheet/i18n/lv.po index 5f3c4c97ef9..83a28e5857b 100644 --- a/addons/hr_timesheet_sheet/i18n/lv.po +++ b/addons/hr_timesheet_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index 51771821190..d8a475c46f2 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mn.po b/addons/hr_timesheet_sheet/i18n/mn.po index 7ace5158fd6..576f214d702 100644 --- a/addons/hr_timesheet_sheet/i18n/mn.po +++ b/addons/hr_timesheet_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index 02039846b1d..63ba2a377c3 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index 38a64f27d62..e1f14b72f32 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pl.po b/addons/hr_timesheet_sheet/i18n/pl.po index e81478d8d89..ec0129576c4 100644 --- a/addons/hr_timesheet_sheet/i18n/pl.po +++ b/addons/hr_timesheet_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 2efd87e6f28..891f196fbf5 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index 28a966fa520..7e43d509845 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -34,7 +34,7 @@ msgstr "Serviço" #: field:hr.timesheet.report,quantity:0 #: field:timesheet.report,quantity:0 msgid "Time" -msgstr "" +msgstr "Tempo" #. module: hr_timesheet_sheet #: help:hr.config.settings,timesheet_max_difference:0 @@ -43,6 +43,9 @@ msgid "" " computation for one sheet. Set this to 0 if you do not want " "any control." msgstr "" +"Diferença permitida em horas entre a entrada / saída e o cálculo da planilha " +"de horários.\n" +"                 Configure para 0 se você não quer qualquer controle." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -77,6 +80,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign an " "analytic journal to the employee, like 'Timesheet Journal'." msgstr "" +"A fim de criar uma planilha de horas para este funcionário, você deve " +"atribuir um diário analítico para o funcionário, como 'Diário de Horas'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -93,7 +98,7 @@ msgstr "#Custo" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -123,7 +128,7 @@ msgstr "Definir como Provisório" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Timesheet Period" -msgstr "" +msgstr "Período da Planilha de Horas" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,date_to:0 @@ -134,7 +139,7 @@ msgstr "Data até" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "to" -msgstr "" +msgstr "até" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_invoiceonwork0 @@ -147,6 +152,7 @@ msgstr "Baseado na planilha de apontamento" #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" +"você não pode modificar um lançamento em uma planilha de horas confirmada." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -189,13 +195,13 @@ msgstr "Recusar" #: view:hr_timesheet_sheet.sheet:0 #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet msgid "Timesheet Activities" -msgstr "" +msgstr "Atividades da Planilha de Horas" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Please create an employee and associate it with this user." -msgstr "" +msgstr "Por favor crie um funcionário e associe com o usuário." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 @@ -204,12 +210,14 @@ msgstr "" msgid "" "You cannot enter an attendance date outside the current timesheet dates." msgstr "" +"Você não pode inserir uma data de atendimento fora das datas de horários " +"atuais." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:205 #, python-format msgid "Week " -msgstr "" +msgstr "Semana " #. module: hr_timesheet_sheet #: model:ir.actions.act_window,help:hr_timesheet_sheet.action_hr_timesheet_current_open @@ -232,7 +240,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,state:0 @@ -244,6 +252,11 @@ msgid "" "* The 'Done' status is used when users timesheet is accepted by his/her " "senior." msgstr "" +" * A situação 'Provisória' é usada quando um usuário codifica uma planilha " +"de horas nova.\n" +"* 'Confirmada' é usado para confirmar a planilha de horas por usuário.\n" +"* 'Concluído' é usado quando a planilha de horas do usuário é aceita por seu " +"superior." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 @@ -258,20 +271,22 @@ msgstr "" #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_max_difference:0 msgid "" "Allow a difference of time between timesheets and attendances of (in hours)" msgstr "" +"Permitir uma diferença de tempo entre planilha de horas e atendimentos de " +"(em horas)" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:99 #, python-format msgid "" "Please verify that the total difference of the sheet is lower than %.2f." -msgstr "" +msgstr "Verifique que a diferença total da planilha é inferior a %.2f." #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_timesheet_report_stat_all @@ -292,7 +307,7 @@ msgstr "Validação" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:69 @@ -302,6 +317,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign it to a " "user." msgstr "" +"para criar uma planilha de horas para este funcionário, você precisa associá-" +"lo ao usuário." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_attendance0 @@ -313,7 +330,7 @@ msgstr "Entrada na Folha de Hora do Funcionário" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Ação Inválida!" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -329,6 +346,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: hr_timesheet_sheet #: field:timesheet.report,nbr:0 @@ -376,7 +396,7 @@ msgstr "Linhas do apontamento de horas" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_confirmedtimesheet0 @@ -408,7 +428,7 @@ msgstr "Tempo Total" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form msgid "Timesheets to Validate" -msgstr "" +msgstr "Planilha de Horas para Validar" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -436,14 +456,14 @@ msgstr "Julho" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 msgid "Validate timesheets every" -msgstr "" +msgstr "Validar a planilha de horas a cada" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:86 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erro de Configuração!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,state:0 @@ -502,6 +522,8 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product, like 'Consultant'." msgstr "" +"para criar uma planilha de horas para este funcionário, você precisa " +"associar o funcionário ao produto, como 'Consultor'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -553,6 +575,8 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product." msgstr "" +"para criar uma planilha de horas para este funcionário, você precisa " +"associar o funcionário ao produto." #. module: hr_timesheet_sheet #. openerp-web @@ -561,12 +585,12 @@ msgstr "" msgid "" "You will be able to register your working hours and\n" " activities." -msgstr "" +msgstr "Você poderá registrar as horas trabalhadas e atividades." #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 @@ -592,7 +616,7 @@ msgstr "Observação" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:33 #, python-format msgid "Add" -msgstr "" +msgstr "Adicionar" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -631,11 +655,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nova planilha de horas para aprovar.\n" +"

\n" +"Você deve registrar planilhas todos os dias e confirmar no final\n" +"                 da semana. Uma vez que a planilha de horas é confirmada, " +"deve ser\n" +"                 validado por um gerente.\n" +"

\n" +" Planilhas de Horas também podem ser faturada aos clientes, de " +"acordo com o\n" +"                 configuração do contrato relacionado a cada projeto.\n" +"

\n" +" " #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Linha Analítica" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -646,7 +683,7 @@ msgstr "Agosto" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Differences" -msgstr "" +msgstr "Diferenças" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -674,7 +711,7 @@ msgstr "Folha de Horas por Período" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -732,6 +769,8 @@ msgid "" "The timesheet cannot be validated as it does not contain an equal number of " "sign ins and sign outs." msgstr "" +"A planilha de horas não pode ser validada, pois não contém um número igual " +"de entradas e saídas." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -760,6 +799,8 @@ msgstr "Resumo" #, python-format msgid "You cannot delete a timesheet which have attendance entries." msgstr "" +"Você não pode excluir uma planilha de horas que possui entradas de " +"atendimentos." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -773,11 +814,13 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "You should use the menu 'My Timesheet' to avoid this problem." msgstr "" +"Você não pode ter duas planilhas de horas que se sobrepõem!\n" +"Você deve usar o menu 'Minha Planilha de Horas' para evitar este problema." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Submit to Manager" -msgstr "" +msgstr "Enviar ao Gerente" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -803,6 +846,7 @@ msgstr "Buscar Conta" #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" +"Você não pode modificar uma entrada em uma planilha de horas confirmada" #. module: hr_timesheet_sheet #: help:res.company,timesheet_max_difference:0 @@ -837,6 +881,8 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "Please use the menu 'My Current Timesheet' to avoid this problem." msgstr "" +"Você não pode ter duas planilhas de horas que se sobrepõem!\n" +"Você deve usar o menu 'Minha Planilha de Horas' para evitar este problema." #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 @@ -893,7 +939,7 @@ msgstr "Agrupar por data do ano" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:56 #, python-format msgid "Click to add projects, contracts or analytic accounts." -msgstr "" +msgstr "Clique para adicionar projetos, contratos ou contas analíticas." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_validatedtimesheet0 @@ -903,7 +949,7 @@ msgstr "Situação é \"Validado\"" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -925,7 +971,7 @@ msgstr "Folha de Horas Confirmadas" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Details" -msgstr "" +msgstr "Detalhes" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_analytic_timesheet @@ -936,7 +982,7 @@ msgstr "Linha de Apontamento de Horas" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:213 #, python-format msgid "You cannot delete a timesheet which is already confirmed." -msgstr "" +msgstr "Você não pode excluir uma planilha de horas que já foi confirmada." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -995,7 +1041,7 @@ msgstr "Total de Atendimentos" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:39 #, python-format msgid "Add a Line" -msgstr "" +msgstr "Adicionar uma linha" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_difference:0 @@ -1007,7 +1053,7 @@ msgstr "Diferença" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 #, python-format msgid "You cannot duplicate a timesheet." -msgstr "" +msgstr "Você não pode duplicar uma planilha de horas." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 @@ -1032,6 +1078,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Este relatório realiza análise em planilhas criadas pelo\n" +"                 recursos humanos no sistema. Ele permite que você tenha uma " +"visão geral\n" +" de entradas feitas por seus funcionários. Você pode agrupá-los\n" +"                 por critérios específicos de seleção graças à ferramenta de " +"busca.\n" +"

\n" +" " #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -1042,6 +1097,8 @@ msgstr "Funcionários" #: constraint:hr.analytic.timesheet:0 msgid "You cannot modify an entry in a Confirmed/Done timesheet !" msgstr "" +"Você não pode modificar uma entrada em uma Planilha de Horas " +"Confirmada/Concluída!" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 @@ -1063,7 +1120,7 @@ msgstr "Confirmação" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:99 #, python-format msgid "Warning!" -msgstr "" +msgstr "Aviso!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,invoice_rate:0 @@ -1075,7 +1132,7 @@ msgstr "Taxa da Fatura" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erro de Usuário!" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.day:0 @@ -1090,7 +1147,7 @@ msgstr "Aprovar" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,account_ids:0 diff --git a/addons/hr_timesheet_sheet/i18n/ro.po b/addons/hr_timesheet_sheet/i18n/ro.po index 06a82699326..940f96560eb 100644 --- a/addons/hr_timesheet_sheet/i18n/ro.po +++ b/addons/hr_timesheet_sheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ru.po b/addons/hr_timesheet_sheet/i18n/ru.po index bd2a25027dd..4b7f5d5551a 100644 --- a/addons/hr_timesheet_sheet/i18n/ru.po +++ b/addons/hr_timesheet_sheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sl.po b/addons/hr_timesheet_sheet/i18n/sl.po index 638bacb6c8b..c8892712700 100644 --- a/addons/hr_timesheet_sheet/i18n/sl.po +++ b/addons/hr_timesheet_sheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sq.po b/addons/hr_timesheet_sheet/i18n/sq.po index 4eb54073724..27cff1ea895 100644 --- a/addons/hr_timesheet_sheet/i18n/sq.po +++ b/addons/hr_timesheet_sheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sv.po b/addons/hr_timesheet_sheet/i18n/sv.po index 8d8b9f4fdea..46ffd9846b5 100644 --- a/addons/hr_timesheet_sheet/i18n/sv.po +++ b/addons/hr_timesheet_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tlh.po b/addons/hr_timesheet_sheet/i18n/tlh.po index ee86e8c3e4e..037c735a8c4 100644 --- a/addons/hr_timesheet_sheet/i18n/tlh.po +++ b/addons/hr_timesheet_sheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index a241ba270bc..7e5e759e52e 100644 --- a/addons/hr_timesheet_sheet/i18n/tr.po +++ b/addons/hr_timesheet_sheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/uk.po b/addons/hr_timesheet_sheet/i18n/uk.po index e73d4cb1dff..f9d82ca3814 100644 --- a/addons/hr_timesheet_sheet/i18n/uk.po +++ b/addons/hr_timesheet_sheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/vi.po b/addons/hr_timesheet_sheet/i18n/vi.po index dba20a9e3c8..6fde7b37701 100644 --- a/addons/hr_timesheet_sheet/i18n/vi.po +++ b/addons/hr_timesheet_sheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index 55b4522651f..1876906bf15 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index bce6d7ed481..8cf1cb44853 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:17+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/idea/i18n/ar.po b/addons/idea/i18n/ar.po index b643a067826..4d1cee8f237 100644 --- a/addons/idea/i18n/ar.po +++ b/addons/idea/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bg.po b/addons/idea/i18n/bg.po index 891341b5954..931066eaf90 100644 --- a/addons/idea/i18n/bg.po +++ b/addons/idea/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bs.po b/addons/idea/i18n/bs.po index 6974fe9e1da..89d4b4703ed 100644 --- a/addons/idea/i18n/bs.po +++ b/addons/idea/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ca.po b/addons/idea/i18n/ca.po index d3a379f93ad..96ddca4158f 100644 --- a/addons/idea/i18n/ca.po +++ b/addons/idea/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/cs.po b/addons/idea/i18n/cs.po index 6ce4dcaeb5c..86d361ee5f9 100644 --- a/addons/idea/i18n/cs.po +++ b/addons/idea/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/da.po b/addons/idea/i18n/da.po index 1fddaec593d..360d2364927 100644 --- a/addons/idea/i18n/da.po +++ b/addons/idea/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/de.po b/addons/idea/i18n/de.po index 5c4ab34f112..3c870bb879e 100644 --- a/addons/idea/i18n/de.po +++ b/addons/idea/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/el.po b/addons/idea/i18n/el.po index b151ff751bc..c2a2ad7d14a 100644 --- a/addons/idea/i18n/el.po +++ b/addons/idea/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/en_GB.po b/addons/idea/i18n/en_GB.po index 76149f0a719..d39aa4a7673 100644 --- a/addons/idea/i18n/en_GB.po +++ b/addons/idea/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es.po b/addons/idea/i18n/es.po index 35ba70daaaa..8b88c25de24 100644 --- a/addons/idea/i18n/es.po +++ b/addons/idea/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_AR.po b/addons/idea/i18n/es_AR.po index 05d2d6bd664..7b983c2e7af 100644 --- a/addons/idea/i18n/es_AR.po +++ b/addons/idea/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_CR.po b/addons/idea/i18n/es_CR.po index cad67229103..ec42d610bf4 100644 --- a/addons/idea/i18n/es_CR.po +++ b/addons/idea/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/et.po b/addons/idea/i18n/et.po index da90f23df5b..c352e76cc60 100644 --- a/addons/idea/i18n/et.po +++ b/addons/idea/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fi.po b/addons/idea/i18n/fi.po index c8c836ef985..b84fc3fbc4a 100644 --- a/addons/idea/i18n/fi.po +++ b/addons/idea/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fr.po b/addons/idea/i18n/fr.po index 4ad4998273c..52dde2118b2 100644 --- a/addons/idea/i18n/fr.po +++ b/addons/idea/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gl.po b/addons/idea/i18n/gl.po index 73383cbeb05..8432c3c26e5 100644 --- a/addons/idea/i18n/gl.po +++ b/addons/idea/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gu.po b/addons/idea/i18n/gu.po index 9e430729bf9..2b655b8605f 100644 --- a/addons/idea/i18n/gu.po +++ b/addons/idea/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hi.po b/addons/idea/i18n/hi.po index aa3c2aded8b..42fb60231c2 100644 --- a/addons/idea/i18n/hi.po +++ b/addons/idea/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hr.po b/addons/idea/i18n/hr.po index dcfcc3712aa..1940ff7a735 100644 --- a/addons/idea/i18n/hr.po +++ b/addons/idea/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hu.po b/addons/idea/i18n/hu.po index e40bec59e88..734e480cffa 100644 --- a/addons/idea/i18n/hu.po +++ b/addons/idea/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/id.po b/addons/idea/i18n/id.po index a5db400a518..d2ca436c0f3 100644 --- a/addons/idea/i18n/id.po +++ b/addons/idea/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/it.po b/addons/idea/i18n/it.po index f7af5b172eb..76e195e4ce6 100644 --- a/addons/idea/i18n/it.po +++ b/addons/idea/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ja.po b/addons/idea/i18n/ja.po index e45994cfbba..50fa432f020 100644 --- a/addons/idea/i18n/ja.po +++ b/addons/idea/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ko.po b/addons/idea/i18n/ko.po index 5fccfe136bc..57269ad6a2b 100644 --- a/addons/idea/i18n/ko.po +++ b/addons/idea/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lt.po b/addons/idea/i18n/lt.po index 7cd9a93ac38..64b39efacbf 100644 --- a/addons/idea/i18n/lt.po +++ b/addons/idea/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lv.po b/addons/idea/i18n/lv.po index bc5ef9b8556..8e96df40efc 100644 --- a/addons/idea/i18n/lv.po +++ b/addons/idea/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/mn.po b/addons/idea/i18n/mn.po index 6e7ded70ae1..9e2deee4353 100644 --- a/addons/idea/i18n/mn.po +++ b/addons/idea/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/nl.po b/addons/idea/i18n/nl.po index 4ff87df2c41..8f718a03ed6 100644 --- a/addons/idea/i18n/nl.po +++ b/addons/idea/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pl.po b/addons/idea/i18n/pl.po index 5d44cacfe0d..b62a82dc574 100644 --- a/addons/idea/i18n/pl.po +++ b/addons/idea/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pt.po b/addons/idea/i18n/pt.po index 9925575e87e..4bc4e65c647 100644 --- a/addons/idea/i18n/pt.po +++ b/addons/idea/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-01-17 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: idea diff --git a/addons/idea/i18n/pt_BR.po b/addons/idea/i18n/pt_BR.po index a3cc51c4204..5203e35f382 100644 --- a/addons/idea/i18n/pt_BR.po +++ b/addons/idea/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ro.po b/addons/idea/i18n/ro.po index 8e0b8021c44..307c0777959 100644 --- a/addons/idea/i18n/ro.po +++ b/addons/idea/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ru.po b/addons/idea/i18n/ru.po index 9ff3d2b2cda..86d6f9fa5e3 100644 --- a/addons/idea/i18n/ru.po +++ b/addons/idea/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 09:59+0000\n" +"Last-Translator: Эдуард \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 @@ -26,12 +26,12 @@ msgstr "Категория" #. module: idea #: view:idea.idea:0 msgid "In Progress" -msgstr "" +msgstr "В процессе" #. module: idea #: view:idea.idea:0 msgid "By States" -msgstr "" +msgstr "По состоянию" #. module: idea #: sql_constraint:idea.category:0 @@ -41,7 +41,7 @@ msgstr "Название категории должно быть уникаль #. module: idea #: view:idea.idea:0 msgid "By Idea Category" -msgstr "" +msgstr "По категориям" #. module: idea #: model:ir.model,name:idea.model_idea_category @@ -61,18 +61,18 @@ msgstr "Группировать по .." #. module: idea #: field:idea.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Название категории" #. module: idea #: view:idea.idea:0 #: selection:idea.idea,state:0 msgid "New" -msgstr "" +msgstr "Создать" #. module: idea #: view:idea.idea:0 msgid "New Ideas" -msgstr "" +msgstr "Новые идеи" #. module: idea #: view:idea.idea:0 @@ -88,7 +88,7 @@ msgstr "" #. module: idea #: view:idea.idea:0 msgid "Accepted Ideas" -msgstr "" +msgstr "Принятые идеи" #. module: idea #: field:idea.idea,category_ids:0 diff --git a/addons/idea/i18n/sk.po b/addons/idea/i18n/sk.po index 367ffc871f5..e55c594178b 100644 --- a/addons/idea/i18n/sk.po +++ b/addons/idea/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sl.po b/addons/idea/i18n/sl.po index 8b4aa81cd75..407dfe36ccd 100644 --- a/addons/idea/i18n/sl.po +++ b/addons/idea/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sq.po b/addons/idea/i18n/sq.po index 943a554197b..8f707948462 100644 --- a/addons/idea/i18n/sq.po +++ b/addons/idea/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sr@latin.po b/addons/idea/i18n/sr@latin.po index be62f11765a..4e074d7db86 100644 --- a/addons/idea/i18n/sr@latin.po +++ b/addons/idea/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sv.po b/addons/idea/i18n/sv.po index 5b5f6ab4643..47351f103af 100644 --- a/addons/idea/i18n/sv.po +++ b/addons/idea/i18n/sv.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 23:22+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 @@ -26,27 +26,27 @@ msgstr "Kategori" #. module: idea #: view:idea.idea:0 msgid "In Progress" -msgstr "Pågår" +msgstr "Pågående" #. module: idea #: view:idea.idea:0 msgid "By States" -msgstr "Genom Status" +msgstr "Efter status" #. module: idea #: sql_constraint:idea.category:0 msgid "The name of the category must be unique" -msgstr "Namnet på idén måste vara unikt" +msgstr "Kategorins namn måste vara unikt" #. module: idea #: view:idea.idea:0 msgid "By Idea Category" -msgstr "Genom idékategori" +msgstr "Efter idékategori" #. module: idea #: model:ir.model,name:idea.model_idea_category msgid "Idea Category" -msgstr "Idé kategori" +msgstr "Idékategori" #. module: idea #: view:idea.idea:0 @@ -56,12 +56,12 @@ msgstr "Öppna idéer" #. module: idea #: view:idea.idea:0 msgid "Group By..." -msgstr "Gruppera efter" +msgstr "Gruppera efter..." #. module: idea #: field:idea.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Kategorinamn" #. module: idea #: view:idea.idea:0 @@ -83,7 +83,7 @@ msgstr "" #. module: idea #: sql_constraint:idea.idea:0 msgid "The name of the idea must be unique" -msgstr "" +msgstr "Idéns namn måste vara unikt" #. module: idea #: view:idea.idea:0 @@ -93,27 +93,27 @@ msgstr "Godtagna idéer" #. module: idea #: field:idea.idea,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiketter" #. module: idea #: field:idea.idea,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olästa meddelanden" #. module: idea #: help:idea.idea,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Meddelande- och kommunikationshistorik" #. module: idea #: field:idea.idea,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: idea #: model:ir.model,name:idea.model_idea_idea msgid "Email Thread" -msgstr "" +msgstr "E-posttråd" #. module: idea #: view:idea.idea:0 @@ -148,7 +148,7 @@ msgstr "Idéer" #. module: idea #: field:idea.idea,name:0 msgid "Idea Summary" -msgstr "idéSammanfattning" +msgstr "Idésammanfattning" #. module: idea #: view:idea.category:0 @@ -184,7 +184,7 @@ msgstr "Skapare" #. module: idea #: view:idea.idea:0 msgid "Open" -msgstr "öppna" +msgstr "Öppna" #. module: idea #: view:idea.idea:0 @@ -194,7 +194,7 @@ msgstr "Idé" #. module: idea #: view:idea.idea:0 msgid "Accept" -msgstr "Acceptera" +msgstr "Godkänn" #. module: idea #: help:idea.idea,message_summary:0 @@ -206,22 +206,22 @@ msgstr "" #. module: idea #: selection:idea.idea,state:0 msgid "Done" -msgstr "" +msgstr "Klar" #. module: idea #: view:idea.idea:0 msgid "By Creators" -msgstr "Genom Skapare" +msgstr "Efter skapare" #. module: idea #: field:idea.idea,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: idea #: view:idea.category:0 msgid "Category of Ideas" -msgstr "" +msgstr "Kategori av idéer" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tlh.po b/addons/idea/i18n/tlh.po index 341de7dd6d9..9109b59aec2 100644 --- a/addons/idea/i18n/tlh.po +++ b/addons/idea/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tr.po b/addons/idea/i18n/tr.po index 3ffe37cbdbf..a5992a41120 100644 --- a/addons/idea/i18n/tr.po +++ b/addons/idea/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/uk.po b/addons/idea/i18n/uk.po index 128205bec7c..3ae696199ff 100644 --- a/addons/idea/i18n/uk.po +++ b/addons/idea/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/vi.po b/addons/idea/i18n/vi.po index 43a55df6330..45ce30f97fc 100644 --- a/addons/idea/i18n/vi.po +++ b/addons/idea/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index 4b47d17cae4..68ca1e1a01f 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_TW.po b/addons/idea/i18n/zh_TW.po index 191f6397215..f39c8f358d1 100644 --- a/addons/idea/i18n/zh_TW.po +++ b/addons/idea/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index 551d38aeaa7..d2af8e8b189 100644 --- a/addons/knowledge/i18n/ar.po +++ b/addons/knowledge/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index 5ea3afebe40..b0cc746b5b4 100644 --- a/addons/knowledge/i18n/bg.po +++ b/addons/knowledge/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index d41d9d95279..f82d0bdf1cb 100644 --- a/addons/knowledge/i18n/ca.po +++ b/addons/knowledge/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index 50598a84798..f00722989da 100644 --- a/addons/knowledge/i18n/cs.po +++ b/addons/knowledge/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 636b3e698d9..217f85f92e3 100644 --- a/addons/knowledge/i18n/da.po +++ b/addons/knowledge/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index c1602c272c6..bfc5e43e5b1 100644 --- a/addons/knowledge/i18n/de.po +++ b/addons/knowledge/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/en_GB.po b/addons/knowledge/i18n/en_GB.po index 86721f904a8..d9a864d7f0e 100644 --- a/addons/knowledge/i18n/en_GB.po +++ b/addons/knowledge/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index a2eed88d991..277227d2e80 100644 --- a/addons/knowledge/i18n/es.po +++ b/addons/knowledge/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_AR.po b/addons/knowledge/i18n/es_AR.po index fe967de0310..eb472b96cc9 100644 --- a/addons/knowledge/i18n/es_AR.po +++ b/addons/knowledge/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_CR.po b/addons/knowledge/i18n/es_CR.po index 8d654482a0f..71c3476f1e6 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index 05417e91406..dedb0f77b50 100644 --- a/addons/knowledge/i18n/et.po +++ b/addons/knowledge/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index 043350ff8a0..b796ed7e388 100644 --- a/addons/knowledge/i18n/fi.po +++ b/addons/knowledge/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index 3b0f4876a65..1e822e7f337 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index e412a7ae4db..95e3dd2d4d7 100644 --- a/addons/knowledge/i18n/gl.po +++ b/addons/knowledge/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index 447e30d9876..325319d57c2 100644 --- a/addons/knowledge/i18n/hi.po +++ b/addons/knowledge/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index badbf00c89b..2bfdd9115dd 100644 --- a/addons/knowledge/i18n/hr.po +++ b/addons/knowledge/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index 83c5e9ac384..20c3977c0e3 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index 6c82b9cb51d..fb60dfbbd84 100644 --- a/addons/knowledge/i18n/it.po +++ b/addons/knowledge/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index 8c9fb41d96a..551d8e8e2c4 100644 --- a/addons/knowledge/i18n/ja.po +++ b/addons/knowledge/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index 59a16b4d8a3..69c6f3eaef7 100644 --- a/addons/knowledge/i18n/lo.po +++ b/addons/knowledge/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index 621b5f3bea8..4336688c87d 100644 --- a/addons/knowledge/i18n/lv.po +++ b/addons/knowledge/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index e6e699ff575..3aef3b8c193 100644 --- a/addons/knowledge/i18n/mn.po +++ b/addons/knowledge/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index c03b6175838..955bbf97869 100644 --- a/addons/knowledge/i18n/nb.po +++ b/addons/knowledge/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index addd14466a4..6b75d07a22c 100644 --- a/addons/knowledge/i18n/nl.po +++ b/addons/knowledge/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl_BE.po b/addons/knowledge/i18n/nl_BE.po index aaab8ae2216..eacc6ae0892 100644 --- a/addons/knowledge/i18n/nl_BE.po +++ b/addons/knowledge/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 8cac6563317..a30865321a7 100644 --- a/addons/knowledge/i18n/pl.po +++ b/addons/knowledge/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index e069804c118..f45649ac63f 100644 --- a/addons/knowledge/i18n/pt.po +++ b/addons/knowledge/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt_BR.po b/addons/knowledge/i18n/pt_BR.po index a3a460699a2..2bd0173e79c 100644 --- a/addons/knowledge/i18n/pt_BR.po +++ b/addons/knowledge/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index 3a8b686a791..c90f82bb32c 100644 --- a/addons/knowledge/i18n/ro.po +++ b/addons/knowledge/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 1537a306e0b..6d8a99c0342 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/i18n/ru.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-17 10:05+0000\n" +"Last-Translator: Эдуард \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Documents" -msgstr "" +msgstr "Документы" #. module: knowledge #: model:ir.model,name:knowledge.model_knowledge_config_settings @@ -33,11 +33,13 @@ msgid "" "Access your documents in OpenERP through WebDAV.\n" " This installs the module document_webdav." msgstr "" +"Доступ к документам в OpenERP через WebDAV.\n" +" Это установит модуль document_webdav." #. module: knowledge #: help:knowledge.config.settings,module_document_page:0 msgid "This installs the module document_page." -msgstr "" +msgstr "Это установит модуль document_page." #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 @@ -48,12 +50,12 @@ msgstr "Совместное содержание" #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: view:knowledge.config.settings:0 msgid "Configure Knowledge" -msgstr "" +msgstr "Настройка знаний" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Knowledge and Documents Management" -msgstr "" +msgstr "Управление знаниями и документами" #. module: knowledge #: help:knowledge.config.settings,module_document:0 @@ -67,17 +69,17 @@ msgstr "" #. module: knowledge #: field:knowledge.config.settings,module_document_page:0 msgid "Create static web pages" -msgstr "" +msgstr "Создать статичные веб-страницы" #. module: knowledge #: field:knowledge.config.settings,module_document_ftp:0 msgid "Share repositories (FTP)" -msgstr "" +msgstr "Открыть доступ к репозиториям (FTP)" #. module: knowledge #: field:knowledge.config.settings,module_document:0 msgid "Manage documents" -msgstr "" +msgstr "Управлять документами" #. module: knowledge #: view:knowledge.config.settings:0 @@ -87,12 +89,12 @@ msgstr "" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document_configuration msgid "Configuration" -msgstr "Параметры" +msgstr "Настройка" #. module: knowledge #: help:knowledge.config.settings,module_document_ftp:0 @@ -104,7 +106,7 @@ msgstr "" #. module: knowledge #: view:knowledge.config.settings:0 msgid "or" -msgstr "" +msgstr "или" #. module: knowledge #: field:knowledge.config.settings,module_document_webdav:0 diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index 2fdb4f25a33..8ecf0537609 100644 --- a/addons/knowledge/i18n/sk.po +++ b/addons/knowledge/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index 5421e9f1470..fceeb72c0e3 100644 --- a/addons/knowledge/i18n/sl.po +++ b/addons/knowledge/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-28 18:09+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index 9e6d131b9fd..f2ca59b6950 100644 --- a/addons/knowledge/i18n/sr.po +++ b/addons/knowledge/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr@latin.po b/addons/knowledge/i18n/sr@latin.po index ace70d9a73e..02e85d90454 100644 --- a/addons/knowledge/i18n/sr@latin.po +++ b/addons/knowledge/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index 552a7cbc058..f84a76be4b6 100644 --- a/addons/knowledge/i18n/sv.po +++ b/addons/knowledge/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 064de100471..12b6d0da165 100644 --- a/addons/knowledge/i18n/tr.po +++ b/addons/knowledge/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 463bb741204..e147bf62d06 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_TW.po b/addons/knowledge/i18n/zh_TW.po index 1cb9266610c..0a53196da98 100644 --- a/addons/knowledge/i18n/zh_TW.po +++ b/addons/knowledge/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/l10n_ar/i18n/es.po b/addons/l10n_ar/i18n/es.po index 6c6ab0d570a..fb4d07742b9 100644 --- a/addons/l10n_ar/i18n/es.po +++ b/addons/l10n_ar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/es_AR.po b/addons/l10n_ar/i18n/es_AR.po index 04466c861a7..45cf1090137 100644 --- a/addons/l10n_ar/i18n/es_AR.po +++ b/addons/l10n_ar/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/pt.po b/addons/l10n_ar/i18n/pt.po index e62b4336f96..5f83f7858ab 100644 --- a/addons/l10n_ar/i18n/pt.po +++ b/addons/l10n_ar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/sl.po b/addons/l10n_ar/i18n/sl.po index fbad8c1de3f..5d0ee254b19 100644 --- a/addons/l10n_ar/i18n/sl.po +++ b/addons/l10n_ar/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 12:04+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/zh_CN.po b/addons/l10n_ar/i18n/zh_CN.po index e76027224e0..01f66153dd3 100644 --- a/addons/l10n_ar/i18n/zh_CN.po +++ b/addons/l10n_ar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_be/i18n/ar.po b/addons/l10n_be/i18n/ar.po index ba3c33403f8..4fe9410e06d 100644 --- a/addons/l10n_be/i18n/ar.po +++ b/addons/l10n_be/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bg.po b/addons/l10n_be/i18n/bg.po index f183426fe9b..5180398ee30 100644 --- a/addons/l10n_be/i18n/bg.po +++ b/addons/l10n_be/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bs.po b/addons/l10n_be/i18n/bs.po index aa01d4fd33d..0ba55f560fe 100644 --- a/addons/l10n_be/i18n/bs.po +++ b/addons/l10n_be/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ca.po b/addons/l10n_be/i18n/ca.po index 846c23cc0ee..0f3451b16eb 100644 --- a/addons/l10n_be/i18n/ca.po +++ b/addons/l10n_be/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/cs.po b/addons/l10n_be/i18n/cs.po index 1253a8dd31d..8e96f8bddbb 100644 --- a/addons/l10n_be/i18n/cs.po +++ b/addons/l10n_be/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/da.po b/addons/l10n_be/i18n/da.po index 2f6a328ff5a..d1bf5d98386 100644 --- a/addons/l10n_be/i18n/da.po +++ b/addons/l10n_be/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/de.po b/addons/l10n_be/i18n/de.po index 6125d72b009..91a61bad9ee 100644 --- a/addons/l10n_be/i18n/de.po +++ b/addons/l10n_be/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/en_GB.po b/addons/l10n_be/i18n/en_GB.po index b84f689ca64..dd144e972f3 100644 --- a/addons/l10n_be/i18n/en_GB.po +++ b/addons/l10n_be/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es.po b/addons/l10n_be/i18n/es.po index 1347af25805..f9d60bcbfb1 100644 --- a/addons/l10n_be/i18n/es.po +++ b/addons/l10n_be/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_AR.po b/addons/l10n_be/i18n/es_AR.po index f505137c337..2fa57e505d4 100644 --- a/addons/l10n_be/i18n/es_AR.po +++ b/addons/l10n_be/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_CR.po b/addons/l10n_be/i18n/es_CR.po index 37f7518b444..69acddb7d63 100644 --- a/addons/l10n_be/i18n/es_CR.po +++ b/addons/l10n_be/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/et.po b/addons/l10n_be/i18n/et.po index fe14c316e9f..2e21bf7fbca 100644 --- a/addons/l10n_be/i18n/et.po +++ b/addons/l10n_be/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fi.po b/addons/l10n_be/i18n/fi.po index 06d5903d44e..29d42b5fe48 100644 --- a/addons/l10n_be/i18n/fi.po +++ b/addons/l10n_be/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fr.po b/addons/l10n_be/i18n/fr.po index 16906497ae2..b1b9915af05 100644 --- a/addons/l10n_be/i18n/fr.po +++ b/addons/l10n_be/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/gl.po b/addons/l10n_be/i18n/gl.po index 108397f553d..9b043afbfd5 100644 --- a/addons/l10n_be/i18n/gl.po +++ b/addons/l10n_be/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hr.po b/addons/l10n_be/i18n/hr.po index 46babbfb4c8..90ec06ece3b 100644 --- a/addons/l10n_be/i18n/hr.po +++ b/addons/l10n_be/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hu.po b/addons/l10n_be/i18n/hu.po index 0155685f0da..4542dbbcfa9 100644 --- a/addons/l10n_be/i18n/hu.po +++ b/addons/l10n_be/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/id.po b/addons/l10n_be/i18n/id.po index 642ac35260d..329072e01c0 100644 --- a/addons/l10n_be/i18n/id.po +++ b/addons/l10n_be/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/it.po b/addons/l10n_be/i18n/it.po index b235cce108b..302daf450bc 100644 --- a/addons/l10n_be/i18n/it.po +++ b/addons/l10n_be/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ja.po b/addons/l10n_be/i18n/ja.po index 70d8ab65718..67d68fd8490 100644 --- a/addons/l10n_be/i18n/ja.po +++ b/addons/l10n_be/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ko.po b/addons/l10n_be/i18n/ko.po index e9a6b3a9119..7bc27d01732 100644 --- a/addons/l10n_be/i18n/ko.po +++ b/addons/l10n_be/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/lt.po b/addons/l10n_be/i18n/lt.po index ed1ed7be7af..b1a6fe5d2a7 100644 --- a/addons/l10n_be/i18n/lt.po +++ b/addons/l10n_be/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl.po b/addons/l10n_be/i18n/nl.po index 9ce0283b838..d0517d908ae 100644 --- a/addons/l10n_be/i18n/nl.po +++ b/addons/l10n_be/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl_BE.po b/addons/l10n_be/i18n/nl_BE.po index dd2870ca07a..3551d815069 100644 --- a/addons/l10n_be/i18n/nl_BE.po +++ b/addons/l10n_be/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pl.po b/addons/l10n_be/i18n/pl.po index 877b2779cd7..baf696bf113 100644 --- a/addons/l10n_be/i18n/pl.po +++ b/addons/l10n_be/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt.po b/addons/l10n_be/i18n/pt.po index 179c71d3029..66136b18fba 100644 --- a/addons/l10n_be/i18n/pt.po +++ b/addons/l10n_be/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index 22aa9134e42..61f23844542 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ro.po b/addons/l10n_be/i18n/ro.po index eaf2014949b..7ad3799dfaa 100644 --- a/addons/l10n_be/i18n/ro.po +++ b/addons/l10n_be/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ru.po b/addons/l10n_be/i18n/ru.po index 9d0ac4c2dab..abbc74b1de4 100644 --- a/addons/l10n_be/i18n/ru.po +++ b/addons/l10n_be/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sl.po b/addons/l10n_be/i18n/sl.po index 9732f2e9b86..8780c12f850 100644 --- a/addons/l10n_be/i18n/sl.po +++ b/addons/l10n_be/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 12:54+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sq.po b/addons/l10n_be/i18n/sq.po index 4fe3357325a..a41c48e6f75 100644 --- a/addons/l10n_be/i18n/sq.po +++ b/addons/l10n_be/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sr@latin.po b/addons/l10n_be/i18n/sr@latin.po index 4f29fa3781c..a15ac9633df 100644 --- a/addons/l10n_be/i18n/sr@latin.po +++ b/addons/l10n_be/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sv.po b/addons/l10n_be/i18n/sv.po index 46911b8eee7..d7ea21414d8 100644 --- a/addons/l10n_be/i18n/sv.po +++ b/addons/l10n_be/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tlh.po b/addons/l10n_be/i18n/tlh.po index 03b8d6a3ff2..15dc14eee2a 100644 --- a/addons/l10n_be/i18n/tlh.po +++ b/addons/l10n_be/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tr.po b/addons/l10n_be/i18n/tr.po index 19b8e5bf636..4c29d0ba7d5 100644 --- a/addons/l10n_be/i18n/tr.po +++ b/addons/l10n_be/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/uk.po b/addons/l10n_be/i18n/uk.po index 6f803102d53..8d490aa5923 100644 --- a/addons/l10n_be/i18n/uk.po +++ b/addons/l10n_be/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/vi.po b/addons/l10n_be/i18n/vi.po index 477b664d6ac..3808e2b08d5 100644 --- a/addons/l10n_be/i18n/vi.po +++ b/addons/l10n_be/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_CN.po b/addons/l10n_be/i18n/zh_CN.po index cffbe52f8d5..17b8589b5ef 100644 --- a/addons/l10n_be/i18n/zh_CN.po +++ b/addons/l10n_be/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_TW.po b/addons/l10n_be/i18n/zh_TW.po index 6b143e48ae0..b01784a411e 100644 --- a/addons/l10n_be/i18n/zh_TW.po +++ b/addons/l10n_be/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index 4fd3404d802..13fb58af2b5 100644 --- a/addons/l10n_be_coda/i18n/ar.po +++ b/addons/l10n_be_coda/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/bg.po b/addons/l10n_be_coda/i18n/bg.po index 3f2fdbd8ca2..f8485acd776 100644 --- a/addons/l10n_be_coda/i18n/bg.po +++ b/addons/l10n_be_coda/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ca.po b/addons/l10n_be_coda/i18n/ca.po index c34e9b42937..fa3cebb2c08 100644 --- a/addons/l10n_be_coda/i18n/ca.po +++ b/addons/l10n_be_coda/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/da.po b/addons/l10n_be_coda/i18n/da.po index af8f42e29b5..e605a9982e5 100644 --- a/addons/l10n_be_coda/i18n/da.po +++ b/addons/l10n_be_coda/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/de.po b/addons/l10n_be_coda/i18n/de.po index 67e4f4bfda3..43d23a6d87a 100644 --- a/addons/l10n_be_coda/i18n/de.po +++ b/addons/l10n_be_coda/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/el.po b/addons/l10n_be_coda/i18n/el.po index ed4ad6343cf..cf2748e3f54 100644 --- a/addons/l10n_be_coda/i18n/el.po +++ b/addons/l10n_be_coda/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_AU.po b/addons/l10n_be_coda/i18n/en_AU.po index 495f9b06e7a..aac8a468e65 100644 --- a/addons/l10n_be_coda/i18n/en_AU.po +++ b/addons/l10n_be_coda/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_GB.po b/addons/l10n_be_coda/i18n/en_GB.po index 3e8014ad490..93a64a65274 100644 --- a/addons/l10n_be_coda/i18n/en_GB.po +++ b/addons/l10n_be_coda/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es.po b/addons/l10n_be_coda/i18n/es.po index 7e5cfa3fd77..727105c3728 100644 --- a/addons/l10n_be_coda/i18n/es.po +++ b/addons/l10n_be_coda/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -25,57 +25,58 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_412 msgid "Advice of expiry charges" -msgstr "" +msgstr "Aviso de cargos expirados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_11 msgid "Your purchase of luncheon vouchers" -msgstr "" +msgstr "Su compra de vales de comida" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_05 msgid "Partial payment subscription" -msgstr "" +msgstr "Suscripción de pago parcial" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_54 msgid "Unexecutable transfer order" -msgstr "" +msgstr "Orden de transferencia no ejecutable" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_02 msgid "Individual transfer order initiated by the bank" -msgstr "" +msgstr "Orden de transferencia individual iniciada por el banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 msgid "Charges for preparing pay packets" -msgstr "" +msgstr "Los cargos por la preparación de los paquetes salariales" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_9 msgid "Detail of 7. The records in a separate application keep type 9." msgstr "" +"Detalle de 7. Los registros en una solicitud separada mantienen el tipo 9." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_426 msgid "Belgian broker's commission" -msgstr "" +msgstr "Comisión del corredor belga" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_031 msgid "Charges foreign cheque" -msgstr "" +msgstr "Cargos de cheque al extranjero" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_002 msgid "Interest paid" -msgstr "" +msgstr "Intereses pagados" #. module: l10n_be_coda #: field:account.coda.trans.type,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Padre" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_62 @@ -83,47 +84,49 @@ msgid "" "cheques debited on account, but debit cancelled afterwards for lack of cover " "(double debit/contra-entry of transaction 01 or 05)" msgstr "" +"cheques adeudados en cuenta, pero cancelados después por falta de cobertura " +"(doble débito/contrapartida en la transacción 01 o 05)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_05 msgid "Bill claimed back" -msgstr "" +msgstr "Facturas reclamadas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_016 msgid "BLIW/IBLC dues" -msgstr "" +msgstr "Cuotas BLIW/IBLC" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:909 #, python-format msgid "CODA File is Imported :" -msgstr "" +msgstr "El archivo CODA se ha importado:" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_066 msgid "Fixed loan advance - reimbursement" -msgstr "" +msgstr "Avance de préstamo fijo - reembolso" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_05 msgid "Purchase of foreign bank notes" -msgstr "" +msgstr "Compra de billetes de banco extranjeros" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_030 msgid "Account insurance" -msgstr "" +msgstr "Seguro de cuenta" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_042 msgid "Payment card costs" -msgstr "" +msgstr "Costes de la tarjeta de crédito" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_212 msgid "Warehousing fee" -msgstr "" +msgstr "Cuota de mantenimiento" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:278 @@ -133,21 +136,23 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Family : %s." msgstr "" +"\n" +"El archivo contiene una familia de transacción CODA no válida: %s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_66 msgid "Financial centralization" -msgstr "" +msgstr "Centralización financiera" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_420 msgid "Retention charges" -msgstr "" +msgstr "Cargos de retención" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_50 msgid "Transfer in your favour" -msgstr "" +msgstr "Transferencia a su favor" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_87 @@ -163,37 +168,37 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_87 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_87 msgid "Reimbursement of costs" -msgstr "" +msgstr "Reembolso de los costes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_56 msgid "Remittance of supplier's bill with guarantee" -msgstr "" +msgstr "Envío de factura del proveedor con garantía" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_002 msgid "Communication of the bank" -msgstr "" +msgstr "Comunicación del banco" #. module: l10n_be_coda #: field:coda.bank.statement.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Importe" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_70 msgid "Only with stockbrokers when they deliver the securities to the bank" -msgstr "" +msgstr "Sólo con corredores de bolsa cuando entregan los valores al banco" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_413 msgid "Acceptance charges" -msgstr "" +msgstr "Cargos de aceptación" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_bic:0 msgid "Counterparty BIC" -msgstr "" +msgstr "BIC de la contrapartida" #. module: l10n_be_coda #: help:coda.bank.account,def_receivable:0 @@ -201,6 +206,8 @@ msgid "" "Set here the receivable account that will be used, by default, if the " "partner is not found." msgstr "" +"Establezca aquí la cuenta de ingresos que se usará por defecto si no se " +"encuentra la empresa." #. module: l10n_be_coda #: help:coda.bank.account,def_payable:0 @@ -208,33 +215,35 @@ msgid "" "Set here the payable account that will be used, by default, if the partner " "is not found." msgstr "" +"Establezca aquí la cuenta de gastos que se usará por defecto si no se " +"encuentra la empresa." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_39 msgid "Return of an irregular bill of exchange" -msgstr "" +msgstr "Devolución de una letra de cambio irregular" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_011 msgid "VAT" -msgstr "" +msgstr "IVA" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_09 msgid "Debit of the agios to the account of the drawee" -msgstr "" +msgstr "Débito de los agios en la cuenta del librado" #. module: l10n_be_coda #: view:account.coda.comm.type:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_comm_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_comm_type_form msgid "CODA Structured Communication Types" -msgstr "" +msgstr "Tipos de comunicación estructurada CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_50 msgid "Spot sale of foreign exchange" -msgstr "" +msgstr "Punto de venta de divisas" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:321 @@ -244,6 +253,11 @@ msgid "" "CODA parsing error on movement data record 2.2, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Error de análisis CODE en el registro de datos de movimientos 2.2, nº de " +"secuencia %s.\n" +"Por favor, informe de esta incidencia a través de su canal de soporte " +"OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_58 diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index ebd5a5c7f27..27b1e42c006 100644 --- a/addons/l10n_be_coda/i18n/es_CR.po +++ b/addons/l10n_be_coda/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index ba5fbff2a97..b970c380876 100644 --- a/addons/l10n_be_coda/i18n/es_EC.po +++ b/addons/l10n_be_coda/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_PY.po b/addons/l10n_be_coda/i18n/es_PY.po index 85d6915d934..4c9d0557a81 100644 --- a/addons/l10n_be_coda/i18n/es_PY.po +++ b/addons/l10n_be_coda/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/et.po b/addons/l10n_be_coda/i18n/et.po index db049f5432b..1b7287a6e37 100644 --- a/addons/l10n_be_coda/i18n/et.po +++ b/addons/l10n_be_coda/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fa.po b/addons/l10n_be_coda/i18n/fa.po index fe612fb63f9..26643c8daf4 100644 --- a/addons/l10n_be_coda/i18n/fa.po +++ b/addons/l10n_be_coda/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fi.po b/addons/l10n_be_coda/i18n/fi.po index c9f171549bc..1c5c061ce19 100644 --- a/addons/l10n_be_coda/i18n/fi.po +++ b/addons/l10n_be_coda/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fr.po b/addons/l10n_be_coda/i18n/fr.po index 92c39d0aee0..e23210792b3 100644 --- a/addons/l10n_be_coda/i18n/fr.po +++ b/addons/l10n_be_coda/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index e716f611a22..a58cf84d3ff 100644 --- a/addons/l10n_be_coda/i18n/gl.po +++ b/addons/l10n_be_coda/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hr.po b/addons/l10n_be_coda/i18n/hr.po index cfe26c1f345..cfb42ef5860 100644 --- a/addons/l10n_be_coda/i18n/hr.po +++ b/addons/l10n_be_coda/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hu.po b/addons/l10n_be_coda/i18n/hu.po index 4ffe06e01dd..d52674060ac 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/it.po b/addons/l10n_be_coda/i18n/it.po index 5eb482d7ece..7d3a2bb9d77 100644 --- a/addons/l10n_be_coda/i18n/it.po +++ b/addons/l10n_be_coda/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ja.po b/addons/l10n_be_coda/i18n/ja.po index 8131bf09e71..75fa8805f3b 100644 --- a/addons/l10n_be_coda/i18n/ja.po +++ b/addons/l10n_be_coda/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/lv.po b/addons/l10n_be_coda/i18n/lv.po index babaef337a9..fb4a4ed0e19 100644 --- a/addons/l10n_be_coda/i18n/lv.po +++ b/addons/l10n_be_coda/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mn.po b/addons/l10n_be_coda/i18n/mn.po index 86e7da1e551..c467f46169b 100644 --- a/addons/l10n_be_coda/i18n/mn.po +++ b/addons/l10n_be_coda/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nb.po b/addons/l10n_be_coda/i18n/nb.po index 4c1606d838c..8bd44a04faf 100644 --- a/addons/l10n_be_coda/i18n/nb.po +++ b/addons/l10n_be_coda/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl.po b/addons/l10n_be_coda/i18n/nl.po index 022eec08bfc..3ff2d59b218 100644 --- a/addons/l10n_be_coda/i18n/nl.po +++ b/addons/l10n_be_coda/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl_BE.po b/addons/l10n_be_coda/i18n/nl_BE.po index 4488b8ff9a3..4ffa5bdae6e 100644 --- a/addons/l10n_be_coda/i18n/nl_BE.po +++ b/addons/l10n_be_coda/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pl.po b/addons/l10n_be_coda/i18n/pl.po index e68bc529eea..60a4b70b906 100644 --- a/addons/l10n_be_coda/i18n/pl.po +++ b/addons/l10n_be_coda/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt.po b/addons/l10n_be_coda/i18n/pt.po index 85a98a10f61..8755a122114 100644 --- a/addons/l10n_be_coda/i18n/pt.po +++ b/addons/l10n_be_coda/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index 79d7aa03ac1..9e82cf52e3c 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 6777a0fd6e6..91326ec5e18 100644 --- a/addons/l10n_be_coda/i18n/ro.po +++ b/addons/l10n_be_coda/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ru.po b/addons/l10n_be_coda/i18n/ru.po index 254812c3f31..1cbd05b6026 100644 --- a/addons/l10n_be_coda/i18n/ru.po +++ b/addons/l10n_be_coda/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sl.po b/addons/l10n_be_coda/i18n/sl.po index ac4e55a99f6..2b82815d78d 100644 --- a/addons/l10n_be_coda/i18n/sl.po +++ b/addons/l10n_be_coda/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 10:45+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sq.po b/addons/l10n_be_coda/i18n/sq.po index 90981ba1659..8a686f0fe92 100644 --- a/addons/l10n_be_coda/i18n/sq.po +++ b/addons/l10n_be_coda/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr.po b/addons/l10n_be_coda/i18n/sr.po index 0dba9303bb2..e2453f52143 100644 --- a/addons/l10n_be_coda/i18n/sr.po +++ b/addons/l10n_be_coda/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr@latin.po b/addons/l10n_be_coda/i18n/sr@latin.po index 50b945b0655..9e067e5be8d 100644 --- a/addons/l10n_be_coda/i18n/sr@latin.po +++ b/addons/l10n_be_coda/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sv.po b/addons/l10n_be_coda/i18n/sv.po index db90aeb334b..5b83aea869d 100644 --- a/addons/l10n_be_coda/i18n/sv.po +++ b/addons/l10n_be_coda/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/tr.po b/addons/l10n_be_coda/i18n/tr.po index 4a6986040fa..d241819a066 100644 --- a/addons/l10n_be_coda/i18n/tr.po +++ b/addons/l10n_be_coda/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/vi.po b/addons/l10n_be_coda/i18n/vi.po index 4cc92e289b8..b42a367542c 100644 --- a/addons/l10n_be_coda/i18n/vi.po +++ b/addons/l10n_be_coda/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_CN.po b/addons/l10n_be_coda/i18n/zh_CN.po index aba133814a3..579e28cbd9c 100644 --- a/addons/l10n_be_coda/i18n/zh_CN.po +++ b/addons/l10n_be_coda/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_TW.po b/addons/l10n_be_coda/i18n/zh_TW.po index d214eed0f01..650b09e656b 100644 --- a/addons/l10n_be_coda/i18n/zh_TW.po +++ b/addons/l10n_be_coda/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_hr_payroll/i18n/de.po b/addons/l10n_be_hr_payroll/i18n/de.po index 4ebd8b75531..d7d7772e790 100644 --- a/addons/l10n_be_hr_payroll/i18n/de.po +++ b/addons/l10n_be_hr_payroll/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es.po b/addons/l10n_be_hr_payroll/i18n/es.po index db9c8a618dd..62a2d0a6a49 100644 --- a/addons/l10n_be_hr_payroll/i18n/es.po +++ b/addons/l10n_be_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index ae7c3f74fdc..f7495aa614d 100644 --- a/addons/l10n_be_hr_payroll/i18n/es_CR.po +++ b/addons/l10n_be_hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index 1eedcc43845..027cc074b3b 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index d8d65e7c4a9..ce456c56a07 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sl.po b/addons/l10n_be_hr_payroll/i18n/sl.po index cb559dfee8a..467e9ba28b9 100644 --- a/addons/l10n_be_hr_payroll/i18n/sl.po +++ b/addons/l10n_be_hr_payroll/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 10:47+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sr@latin.po b/addons/l10n_be_hr_payroll/i18n/sr@latin.po index 0d08d812675..d0133187dac 100644 --- a/addons/l10n_be_hr_payroll/i18n/sr@latin.po +++ b/addons/l10n_be_hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_invoice_bba/i18n/ar.po b/addons/l10n_be_invoice_bba/i18n/ar.po index 7c5ed5cbca4..1a2be34c2a6 100644 --- a/addons/l10n_be_invoice_bba/i18n/ar.po +++ b/addons/l10n_be_invoice_bba/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es.po b/addons/l10n_be_invoice_bba/i18n/es.po index 719a70172b5..251c3b8dc01 100644 --- a/addons/l10n_be_invoice_bba/i18n/es.po +++ b/addons/l10n_be_invoice_bba/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es_CR.po b/addons/l10n_be_invoice_bba/i18n/es_CR.po index 9565cf7ee0f..bf03641aa61 100644 --- a/addons/l10n_be_invoice_bba/i18n/es_CR.po +++ b/addons/l10n_be_invoice_bba/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/fr.po b/addons/l10n_be_invoice_bba/i18n/fr.po index 7ff04d23e84..c2ddf91a5b7 100644 --- a/addons/l10n_be_invoice_bba/i18n/fr.po +++ b/addons/l10n_be_invoice_bba/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nb.po b/addons/l10n_be_invoice_bba/i18n/nb.po index e4ee79f3072..6b378033b9e 100644 --- a/addons/l10n_be_invoice_bba/i18n/nb.po +++ b/addons/l10n_be_invoice_bba/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl.po b/addons/l10n_be_invoice_bba/i18n/nl.po index 28b1cf7fc65..0a01ee8607c 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl.po +++ b/addons/l10n_be_invoice_bba/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl_BE.po b/addons/l10n_be_invoice_bba/i18n/nl_BE.po index 4fc3cd40e5a..0c5c7ea1a37 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl_BE.po +++ b/addons/l10n_be_invoice_bba/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt.po b/addons/l10n_be_invoice_bba/i18n/pt.po index 9a8c834b8fa..bf125bb0b30 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt.po +++ b/addons/l10n_be_invoice_bba/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index 6197dd05830..d0894e1a920 100644 --- a/addons/l10n_be_invoice_bba/i18n/sl.po +++ b/addons/l10n_be_invoice_bba/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 10:49+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sr@latin.po b/addons/l10n_be_invoice_bba/i18n/sr@latin.po index 0498b28e7ea..ebd538def1c 100644 --- a/addons/l10n_be_invoice_bba/i18n/sr@latin.po +++ b/addons/l10n_be_invoice_bba/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index d9a09800146..cfeef8aeb9b 100644 --- a/addons/l10n_bo/i18n/es.po +++ b/addons/l10n_bo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt.po b/addons/l10n_bo/i18n/pt.po index 78f6c1e4e3d..b0d27e35a0e 100644 --- a/addons/l10n_bo/i18n/pt.po +++ b/addons/l10n_bo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt_BR.po b/addons/l10n_bo/i18n/pt_BR.po index 4f248c0f1da..1641b0fc0fc 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/sl.po b/addons/l10n_bo/i18n/sl.po index 05e831c179b..1ffe36fbcf1 100644 --- a/addons/l10n_bo/i18n/sl.po +++ b/addons/l10n_bo/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:15+0000\n" "PO-Revision-Date: 2012-12-26 12:00+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_br/i18n/ar.po b/addons/l10n_br/i18n/ar.po index 358f666d4b5..f9aac554375 100644 --- a/addons/l10n_br/i18n/ar.po +++ b/addons/l10n_br/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/bg.po b/addons/l10n_br/i18n/bg.po index d09155c975a..a92c0e06462 100644 --- a/addons/l10n_br/i18n/bg.po +++ b/addons/l10n_br/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ca.po b/addons/l10n_br/i18n/ca.po index e480c913d92..0b197b0b5e7 100644 --- a/addons/l10n_br/i18n/ca.po +++ b/addons/l10n_br/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/da.po b/addons/l10n_br/i18n/da.po index 6dfc00d2d43..742e1d6e504 100644 --- a/addons/l10n_br/i18n/da.po +++ b/addons/l10n_br/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/en_GB.po b/addons/l10n_br/i18n/en_GB.po index 67cc62533e5..4073907fe83 100644 --- a/addons/l10n_br/i18n/en_GB.po +++ b/addons/l10n_br/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es.po b/addons/l10n_br/i18n/es.po index a1320e1de87..2b6dbe79282 100644 --- a/addons/l10n_br/i18n/es.po +++ b/addons/l10n_br/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_CR.po b/addons/l10n_br/i18n/es_CR.po index 30677789f0d..06341fdfb2f 100644 --- a/addons/l10n_br/i18n/es_CR.po +++ b/addons/l10n_br/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_PY.po b/addons/l10n_br/i18n/es_PY.po index 67aeea8d132..287966b0596 100644 --- a/addons/l10n_br/i18n/es_PY.po +++ b/addons/l10n_br/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/fr.po b/addons/l10n_br/i18n/fr.po index c9ebd64df3c..ced77d5dac8 100644 --- a/addons/l10n_br/i18n/fr.po +++ b/addons/l10n_br/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/gl.po b/addons/l10n_br/i18n/gl.po index 1805a3a3285..dbe4934dfe2 100644 --- a/addons/l10n_br/i18n/gl.po +++ b/addons/l10n_br/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/hi.po b/addons/l10n_br/i18n/hi.po index 021fc13ad8d..28743e1870e 100644 --- a/addons/l10n_br/i18n/hi.po +++ b/addons/l10n_br/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/it.po b/addons/l10n_br/i18n/it.po index bbe8e456d74..79fbf92592c 100644 --- a/addons/l10n_br/i18n/it.po +++ b/addons/l10n_br/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/nb.po b/addons/l10n_br/i18n/nb.po index 0b2ab2347fa..0a128eee19c 100644 --- a/addons/l10n_br/i18n/nb.po +++ b/addons/l10n_br/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/oc.po b/addons/l10n_br/i18n/oc.po index b2fb4bb7b62..c4698ada62c 100644 --- a/addons/l10n_br/i18n/oc.po +++ b/addons/l10n_br/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt.po b/addons/l10n_br/i18n/pt.po index 1fadf0567c3..d4c67dc3891 100644 --- a/addons/l10n_br/i18n/pt.po +++ b/addons/l10n_br/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt_BR.po b/addons/l10n_br/i18n/pt_BR.po index 6425d6b8aef..8e844f908d7 100644 --- a/addons/l10n_br/i18n/pt_BR.po +++ b/addons/l10n_br/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ru.po b/addons/l10n_br/i18n/ru.po index 5e751d5875c..e8e24ebc036 100644 --- a/addons/l10n_br/i18n/ru.po +++ b/addons/l10n_br/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sl.po b/addons/l10n_br/i18n/sl.po index 00b99e0c97b..ddff1e0fe51 100644 --- a/addons/l10n_br/i18n/sl.po +++ b/addons/l10n_br/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 13:43+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sq.po b/addons/l10n_br/i18n/sq.po index b9fb83a5faa..166b62cc251 100644 --- a/addons/l10n_br/i18n/sq.po +++ b/addons/l10n_br/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sr@latin.po b/addons/l10n_br/i18n/sr@latin.po index 547c6aafd66..b8f1619b0d4 100644 --- a/addons/l10n_br/i18n/sr@latin.po +++ b/addons/l10n_br/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/tr.po b/addons/l10n_br/i18n/tr.po index 45d77ce16bb..63e200a2bd5 100644 --- a/addons/l10n_br/i18n/tr.po +++ b/addons/l10n_br/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_ca/i18n/ar.po b/addons/l10n_ca/i18n/ar.po index 84d3da6a70e..0d8faeef428 100644 --- a/addons/l10n_ca/i18n/ar.po +++ b/addons/l10n_ca/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/ca.po b/addons/l10n_ca/i18n/ca.po index 81f00bcde71..ba7010cb587 100644 --- a/addons/l10n_ca/i18n/ca.po +++ b/addons/l10n_ca/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/da.po b/addons/l10n_ca/i18n/da.po index 81a7e921c84..517981cc6dd 100644 --- a/addons/l10n_ca/i18n/da.po +++ b/addons/l10n_ca/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/de.po b/addons/l10n_ca/i18n/de.po index 5444ed3831e..cc858f76fee 100644 --- a/addons/l10n_ca/i18n/de.po +++ b/addons/l10n_ca/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/en_GB.po b/addons/l10n_ca/i18n/en_GB.po index 181a453060a..c43a62212f0 100644 --- a/addons/l10n_ca/i18n/en_GB.po +++ b/addons/l10n_ca/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es.po b/addons/l10n_ca/i18n/es.po index 7ae90afdd93..c24d8226443 100644 --- a/addons/l10n_ca/i18n/es.po +++ b/addons/l10n_ca/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_CR.po b/addons/l10n_ca/i18n/es_CR.po index 2880acb949c..558fe712d06 100644 --- a/addons/l10n_ca/i18n/es_CR.po +++ b/addons/l10n_ca/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_PY.po b/addons/l10n_ca/i18n/es_PY.po index e104eb9cdc7..f195b3463d9 100644 --- a/addons/l10n_ca/i18n/es_PY.po +++ b/addons/l10n_ca/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/fr.po b/addons/l10n_ca/i18n/fr.po index d6c56914ec7..e22950cc858 100644 --- a/addons/l10n_ca/i18n/fr.po +++ b/addons/l10n_ca/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/gl.po b/addons/l10n_ca/i18n/gl.po index fdf939e78ae..ef98c36d64d 100644 --- a/addons/l10n_ca/i18n/gl.po +++ b/addons/l10n_ca/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/hu.po b/addons/l10n_ca/i18n/hu.po index e0ad6b856dd..871c7fbd72e 100644 --- a/addons/l10n_ca/i18n/hu.po +++ b/addons/l10n_ca/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/it.po b/addons/l10n_ca/i18n/it.po index 524b09b5587..fc17f7c830a 100644 --- a/addons/l10n_ca/i18n/it.po +++ b/addons/l10n_ca/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/nb.po b/addons/l10n_ca/i18n/nb.po index 233b4c64cdd..98e970767cb 100644 --- a/addons/l10n_ca/i18n/nb.po +++ b/addons/l10n_ca/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt.po b/addons/l10n_ca/i18n/pt.po index 215a6a6faad..4412eb9fb03 100644 --- a/addons/l10n_ca/i18n/pt.po +++ b/addons/l10n_ca/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt_BR.po b/addons/l10n_ca/i18n/pt_BR.po index ecc377a347b..80b7902a61e 100644 --- a/addons/l10n_ca/i18n/pt_BR.po +++ b/addons/l10n_ca/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sl.po b/addons/l10n_ca/i18n/sl.po index 406e1a3c271..c406c337e45 100644 --- a/addons/l10n_ca/i18n/sl.po +++ b/addons/l10n_ca/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-08-02 21:08+0000\n" "PO-Revision-Date: 2012-12-27 18:15+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sr@latin.po b/addons/l10n_ca/i18n/sr@latin.po index b07fa878e3e..dc020766501 100644 --- a/addons/l10n_ca/i18n/sr@latin.po +++ b/addons/l10n_ca/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/tr.po b/addons/l10n_ca/i18n/tr.po index 67e548044c3..6f818c82964 100644 --- a/addons/l10n_ca/i18n/tr.po +++ b/addons/l10n_ca/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/zh_CN.po b/addons/l10n_ca/i18n/zh_CN.po index 6394ce05d4b..c824c42f2d3 100644 --- a/addons/l10n_ca/i18n/zh_CN.po +++ b/addons/l10n_ca/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_cl/i18n/es.po b/addons/l10n_cl/i18n/es.po index 28e28687e7a..f26db8e6b1d 100644 --- a/addons/l10n_cl/i18n/es.po +++ b/addons/l10n_cl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/sl.po b/addons/l10n_cl/i18n/sl.po index 7c4a6bcd90b..96154164baa 100644 --- a/addons/l10n_cl/i18n/sl.po +++ b/addons/l10n_cl/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 11:21+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/zh_CN.po b/addons/l10n_cl/i18n/zh_CN.po index bf469925685..bc1f35a2a77 100644 --- a/addons/l10n_cl/i18n/zh_CN.po +++ b/addons/l10n_cl/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cn/i18n/ar.po b/addons/l10n_cn/i18n/ar.po index 264146e0854..cc3654c8565 100644 --- a/addons/l10n_cn/i18n/ar.po +++ b/addons/l10n_cn/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/ca.po b/addons/l10n_cn/i18n/ca.po index 0527c678e74..05af347ee05 100644 --- a/addons/l10n_cn/i18n/ca.po +++ b/addons/l10n_cn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/da.po b/addons/l10n_cn/i18n/da.po index c1acf41c73f..5fdf1e45435 100644 --- a/addons/l10n_cn/i18n/da.po +++ b/addons/l10n_cn/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es.po b/addons/l10n_cn/i18n/es.po index 649a706c6f3..129a28682c5 100644 --- a/addons/l10n_cn/i18n/es.po +++ b/addons/l10n_cn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_CR.po b/addons/l10n_cn/i18n/es_CR.po index 0b8419517eb..5f10ea53c22 100644 --- a/addons/l10n_cn/i18n/es_CR.po +++ b/addons/l10n_cn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_PY.po b/addons/l10n_cn/i18n/es_PY.po index 6fe86e269ec..009f44f6d57 100644 --- a/addons/l10n_cn/i18n/es_PY.po +++ b/addons/l10n_cn/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/gl.po b/addons/l10n_cn/i18n/gl.po index feb4cf3ca7a..67797c41899 100644 --- a/addons/l10n_cn/i18n/gl.po +++ b/addons/l10n_cn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/it.po b/addons/l10n_cn/i18n/it.po index 3a04b98eb01..99d1fb27a8e 100644 --- a/addons/l10n_cn/i18n/it.po +++ b/addons/l10n_cn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/nb.po b/addons/l10n_cn/i18n/nb.po index d45b2c2d9d3..75f975765c8 100644 --- a/addons/l10n_cn/i18n/nb.po +++ b/addons/l10n_cn/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/pt_BR.po b/addons/l10n_cn/i18n/pt_BR.po index 6e53d88aed0..32841d93239 100644 --- a/addons/l10n_cn/i18n/pt_BR.po +++ b/addons/l10n_cn/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sl.po b/addons/l10n_cn/i18n/sl.po index 15cc234f0b0..80ac0d76e97 100644 --- a/addons/l10n_cn/i18n/sl.po +++ b/addons/l10n_cn/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 13:44+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sr@latin.po b/addons/l10n_cn/i18n/sr@latin.po index 5e31e232565..dd61f04dbab 100644 --- a/addons/l10n_cn/i18n/sr@latin.po +++ b/addons/l10n_cn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/tr.po b/addons/l10n_cn/i18n/tr.po index 22475981830..4f0117a0b3a 100644 --- a/addons/l10n_cn/i18n/tr.po +++ b/addons/l10n_cn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/zh_CN.po b/addons/l10n_cn/i18n/zh_CN.po index 4476a73d572..34a12752891 100644 --- a/addons/l10n_cn/i18n/zh_CN.po +++ b/addons/l10n_cn/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cr/i18n/ar.po b/addons/l10n_cr/i18n/ar.po index 55f6d883064..13f60dc6f85 100644 --- a/addons/l10n_cr/i18n/ar.po +++ b/addons/l10n_cr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/ca.po b/addons/l10n_cr/i18n/ca.po index e65dc7b5b8f..e84c3a5a257 100644 --- a/addons/l10n_cr/i18n/ca.po +++ b/addons/l10n_cr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/da.po b/addons/l10n_cr/i18n/da.po index f71148bcfb9..37ebb99b09a 100644 --- a/addons/l10n_cr/i18n/da.po +++ b/addons/l10n_cr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es.po b/addons/l10n_cr/i18n/es.po index 3e20ccef90d..2d38312ff0d 100644 --- a/addons/l10n_cr/i18n/es.po +++ b/addons/l10n_cr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_CR.po b/addons/l10n_cr/i18n/es_CR.po index cc5165a7c19..1c1f4210276 100644 --- a/addons/l10n_cr/i18n/es_CR.po +++ b/addons/l10n_cr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_PY.po b/addons/l10n_cr/i18n/es_PY.po index c714dd65bc9..0a914c4bb7b 100644 --- a/addons/l10n_cr/i18n/es_PY.po +++ b/addons/l10n_cr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/fr.po b/addons/l10n_cr/i18n/fr.po index 16ca69e46f6..f61f5964685 100644 --- a/addons/l10n_cr/i18n/fr.po +++ b/addons/l10n_cr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/gl.po b/addons/l10n_cr/i18n/gl.po index 299e2889286..1f74c218941 100644 --- a/addons/l10n_cr/i18n/gl.po +++ b/addons/l10n_cr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/it.po b/addons/l10n_cr/i18n/it.po index 6be51d78377..4cabff98585 100644 --- a/addons/l10n_cr/i18n/it.po +++ b/addons/l10n_cr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt.po b/addons/l10n_cr/i18n/pt.po index a508b203b7b..1613fb825c6 100644 --- a/addons/l10n_cr/i18n/pt.po +++ b/addons/l10n_cr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt_BR.po b/addons/l10n_cr/i18n/pt_BR.po index 3dfb03bd19d..96ee2e13efb 100644 --- a/addons/l10n_cr/i18n/pt_BR.po +++ b/addons/l10n_cr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/sl.po b/addons/l10n_cr/i18n/sl.po index bb20af3837d..7ca4e2ffe41 100644 --- a/addons/l10n_cr/i18n/sl.po +++ b/addons/l10n_cr/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-07 05:56+0000\n" "PO-Revision-Date: 2012-12-29 11:35+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/tr.po b/addons/l10n_cr/i18n/tr.po index 018d6a18f3d..8a874fc1218 100644 --- a/addons/l10n_cr/i18n/tr.po +++ b/addons/l10n_cr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_de/i18n/ar.po b/addons/l10n_de/i18n/ar.po index 010a044a1dc..c5658062236 100644 --- a/addons/l10n_de/i18n/ar.po +++ b/addons/l10n_de/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bg.po b/addons/l10n_de/i18n/bg.po index c34eb10063e..66c29f0e877 100644 --- a/addons/l10n_de/i18n/bg.po +++ b/addons/l10n_de/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bs.po b/addons/l10n_de/i18n/bs.po index c151289370a..93a8fd9b93f 100644 --- a/addons/l10n_de/i18n/bs.po +++ b/addons/l10n_de/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ca.po b/addons/l10n_de/i18n/ca.po index e8f83c1647b..02537599ebe 100644 --- a/addons/l10n_de/i18n/ca.po +++ b/addons/l10n_de/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/cs.po b/addons/l10n_de/i18n/cs.po index a391d04383b..e2ac5e355df 100644 --- a/addons/l10n_de/i18n/cs.po +++ b/addons/l10n_de/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/da.po b/addons/l10n_de/i18n/da.po index 8a47636024f..b57aad32139 100644 --- a/addons/l10n_de/i18n/da.po +++ b/addons/l10n_de/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/de.po b/addons/l10n_de/i18n/de.po index 1b6047d28b8..8255a38eb7a 100644 --- a/addons/l10n_de/i18n/de.po +++ b/addons/l10n_de/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es.po b/addons/l10n_de/i18n/es.po index 4f56f5ca3bb..e33ed4d1735 100644 --- a/addons/l10n_de/i18n/es.po +++ b/addons/l10n_de/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_CR.po b/addons/l10n_de/i18n/es_CR.po index 247f66e87ec..cea794fe529 100644 --- a/addons/l10n_de/i18n/es_CR.po +++ b/addons/l10n_de/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_PY.po b/addons/l10n_de/i18n/es_PY.po index 79151cc6731..46f3f8cbe2c 100644 --- a/addons/l10n_de/i18n/es_PY.po +++ b/addons/l10n_de/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/et.po b/addons/l10n_de/i18n/et.po index f3a260aa827..923c9a570fa 100644 --- a/addons/l10n_de/i18n/et.po +++ b/addons/l10n_de/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/fr.po b/addons/l10n_de/i18n/fr.po index 0be99e0d32e..67effb66aee 100644 --- a/addons/l10n_de/i18n/fr.po +++ b/addons/l10n_de/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/gl.po b/addons/l10n_de/i18n/gl.po index 17ae5a71393..09a93069c80 100644 --- a/addons/l10n_de/i18n/gl.po +++ b/addons/l10n_de/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hr.po b/addons/l10n_de/i18n/hr.po index fae63c7b11f..706bb34f866 100644 --- a/addons/l10n_de/i18n/hr.po +++ b/addons/l10n_de/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hu.po b/addons/l10n_de/i18n/hu.po index 1964f763be6..1b46f5c07fc 100644 --- a/addons/l10n_de/i18n/hu.po +++ b/addons/l10n_de/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/id.po b/addons/l10n_de/i18n/id.po index 89308e2de0e..fbf1437751e 100644 --- a/addons/l10n_de/i18n/id.po +++ b/addons/l10n_de/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/it.po b/addons/l10n_de/i18n/it.po index fc03efe99df..f6b9cfee2ec 100644 --- a/addons/l10n_de/i18n/it.po +++ b/addons/l10n_de/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ko.po b/addons/l10n_de/i18n/ko.po index 04c21e097bb..9fdca3e920c 100644 --- a/addons/l10n_de/i18n/ko.po +++ b/addons/l10n_de/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/lt.po b/addons/l10n_de/i18n/lt.po index 9bee466ac82..7c28b6e725c 100644 --- a/addons/l10n_de/i18n/lt.po +++ b/addons/l10n_de/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nb.po b/addons/l10n_de/i18n/nb.po index 94c00908059..e8e4453a07a 100644 --- a/addons/l10n_de/i18n/nb.po +++ b/addons/l10n_de/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nl.po b/addons/l10n_de/i18n/nl.po index 18d514ee4c6..2f31cf8261a 100644 --- a/addons/l10n_de/i18n/nl.po +++ b/addons/l10n_de/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pl.po b/addons/l10n_de/i18n/pl.po index a0349f938e9..355a651ae0b 100644 --- a/addons/l10n_de/i18n/pl.po +++ b/addons/l10n_de/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt.po b/addons/l10n_de/i18n/pt.po index 520a1968613..9ea8c642b10 100644 --- a/addons/l10n_de/i18n/pt.po +++ b/addons/l10n_de/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt_BR.po b/addons/l10n_de/i18n/pt_BR.po index b9a404fe066..4d8e516d818 100644 --- a/addons/l10n_de/i18n/pt_BR.po +++ b/addons/l10n_de/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ro.po b/addons/l10n_de/i18n/ro.po index 6e72ad360bb..6520534e219 100644 --- a/addons/l10n_de/i18n/ro.po +++ b/addons/l10n_de/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ru.po b/addons/l10n_de/i18n/ru.po index 556708af606..9436d5a2ee1 100644 --- a/addons/l10n_de/i18n/ru.po +++ b/addons/l10n_de/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sl.po b/addons/l10n_de/i18n/sl.po index 6445931c467..000f5c8f20d 100644 --- a/addons/l10n_de/i18n/sl.po +++ b/addons/l10n_de/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-15 15:05+0000\n" "PO-Revision-Date: 2012-12-27 18:16+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sr@latin.po b/addons/l10n_de/i18n/sr@latin.po index 60a47aacda5..1a844ff4d57 100644 --- a/addons/l10n_de/i18n/sr@latin.po +++ b/addons/l10n_de/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sv.po b/addons/l10n_de/i18n/sv.po index b2ac0497a7a..68292ed33ab 100644 --- a/addons/l10n_de/i18n/sv.po +++ b/addons/l10n_de/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/tr.po b/addons/l10n_de/i18n/tr.po index a0058372878..60118dcf6a3 100644 --- a/addons/l10n_de/i18n/tr.po +++ b/addons/l10n_de/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/vi.po b/addons/l10n_de/i18n/vi.po index 3bc62c07de9..4b235f40f82 100644 --- a/addons/l10n_de/i18n/vi.po +++ b/addons/l10n_de/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_CN.po b/addons/l10n_de/i18n/zh_CN.po index f3a260aa827..923c9a570fa 100644 --- a/addons/l10n_de/i18n/zh_CN.po +++ b/addons/l10n_de/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_TW.po b/addons/l10n_de/i18n/zh_TW.po index b5af0dffeb6..52f2aec9ffc 100644 --- a/addons/l10n_de/i18n/zh_TW.po +++ b/addons/l10n_de/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_ec/i18n/ar.po b/addons/l10n_ec/i18n/ar.po index 8ed9c849633..d7c122323f8 100644 --- a/addons/l10n_ec/i18n/ar.po +++ b/addons/l10n_ec/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/ca.po b/addons/l10n_ec/i18n/ca.po index f8921f00339..7e58d6f70d8 100644 --- a/addons/l10n_ec/i18n/ca.po +++ b/addons/l10n_ec/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/da.po b/addons/l10n_ec/i18n/da.po index 9b30dda0c95..423664aac50 100644 --- a/addons/l10n_ec/i18n/da.po +++ b/addons/l10n_ec/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es.po b/addons/l10n_ec/i18n/es.po index 842f264605c..ff973d6a3e6 100644 --- a/addons/l10n_ec/i18n/es.po +++ b/addons/l10n_ec/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_CR.po b/addons/l10n_ec/i18n/es_CR.po index 943baa2d014..bc8a4dea1ed 100644 --- a/addons/l10n_ec/i18n/es_CR.po +++ b/addons/l10n_ec/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_EC.po b/addons/l10n_ec/i18n/es_EC.po index f7b8fa2f1c6..8e6c65af0ec 100644 --- a/addons/l10n_ec/i18n/es_EC.po +++ b/addons/l10n_ec/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_PY.po b/addons/l10n_ec/i18n/es_PY.po index f14684be425..05bd586785e 100644 --- a/addons/l10n_ec/i18n/es_PY.po +++ b/addons/l10n_ec/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/fr.po b/addons/l10n_ec/i18n/fr.po index 461bc5be655..51ce5fffaef 100644 --- a/addons/l10n_ec/i18n/fr.po +++ b/addons/l10n_ec/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/gl.po b/addons/l10n_ec/i18n/gl.po index 64b058cc339..d123314d3fd 100644 --- a/addons/l10n_ec/i18n/gl.po +++ b/addons/l10n_ec/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/it.po b/addons/l10n_ec/i18n/it.po index 4dfbe05730c..1c099aa2706 100644 --- a/addons/l10n_ec/i18n/it.po +++ b/addons/l10n_ec/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt.po b/addons/l10n_ec/i18n/pt.po index d6c245103ee..12e6bd20176 100644 --- a/addons/l10n_ec/i18n/pt.po +++ b/addons/l10n_ec/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt_BR.po b/addons/l10n_ec/i18n/pt_BR.po index dc8055bd4f6..fac1c48f360 100644 --- a/addons/l10n_ec/i18n/pt_BR.po +++ b/addons/l10n_ec/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/sl.po b/addons/l10n_ec/i18n/sl.po index 3e72680f232..2405b73dd72 100644 --- a/addons/l10n_ec/i18n/sl.po +++ b/addons/l10n_ec/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 12:04+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/tr.po b/addons/l10n_ec/i18n/tr.po index 9f55b7ccdf6..0cbb1af893f 100644 --- a/addons/l10n_ec/i18n/tr.po +++ b/addons/l10n_ec/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_es/i18n/ar.po b/addons/l10n_es/i18n/ar.po index c7d06adcf84..9471af4f2c4 100644 --- a/addons/l10n_es/i18n/ar.po +++ b/addons/l10n_es/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/ca.po b/addons/l10n_es/i18n/ca.po index dd5c1d66be5..54315d2c4f9 100644 --- a/addons/l10n_es/i18n/ca.po +++ b/addons/l10n_es/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/da.po b/addons/l10n_es/i18n/da.po index 58a394b4e06..d91cffd9dbc 100644 --- a/addons/l10n_es/i18n/da.po +++ b/addons/l10n_es/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/de.po b/addons/l10n_es/i18n/de.po index 02b86a62551..d21b528b7b8 100644 --- a/addons/l10n_es/i18n/de.po +++ b/addons/l10n_es/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es.po b/addons/l10n_es/i18n/es.po index 3b54025c42f..324d9cc099a 100644 --- a/addons/l10n_es/i18n/es.po +++ b/addons/l10n_es/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_CR.po b/addons/l10n_es/i18n/es_CR.po index 8402868d297..2b0a81ec041 100644 --- a/addons/l10n_es/i18n/es_CR.po +++ b/addons/l10n_es/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_PY.po b/addons/l10n_es/i18n/es_PY.po index ac7efaff9a7..a102d41aa34 100644 --- a/addons/l10n_es/i18n/es_PY.po +++ b/addons/l10n_es/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/fr.po b/addons/l10n_es/i18n/fr.po index 5a90e9af1ab..6f2d419f52e 100644 --- a/addons/l10n_es/i18n/fr.po +++ b/addons/l10n_es/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/gl.po b/addons/l10n_es/i18n/gl.po index b01c4b1cf9f..ff90b64f142 100644 --- a/addons/l10n_es/i18n/gl.po +++ b/addons/l10n_es/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/hu.po b/addons/l10n_es/i18n/hu.po index 8b8f6c80fe5..a80ae317197 100644 --- a/addons/l10n_es/i18n/hu.po +++ b/addons/l10n_es/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/it.po b/addons/l10n_es/i18n/it.po index 2ff9671e630..78da0f0a26a 100644 --- a/addons/l10n_es/i18n/it.po +++ b/addons/l10n_es/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/oc.po b/addons/l10n_es/i18n/oc.po index 32d0993b24e..6fcb144775d 100644 --- a/addons/l10n_es/i18n/oc.po +++ b/addons/l10n_es/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt.po b/addons/l10n_es/i18n/pt.po index bb0b3db94b8..adaba459b8b 100644 --- a/addons/l10n_es/i18n/pt.po +++ b/addons/l10n_es/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt_BR.po b/addons/l10n_es/i18n/pt_BR.po index 88332009d3d..8cc3d953313 100644 --- a/addons/l10n_es/i18n/pt_BR.po +++ b/addons/l10n_es/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sl.po b/addons/l10n_es/i18n/sl.po index 4be36dde160..51b7b9586c6 100644 --- a/addons/l10n_es/i18n/sl.po +++ b/addons/l10n_es/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 12:01+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sr@latin.po b/addons/l10n_es/i18n/sr@latin.po index 96bd3ace51c..43bb75d7067 100644 --- a/addons/l10n_es/i18n/sr@latin.po +++ b/addons/l10n_es/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/tr.po b/addons/l10n_es/i18n/tr.po index b46675d56ce..ee49621d039 100644 --- a/addons/l10n_es/i18n/tr.po +++ b/addons/l10n_es/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index 6b1d53ebe23..a3c5a7ff0f8 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bg.po b/addons/l10n_fr/i18n/bg.po index 2a5acde143e..065e82242c6 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bs.po b/addons/l10n_fr/i18n/bs.po index 0a95c153d1c..ad226cbf194 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ca.po b/addons/l10n_fr/i18n/ca.po index 002d856580d..acfa271d0b8 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/cs.po b/addons/l10n_fr/i18n/cs.po index 4c21883e7b2..0d4bce2c238 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/da.po b/addons/l10n_fr/i18n/da.po index 3eda2079e3e..c89adfbcbce 100644 --- a/addons/l10n_fr/i18n/da.po +++ b/addons/l10n_fr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/de.po b/addons/l10n_fr/i18n/de.po index a3381412a1d..108f3e9aa51 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es.po b/addons/l10n_fr/i18n/es.po index fa782732c75..0385c472595 100644 --- a/addons/l10n_fr/i18n/es.po +++ b/addons/l10n_fr/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index 2ab729bd302..2a6a0a5b9be 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_CR.po b/addons/l10n_fr/i18n/es_CR.po index a2b9db3a1b5..497a7b939de 100644 --- a/addons/l10n_fr/i18n/es_CR.po +++ b/addons/l10n_fr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index f615b4458e8..c89c2b09d54 100644 --- a/addons/l10n_fr/i18n/es_PY.po +++ b/addons/l10n_fr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/et.po b/addons/l10n_fr/i18n/et.po index 0eae50075fe..870ea0aeb06 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/fr.po b/addons/l10n_fr/i18n/fr.po index b091ff613e8..34567969e4a 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/gl.po b/addons/l10n_fr/i18n/gl.po index 0caa052d24a..fd9da9e3b2f 100644 --- a/addons/l10n_fr/i18n/gl.po +++ b/addons/l10n_fr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hr.po b/addons/l10n_fr/i18n/hr.po index 8cd6ad971f2..8cb3c9731f0 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hu.po b/addons/l10n_fr/i18n/hu.po index 1535afc5d80..8c7e2b48dc7 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/id.po b/addons/l10n_fr/i18n/id.po index 38cedd64732..955d37c8c95 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/it.po b/addons/l10n_fr/i18n/it.po index 2c55387acb2..9e0333f9754 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ko.po b/addons/l10n_fr/i18n/ko.po index 74494267210..e29b0472970 100644 --- a/addons/l10n_fr/i18n/ko.po +++ b/addons/l10n_fr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/lt.po b/addons/l10n_fr/i18n/lt.po index 84e1cb82941..9959a327760 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl.po b/addons/l10n_fr/i18n/nl.po index d7cff4fc0e0..750a78db539 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index 7841af0b766..7b416197727 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/oc.po b/addons/l10n_fr/i18n/oc.po index 3335c72c751..64829a8a901 100644 --- a/addons/l10n_fr/i18n/oc.po +++ b/addons/l10n_fr/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pl.po b/addons/l10n_fr/i18n/pl.po index 96697d73128..1c9b56d2a59 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt.po b/addons/l10n_fr/i18n/pt.po index 7c1db24e415..16bb00a0643 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index 7ad7e82d313..2687b76950c 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index 861563c0796..783afe1e0eb 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ru.po b/addons/l10n_fr/i18n/ru.po index 64ce19e0708..35833300f90 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sl.po b/addons/l10n_fr/i18n/sl.po index 4825d25c58b..ee80e273b63 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 12:17+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sq.po b/addons/l10n_fr/i18n/sq.po index 19b35f28490..4b524337f42 100644 --- a/addons/l10n_fr/i18n/sq.po +++ b/addons/l10n_fr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sr@latin.po b/addons/l10n_fr/i18n/sr@latin.po index f1e1a8ca3ad..9979554200c 100644 --- a/addons/l10n_fr/i18n/sr@latin.po +++ b/addons/l10n_fr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sv.po b/addons/l10n_fr/i18n/sv.po index 4eff05e9734..cf4ff9c0dcf 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tlh.po b/addons/l10n_fr/i18n/tlh.po index 84b07229911..4dd31743a9d 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index 33b9a1b6cbf..ab9e0fdc97d 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/uk.po b/addons/l10n_fr/i18n/uk.po index b38cc850763..bbdf886df14 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/vi.po b/addons/l10n_fr/i18n/vi.po index f5bcbdb594c..274057fd3eb 100644 --- a/addons/l10n_fr/i18n/vi.po +++ b/addons/l10n_fr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index 473c2efa52c..95d90fe4540 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index 38ba04fa697..88332278a3c 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index cc36fbdab39..f022d49065b 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index caee43807db..23d90dfadad 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index ac07d333516..76aaa1707ef 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index c8d15b435ae..6288ae5651b 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index bc53e800735..9a37c1535d1 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index e6ae5736b8d..fd6b9b764d2 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-31 14:05+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_gr/i18n/ar.po b/addons/l10n_gr/i18n/ar.po index bd01ea7fa6f..146027e7291 100644 --- a/addons/l10n_gr/i18n/ar.po +++ b/addons/l10n_gr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/ca.po b/addons/l10n_gr/i18n/ca.po index 9eb4b0f516b..ffa46dda7e6 100644 --- a/addons/l10n_gr/i18n/ca.po +++ b/addons/l10n_gr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/da.po b/addons/l10n_gr/i18n/da.po index c0a876e1201..71a079dda2a 100644 --- a/addons/l10n_gr/i18n/da.po +++ b/addons/l10n_gr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/de.po b/addons/l10n_gr/i18n/de.po index eb3adeca3d3..54506c71cb6 100644 --- a/addons/l10n_gr/i18n/de.po +++ b/addons/l10n_gr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/el.po b/addons/l10n_gr/i18n/el.po index a2f9a984d53..7c7cc9e3599 100644 --- a/addons/l10n_gr/i18n/el.po +++ b/addons/l10n_gr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es.po b/addons/l10n_gr/i18n/es.po index 305ef5e2cab..e5969098602 100644 --- a/addons/l10n_gr/i18n/es.po +++ b/addons/l10n_gr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_CR.po b/addons/l10n_gr/i18n/es_CR.po index 073aff9ac47..8f712d8601a 100644 --- a/addons/l10n_gr/i18n/es_CR.po +++ b/addons/l10n_gr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_PY.po b/addons/l10n_gr/i18n/es_PY.po index 6da3901cbb7..1a2b7472b24 100644 --- a/addons/l10n_gr/i18n/es_PY.po +++ b/addons/l10n_gr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/fr.po b/addons/l10n_gr/i18n/fr.po index bf3a6cd8175..5750fe513d4 100644 --- a/addons/l10n_gr/i18n/fr.po +++ b/addons/l10n_gr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/gl.po b/addons/l10n_gr/i18n/gl.po index 263c46ef936..11bd7a8ef09 100644 --- a/addons/l10n_gr/i18n/gl.po +++ b/addons/l10n_gr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/hu.po b/addons/l10n_gr/i18n/hu.po index ae96d141816..3335d412d8a 100644 --- a/addons/l10n_gr/i18n/hu.po +++ b/addons/l10n_gr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/it.po b/addons/l10n_gr/i18n/it.po index 24d48347092..7e24c10fb92 100644 --- a/addons/l10n_gr/i18n/it.po +++ b/addons/l10n_gr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/nl.po b/addons/l10n_gr/i18n/nl.po index 2e30e85b6e4..8ca235a875b 100644 --- a/addons/l10n_gr/i18n/nl.po +++ b/addons/l10n_gr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt.po b/addons/l10n_gr/i18n/pt.po index 547f8251f3a..9df12732d63 100644 --- a/addons/l10n_gr/i18n/pt.po +++ b/addons/l10n_gr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt_BR.po b/addons/l10n_gr/i18n/pt_BR.po index 923490f8797..903878e91fd 100644 --- a/addons/l10n_gr/i18n/pt_BR.po +++ b/addons/l10n_gr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sl.po b/addons/l10n_gr/i18n/sl.po index 16671d6d81b..2b556a56ed1 100644 --- a/addons/l10n_gr/i18n/sl.po +++ b/addons/l10n_gr/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 11:22+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sr@latin.po b/addons/l10n_gr/i18n/sr@latin.po index 38e39c08bf2..6e4ca9b758c 100644 --- a/addons/l10n_gr/i18n/sr@latin.po +++ b/addons/l10n_gr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/tr.po b/addons/l10n_gr/i18n/tr.po index bc71c4e3b23..12725507747 100644 --- a/addons/l10n_gr/i18n/tr.po +++ b/addons/l10n_gr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gt/i18n/ar.po b/addons/l10n_gt/i18n/ar.po index 0873ed7c68a..4d7b4fee02e 100644 --- a/addons/l10n_gt/i18n/ar.po +++ b/addons/l10n_gt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/ca.po b/addons/l10n_gt/i18n/ca.po index c472f4c0714..a3b963a73ad 100644 --- a/addons/l10n_gt/i18n/ca.po +++ b/addons/l10n_gt/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/da.po b/addons/l10n_gt/i18n/da.po index 805e4a51993..2c02e683316 100644 --- a/addons/l10n_gt/i18n/da.po +++ b/addons/l10n_gt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es.po b/addons/l10n_gt/i18n/es.po index 9f38dd9787d..58202e13990 100644 --- a/addons/l10n_gt/i18n/es.po +++ b/addons/l10n_gt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_CR.po b/addons/l10n_gt/i18n/es_CR.po index 0a0111a8136..ddc88ee2489 100644 --- a/addons/l10n_gt/i18n/es_CR.po +++ b/addons/l10n_gt/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_PY.po b/addons/l10n_gt/i18n/es_PY.po index 07c39a36c48..587b6145dec 100644 --- a/addons/l10n_gt/i18n/es_PY.po +++ b/addons/l10n_gt/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/fr.po b/addons/l10n_gt/i18n/fr.po index 1c203a0b2c9..ec26dbf06cf 100644 --- a/addons/l10n_gt/i18n/fr.po +++ b/addons/l10n_gt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/gl.po b/addons/l10n_gt/i18n/gl.po index d30fddd8b0d..e972b8e62ce 100644 --- a/addons/l10n_gt/i18n/gl.po +++ b/addons/l10n_gt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/hu.po b/addons/l10n_gt/i18n/hu.po index 55ff14a0e0d..420f2e5daef 100644 --- a/addons/l10n_gt/i18n/hu.po +++ b/addons/l10n_gt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/it.po b/addons/l10n_gt/i18n/it.po index a4437f2c84d..cd7ff2d7fdd 100644 --- a/addons/l10n_gt/i18n/it.po +++ b/addons/l10n_gt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/oc.po b/addons/l10n_gt/i18n/oc.po index e7310abb8e4..4a3e1991b20 100644 --- a/addons/l10n_gt/i18n/oc.po +++ b/addons/l10n_gt/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt.po b/addons/l10n_gt/i18n/pt.po index 3c29ba480b9..1fc0f8e9bf2 100644 --- a/addons/l10n_gt/i18n/pt.po +++ b/addons/l10n_gt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt_BR.po b/addons/l10n_gt/i18n/pt_BR.po index 15799269d65..4c7ef263213 100644 --- a/addons/l10n_gt/i18n/pt_BR.po +++ b/addons/l10n_gt/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sl.po b/addons/l10n_gt/i18n/sl.po index 5c1a7dd0ad8..e345f331816 100644 --- a/addons/l10n_gt/i18n/sl.po +++ b/addons/l10n_gt/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-26 13:46+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sr@latin.po b/addons/l10n_gt/i18n/sr@latin.po index 0c35a22ffc2..903880e0627 100644 --- a/addons/l10n_gt/i18n/sr@latin.po +++ b/addons/l10n_gt/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/tr.po b/addons/l10n_gt/i18n/tr.po index 3b659b7d8d8..538407ff2f7 100644 --- a/addons/l10n_gt/i18n/tr.po +++ b/addons/l10n_gt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_hn/i18n/ca.po b/addons/l10n_hn/i18n/ca.po index 1c47365cf21..186443e9282 100644 --- a/addons/l10n_hn/i18n/ca.po +++ b/addons/l10n_hn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es.po b/addons/l10n_hn/i18n/es.po index b7ad5c28faa..aa829f9b9c5 100644 --- a/addons/l10n_hn/i18n/es.po +++ b/addons/l10n_hn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es_CR.po b/addons/l10n_hn/i18n/es_CR.po index dbc3e0dd3d5..4b9cd6987c6 100644 --- a/addons/l10n_hn/i18n/es_CR.po +++ b/addons/l10n_hn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/fr.po b/addons/l10n_hn/i18n/fr.po index d9d449a1c6c..2682fa119a1 100644 --- a/addons/l10n_hn/i18n/fr.po +++ b/addons/l10n_hn/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/gl.po b/addons/l10n_hn/i18n/gl.po index 4a72dfaa6b4..cbf10a2f31f 100644 --- a/addons/l10n_hn/i18n/gl.po +++ b/addons/l10n_hn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/hu.po b/addons/l10n_hn/i18n/hu.po index 0fb3549cca0..4c1c5ca9fba 100644 --- a/addons/l10n_hn/i18n/hu.po +++ b/addons/l10n_hn/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/it.po b/addons/l10n_hn/i18n/it.po index 200f3a39289..46cdab925aa 100644 --- a/addons/l10n_hn/i18n/it.po +++ b/addons/l10n_hn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt.po b/addons/l10n_hn/i18n/pt.po index 1ed692254e5..a693c92bda4 100644 --- a/addons/l10n_hn/i18n/pt.po +++ b/addons/l10n_hn/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po index 9223de42fc9..edfad6d8461 100644 --- a/addons/l10n_hn/i18n/pt_BR.po +++ b/addons/l10n_hn/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sl.po b/addons/l10n_hn/i18n/sl.po index 991613087d9..8527f398f7a 100644 --- a/addons/l10n_hn/i18n/sl.po +++ b/addons/l10n_hn/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-30 09:39+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sr@latin.po b/addons/l10n_hn/i18n/sr@latin.po index 1e6070eca45..6ced81bf396 100644 --- a/addons/l10n_hn/i18n/sr@latin.po +++ b/addons/l10n_hn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/tr.po b/addons/l10n_hn/i18n/tr.po index cf63b84381f..b32e1e2d672 100644 --- a/addons/l10n_hn/i18n/tr.po +++ b/addons/l10n_hn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_in/i18n/ar.po b/addons/l10n_in/i18n/ar.po index 0cbe5316649..96341be24f4 100644 --- a/addons/l10n_in/i18n/ar.po +++ b/addons/l10n_in/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/br.po b/addons/l10n_in/i18n/br.po index a9f6f4ab99c..f54d05d3593 100644 --- a/addons/l10n_in/i18n/br.po +++ b/addons/l10n_in/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ca.po b/addons/l10n_in/i18n/ca.po index 17e44426473..9eac9b4093f 100644 --- a/addons/l10n_in/i18n/ca.po +++ b/addons/l10n_in/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/da.po b/addons/l10n_in/i18n/da.po index 39771b7d2a4..292d3d502a2 100644 --- a/addons/l10n_in/i18n/da.po +++ b/addons/l10n_in/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/de.po b/addons/l10n_in/i18n/de.po index 7c4f37619a4..62a24f4187e 100644 --- a/addons/l10n_in/i18n/de.po +++ b/addons/l10n_in/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es.po b/addons/l10n_in/i18n/es.po index 46d3cc642b4..55358fc99fa 100644 --- a/addons/l10n_in/i18n/es.po +++ b/addons/l10n_in/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_CR.po b/addons/l10n_in/i18n/es_CR.po index 2bb435194d2..2f294a8841d 100644 --- a/addons/l10n_in/i18n/es_CR.po +++ b/addons/l10n_in/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_PY.po b/addons/l10n_in/i18n/es_PY.po index d511a9ed299..4e7a1f9c70b 100644 --- a/addons/l10n_in/i18n/es_PY.po +++ b/addons/l10n_in/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/et.po b/addons/l10n_in/i18n/et.po index a9e62291e88..943fbc4aa2e 100644 --- a/addons/l10n_in/i18n/et.po +++ b/addons/l10n_in/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/fr.po b/addons/l10n_in/i18n/fr.po index c41c330f454..75530b7095b 100644 --- a/addons/l10n_in/i18n/fr.po +++ b/addons/l10n_in/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/gl.po b/addons/l10n_in/i18n/gl.po index 84804394d3a..324a6da3746 100644 --- a/addons/l10n_in/i18n/gl.po +++ b/addons/l10n_in/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/hu.po b/addons/l10n_in/i18n/hu.po index 9d6d2f0fbd8..85c5cd6e17b 100644 --- a/addons/l10n_in/i18n/hu.po +++ b/addons/l10n_in/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/it.po b/addons/l10n_in/i18n/it.po index 5dddf078764..84b0fb2e03a 100644 --- a/addons/l10n_in/i18n/it.po +++ b/addons/l10n_in/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/oc.po b/addons/l10n_in/i18n/oc.po index fbda582e410..ab83a50b5fa 100644 --- a/addons/l10n_in/i18n/oc.po +++ b/addons/l10n_in/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt.po b/addons/l10n_in/i18n/pt.po index 9b970039730..fd9c834a591 100644 --- a/addons/l10n_in/i18n/pt.po +++ b/addons/l10n_in/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt_BR.po b/addons/l10n_in/i18n/pt_BR.po index d32670e9f90..7d4cf36f7d4 100644 --- a/addons/l10n_in/i18n/pt_BR.po +++ b/addons/l10n_in/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ru.po b/addons/l10n_in/i18n/ru.po index 1863f1273f4..52bdec34364 100644 --- a/addons/l10n_in/i18n/ru.po +++ b/addons/l10n_in/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sl.po b/addons/l10n_in/i18n/sl.po index 6fac6ee0615..16ddb665e11 100644 --- a/addons/l10n_in/i18n/sl.po +++ b/addons/l10n_in/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-12-23 09:56+0000\n" "PO-Revision-Date: 2012-12-30 22:00+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sr@latin.po b/addons/l10n_in/i18n/sr@latin.po index 75c0e861236..445a6e1bc79 100644 --- a/addons/l10n_in/i18n/sr@latin.po +++ b/addons/l10n_in/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sv.po b/addons/l10n_in/i18n/sv.po index 27e04a02b3b..07c18edceeb 100644 --- a/addons/l10n_in/i18n/sv.po +++ b/addons/l10n_in/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/tr.po b/addons/l10n_in/i18n/tr.po index 44c9a5ed63a..266f18d0983 100644 --- a/addons/l10n_in/i18n/tr.po +++ b/addons/l10n_in/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index af729c70535..7dd5a6c1e82 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index 11de5698c83..b047f5e7f42 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -30,7 +30,7 @@ msgstr "Cuenta bancaria del empleado" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in draft state" -msgstr "Avisos de pago que se encuentran en estado borrador" +msgstr "Notificaciones de pago que se encuentran en estado borrador" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -40,7 +40,7 @@ msgstr "Título" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Payment Advice from" -msgstr "Aviso de pago de" +msgstr "Notificación de pago de" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_yearly_salary_detail @@ -50,7 +50,7 @@ msgstr "Informe de salario del empleado por categoría" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are paid" -msgstr "" +msgstr "Nómina pagadas" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -67,7 +67,7 @@ msgstr "Derechos de emisión con base:" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in done state" -msgstr "" +msgstr "Nóminas en estado \"Realizada\"" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -82,12 +82,12 @@ msgstr "Deducciones:" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "A/C no." -msgstr "" +msgstr "Número A/C" #. module: l10n_in_hr_payroll #: field:hr.contract,driver_salay:0 msgid "Driver Salary" -msgstr "" +msgstr "Salario del conductor" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_yearly_salary_detail @@ -105,7 +105,7 @@ msgstr "Nóminas" #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "March" -msgstr "" +msgstr "Marzo" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -126,7 +126,7 @@ msgstr "Gerente" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Letter Details" -msgstr "" +msgstr "Detalles de la carta" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -146,12 +146,12 @@ msgstr "Total:" #. module: l10n_in_hr_payroll #: field:hr.payslip.run,available_advice:0 msgid "Made Payment Advice?" -msgstr "¿Realizar consejo de pago?" +msgstr "¿Realizar notificación de pago?" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Advices which are paid using NEFT transfer" -msgstr "" +msgstr "Notificaciones pagadas usando transferencia NEFT" #. module: l10n_in_hr_payroll #: field:payslip.report,nbr:0 @@ -161,7 +161,7 @@ msgstr "Nº de líneas de nómina" #. module: l10n_in_hr_payroll #: help:hr.contract,tds:0 msgid "Amount for Tax Deduction at Source" -msgstr "" +msgstr "Importe de la deducción de impuestos en el origen" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip @@ -179,7 +179,7 @@ msgstr "Día" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Month of Payment Advices" -msgstr "" +msgstr "Mes de las notificaciones de pago" #. module: l10n_in_hr_payroll #: constraint:hr.payslip:0 @@ -236,97 +236,97 @@ msgstr "Seguro médico" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Identification No" -msgstr "" +msgstr "Nº identificación" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: field:payslip.report,struct_id:0 msgid "Structure" -msgstr "" +msgstr "Estructura" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "form period" -msgstr "" +msgstr "periodo formal" #. module: l10n_in_hr_payroll #: selection:hr.payroll.advice,state:0 #: selection:payment.advice.report,state:0 msgid "Confirmed" -msgstr "" +msgstr "Confirmada" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "From" -msgstr "" +msgstr "De" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,bysal:0 #: field:payment.advice.report,bysal:0 #: report:payroll.advice:0 msgid "By Salary" -msgstr "" +msgstr "Por salario" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:payment.advice.report:0 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,chaque_nos:0 #: field:payment.advice.report,cheque_nos:0 msgid "Cheque Numbers" -msgstr "" +msgstr "Números de cheque" #. module: l10n_in_hr_payroll #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "¡Error! No se pueden crear compañías recursivas." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_salary_employee_month #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.hr_salary_employee_bymonth #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_salary_employee_month msgid "Yearly Salary by Head" -msgstr "" +msgstr "Salario anual por cabeza" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:134 #, python-format msgid "You can not confirm Payment advice without advice lines." -msgstr "" +msgstr "No peude confirmar una notificación de pago que no tiene líneas." #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Yours Sincerely" -msgstr "" +msgstr "Atentamente" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "# Payslip Lines" -msgstr "" +msgstr "Nº de líneas de nómina" #. module: l10n_in_hr_payroll #: help:hr.contract,medical_insurance:0 msgid "Deduction towards company provided medical insurance" -msgstr "" +msgstr "Deducción respecto al seguro médico provisto por la compañía" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice_line msgid "Bank Advice Lines" -msgstr "" +msgstr "Líneas de notificación bancaria" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Day of Payslip" -msgstr "" +msgstr "Día de la nómina" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #. module: l10n_in_hr_payroll #: help:hr.payslip.run,available_advice:0 @@ -334,6 +334,8 @@ msgid "" "If this box is checked which means that Payment Advice exists for current " "batch" msgstr "" +"Si la casilla está marcada, significa que existe una notificación de pago " +"para el proceso por lotes actual" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 @@ -342,83 +344,83 @@ msgstr "" #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Error !" -msgstr "" +msgstr "¡Error!" #. module: l10n_in_hr_payroll #: field:payslip.report,paid:0 msgid "Made Payment Order ? " -msgstr "" +msgstr "¿Realizar orden de pago? " #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Print" -msgstr "" +msgstr "Imprimir" #. module: l10n_in_hr_payroll #: selection:payslip.report,state:0 msgid "Rejected" -msgstr "" +msgstr "Rechazada" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Year of Payslip" -msgstr "" +msgstr "Año de la nómina" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Procesamientos de nóminas" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,debit_credit:0 #: report:payroll.advice:0 msgid "C/D" -msgstr "" +msgstr "C/D" #. module: l10n_in_hr_payroll #: report:salary.employee.bymonth:0 msgid "Yearly Salary Details" -msgstr "" +msgstr "Detalles del salario anual" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payroll_advice msgid "Print Advice" -msgstr "" +msgstr "Imprimir notificación" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,line_ids:0 msgid "Employee Salary" -msgstr "" +msgstr "Salario del empleado" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "July" -msgstr "" +msgstr "Julio" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Configuración" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslip Line" -msgstr "" +msgstr "Línea de nómina" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_view_hr_bank_advice_tree #: model:ir.ui.menu,name:l10n_in_hr_payroll.hr_menu_payment_advice msgid "Payment Advices" -msgstr "" +msgstr "Notificaciones de pago" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payment_advice_report_all #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payment_advice #: view:payment.advice.report:0 msgid "Advices Analysis" -msgstr "" +msgstr "Análisis de notificaciones" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -426,69 +428,72 @@ msgid "" "This wizard will print report which displays employees break-up of Net Head " "for a specified dates." msgstr "" +"Este asistente imprimirá un informe que muestra el neto de los empleados " +"para una fechas específicas." #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc:0 msgid "IFSC" -msgstr "" +msgstr "IFSC" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_to:0 msgid "Date To" -msgstr "" +msgstr "Fecha hasta" #. module: l10n_in_hr_payroll #: field:hr.contract,tds:0 msgid "TDS" -msgstr "" +msgstr "TDS" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Advices" -msgstr "" +msgstr "Confirmar notificaciones" #. module: l10n_in_hr_payroll #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"¡Error! La fecha de inicio del contrato debe ser anterior a la de fin." #. module: l10n_in_hr_payroll #: field:res.company,dearness_allowance:0 msgid "Dearness Allowance" -msgstr "" +msgstr "Subsidio de caridad" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Deduction" -msgstr "" +msgstr "Deducción" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "SI. No." -msgstr "" +msgstr "Nº SS" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in confirm state" -msgstr "" +msgstr "Notificaciones de pago que están en estado confirmado" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "December" -msgstr "" +msgstr "Diciembre" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Sheet" -msgstr "" +msgstr "Hoja de confirmación" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -496,30 +501,30 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,month:0 msgid "Month" -msgstr "" +msgstr "Mes" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Code" -msgstr "" +msgstr "Código de empleado" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "or" -msgstr "" +msgstr "o" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_salary_employee_month msgid "Hr Salary Employee By Month Report" -msgstr "" +msgstr "Informe de salario del empleado por mes" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,category_id:0 #: view:payslip.report:0 #: field:payslip.report,category_id:0 msgid "Category" -msgstr "" +msgstr "Categoría" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:190 @@ -527,21 +532,23 @@ msgstr "" msgid "" "Payment advice already exists for %s, 'Set to Draft' to create a new advice." msgstr "" +"La notificación de pago para %s ya existe. Pulse 'Establecer a borrador' " +"para crear una nueva notificación." #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "To Advice" -msgstr "" +msgstr "A notificar" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Note" -msgstr "" +msgstr "Nota" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Salary Rule Category" -msgstr "" +msgstr "Categoría de regla salarial" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -551,23 +558,23 @@ msgstr "" #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Draft" -msgstr "" +msgstr "Borrador" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_from:0 msgid "Date From" -msgstr "" +msgstr "Fecha desde" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Name" -msgstr "" +msgstr "Nombre del empleado" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_payment_advice_report msgid "Payment Advice Analysis" -msgstr "" +msgstr "Análisis de la notificación de pago" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -577,30 +584,31 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: l10n_in_hr_payroll #: help:res.company,dearness_allowance:0 msgid "Check this box if your company provide Dearness Allowance to employee" msgstr "" +"Marque esta casilla si su compañía ofrece subsidio de caridad al empleado" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc_code:0 #: field:payment.advice.report,ifsc_code:0 #: report:payroll.advice:0 msgid "IFSC Code" -msgstr "" +msgstr "Código IFSC" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "June" -msgstr "" +msgstr "Junio" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Paid" -msgstr "" +msgstr "Pagada" #. module: l10n_in_hr_payroll #: help:hr.contract,voluntary_provident_fund:0 @@ -609,114 +617,117 @@ msgid "" "12% that has been mandated by the government and VPF computed as " "percentage(%)" msgstr "" +"VPF es una opción segura en la que puede contribuir más del límite máximo PF " +"del 12% como obligación por el gobierno y el VPF calculado como porcentaje " +"(%)" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: field:payment.advice.report,nbr:0 msgid "# Payment Lines" -msgstr "" +msgstr "Nº de líneas del pago" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Detalles de la nómina" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Payment Lines" -msgstr "" +msgstr "Líneas de pago" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,date:0 #: field:payment.advice.report,date:0 msgid "Date" -msgstr "" +msgstr "Fecha" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "November" -msgstr "" +msgstr "Noviembre" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: view:payslip.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros extendidos..." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payment_advice_report_all msgid "This report performs analysis on Payment Advices" -msgstr "" +msgstr "Este informe realiza un análisis en las notificaciones de pago" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "October" -msgstr "" +msgstr "Octubre" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Designation" -msgstr "" +msgstr "Designación" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Month of Payslip" -msgstr "" +msgstr "Mes de la nómina" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "January" -msgstr "" +msgstr "Enero" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 msgid "Pay Head Employee Breakup" -msgstr "" +msgstr "Desglose del salario de empleado" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_res_company msgid "Companies" -msgstr "" +msgstr "Compañías" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:payroll.advice:0 msgid "Authorized Signature" -msgstr "" +msgstr "Firma autorizada" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: l10n_in_hr_payroll #: field:hr.contract,supplementary_allowance:0 msgid "Supplementary Allowance" -msgstr "" +msgstr "Prestación complementaria" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice.line:0 msgid "Advice Lines" -msgstr "" +msgstr "Líneas de notificación" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "To," -msgstr "" +msgstr "A," #. module: l10n_in_hr_payroll #: help:hr.contract,driver_salay:0 msgid "Check this box if you provide allowance for driver" -msgstr "" +msgstr "Marque esta casilla si provee prestaciones para el conductor" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in draft state" -msgstr "" +msgstr "Nóminas en estado borrador" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -724,57 +735,59 @@ msgstr "" #: field:hr.payslip,advice_id:0 #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice msgid "Bank Advice" -msgstr "" +msgstr "Notificación bancaria" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Other No." -msgstr "" +msgstr "Nº otro" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Draft Advices" -msgstr "" +msgstr "Notificaciones en borrador" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,neft:0 msgid "Check this box if your company use online transfer for salary" msgstr "" +"Marque esta casilla si su compañía usa transferencia en línea para el pago " +"de nóminas" #. module: l10n_in_hr_payroll #: field:payment.advice.report,number:0 #: field:payslip.report,number:0 msgid "Number" -msgstr "" +msgstr "Número" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "September" -msgstr "" +msgstr "Septiembre" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Done" -msgstr "" +msgstr "Realizada" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Day of Payment Advices" -msgstr "" +msgstr "Día de notificaciones de pago" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Search Payment advice" -msgstr "" +msgstr "Buscar notificación de pago" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 @@ -782,16 +795,18 @@ msgid "" "This wizard will print report which display a pay head employee breakup for " "a specified dates." msgstr "" +"Este asistente imprimirá un informe que muestra el desglose del salario del " +"empleado para unas fechas específicas." #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Pay Slip Details" -msgstr "" +msgstr "Detalles de la nómina" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Total Salary" -msgstr "" +msgstr "Salario total" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,employee_id:0 @@ -800,44 +815,44 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,employee_id:0 msgid "Employee" -msgstr "" +msgstr "Empleado" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Compute Advice" -msgstr "" +msgstr "Calcular notificación" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Dear Sir/Madam," -msgstr "" +msgstr "Estimado/a Sr./Sra.," #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,note:0 msgid "Description" -msgstr "" +msgstr "Descripción" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "May" -msgstr "" +msgstr "Mayo" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Payroll" -msgstr "" +msgstr "Sueldos" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "NEFT" -msgstr "" +msgstr "NEFT" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Address" -msgstr "" +msgstr "Dirección" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -847,24 +862,24 @@ msgstr "" #: report:payroll.advice:0 #: report:salary.detail.byyear:0 msgid "Bank" -msgstr "" +msgstr "Banco" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,end_date:0 #: field:yearly.salary.detail,date_to:0 msgid "End Date" -msgstr "" +msgstr "Fecha final" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "February" -msgstr "" +msgstr "Febrero" #. module: l10n_in_hr_payroll #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "" +msgstr "¡El nombre de la compañía debe ser único!" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -874,7 +889,7 @@ msgstr "" #: field:payslip.report,name:0 #: report:salary.employee.bymonth:0 msgid "Name" -msgstr "" +msgstr "Nombre" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -882,12 +897,12 @@ msgstr "" #: view:yearly.salary.detail:0 #: field:yearly.salary.detail,employee_ids:0 msgid "Employees" -msgstr "" +msgstr "Empleados" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Bank Account" -msgstr "" +msgstr "Cuenta bancaria" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payslip_report_all @@ -895,87 +910,87 @@ msgstr "" #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payslip #: view:payslip.report:0 msgid "Payslip Analysis" -msgstr "" +msgstr "Análisis de las nóminas" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Name of the Employe" -msgstr "" +msgstr "Nombre del empleado" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Please define bank account for the %s employee" -msgstr "" +msgstr "Por favor, defina la cuenta bancaria para el empleado %s" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,start_date:0 #: field:yearly.salary.detail,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Fecha de inicio" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Allowance" -msgstr "" +msgstr "Prima" #. module: l10n_in_hr_payroll #: field:hr.contract,voluntary_provident_fund:0 msgid "Voluntary Provident Fund (%)" -msgstr "" +msgstr "Fondo de previsión voluntario (%)" #. module: l10n_in_hr_payroll #: field:hr.contract,house_rent_allowance_metro_nonmetro:0 msgid "House Rent Allowance (%)" -msgstr "" +msgstr "Prima de alquiler de la casa (%)" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,bank_id:0 msgid "Select the Bank from which the salary is going to be paid" -msgstr "" +msgstr "Seleccione el banco desde el que va a ser pagado el salario" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 msgid "Employee Pay Head Breakup" -msgstr "" +msgstr "Desglose del salario de empleado" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Phone No." -msgstr "" +msgstr "Nº de teléfono" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Credit" -msgstr "" +msgstr "Haber" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,name:0 #: report:payroll.advice:0 msgid "Bank Account No." -msgstr "" +msgstr "Nº de cuenta bancaria" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,date:0 msgid "Advice Date is used to search Payslips" -msgstr "" +msgstr "La fecha de notificación se usa para buscar nóminas" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Payslip Batches ready to be Adviced" -msgstr "" +msgstr "Paquete de nóminas listo para ser notificado" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Create Advice" -msgstr "" +msgstr "Crear notificación" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -983,13 +998,13 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,year:0 msgid "Year" -msgstr "" +msgstr "Año" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,neft:0 #: field:payment.advice.report,neft:0 msgid "NEFT Transaction" -msgstr "" +msgstr "Transacción NEFT" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 @@ -997,7 +1012,7 @@ msgstr "" #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: l10n_in_hr_payroll #: help:hr.contract,house_rent_allowance_metro_nonmetro:0 @@ -1006,8 +1021,12 @@ msgid "" "his rental or accommodation expenses for metro city it is 50 % and for non " "metro 40%.HRA computed as percentage(%)" msgstr "" +"La prima por alquiler de vivienda (HRA) es una prima dada por el empleador " +"al empleado para hacerse cargo de su alquiler o de gastos de alojamiento. " +"Para ciudades con metro es 50% y para ciudades sin metro es 40%. La HRA se " +"calcula en porcentaje (%)." #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Year of Payment Advices" -msgstr "" +msgstr "Año de notificaciones de pago" diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index b1e197d2b22..47522e625c0 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index c7a0d08874c..32f10fc1a97 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 406e7d33c8f..2e140d0050b 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index fa72b26b920..2beed253e68 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 8b5a52e414a..1e9014ba99d 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-01-01 13:59+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index df30ce5034c..7c491d1ca67 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index 28393375693..adfa3be60d5 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_it/i18n/ar.po b/addons/l10n_it/i18n/ar.po index 877237d0c87..2958a4b4816 100644 --- a/addons/l10n_it/i18n/ar.po +++ b/addons/l10n_it/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/ca.po b/addons/l10n_it/i18n/ca.po index 2d40db2aa09..93cbec561f2 100644 --- a/addons/l10n_it/i18n/ca.po +++ b/addons/l10n_it/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/da.po b/addons/l10n_it/i18n/da.po index 5be23c17006..a7c7cbc6d37 100644 --- a/addons/l10n_it/i18n/da.po +++ b/addons/l10n_it/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es.po b/addons/l10n_it/i18n/es.po index 1b4cae39db1..4fa2ce97cbe 100644 --- a/addons/l10n_it/i18n/es.po +++ b/addons/l10n_it/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_CR.po b/addons/l10n_it/i18n/es_CR.po index 86855ba1c4e..1419cc57721 100644 --- a/addons/l10n_it/i18n/es_CR.po +++ b/addons/l10n_it/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_PY.po b/addons/l10n_it/i18n/es_PY.po index ab4d1bae85a..beff73fbcb1 100644 --- a/addons/l10n_it/i18n/es_PY.po +++ b/addons/l10n_it/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/fr.po b/addons/l10n_it/i18n/fr.po index bb6f2abc55b..ffe5f209c33 100644 --- a/addons/l10n_it/i18n/fr.po +++ b/addons/l10n_it/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/gl.po b/addons/l10n_it/i18n/gl.po index 693e0bd0408..8f9d3fa259d 100644 --- a/addons/l10n_it/i18n/gl.po +++ b/addons/l10n_it/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/it.po b/addons/l10n_it/i18n/it.po index 0c507a5a97d..d93b7753748 100644 --- a/addons/l10n_it/i18n/it.po +++ b/addons/l10n_it/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/pt_BR.po b/addons/l10n_it/i18n/pt_BR.po index 69c12d7cd38..e79adc36a68 100644 --- a/addons/l10n_it/i18n/pt_BR.po +++ b/addons/l10n_it/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/sl.po b/addons/l10n_it/i18n/sl.po index 6cd7a810584..0f37622dc6a 100644 --- a/addons/l10n_it/i18n/sl.po +++ b/addons/l10n_it/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-12-23 09:56+0000\n" "PO-Revision-Date: 2012-12-29 11:18+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/tr.po b/addons/l10n_it/i18n/tr.po index 4efd6efde23..495034148b1 100644 --- a/addons/l10n_it/i18n/tr.po +++ b/addons/l10n_it/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_lu/i18n/ar.po b/addons/l10n_lu/i18n/ar.po index 411318accbe..11b065dc6ab 100644 --- a/addons/l10n_lu/i18n/ar.po +++ b/addons/l10n_lu/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bg.po b/addons/l10n_lu/i18n/bg.po index e87f9d84a48..862b0c6575d 100644 --- a/addons/l10n_lu/i18n/bg.po +++ b/addons/l10n_lu/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bs.po b/addons/l10n_lu/i18n/bs.po index 28860531586..f883a3cad48 100644 --- a/addons/l10n_lu/i18n/bs.po +++ b/addons/l10n_lu/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ca.po b/addons/l10n_lu/i18n/ca.po index 9e5db1fd121..d7a87f2a2a9 100644 --- a/addons/l10n_lu/i18n/ca.po +++ b/addons/l10n_lu/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/cs.po b/addons/l10n_lu/i18n/cs.po index 9d7d9e8c6b4..52cde76e64d 100644 --- a/addons/l10n_lu/i18n/cs.po +++ b/addons/l10n_lu/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/da.po b/addons/l10n_lu/i18n/da.po index 679b18b02aa..c497e98dd7c 100644 --- a/addons/l10n_lu/i18n/da.po +++ b/addons/l10n_lu/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/de.po b/addons/l10n_lu/i18n/de.po index c961b3ad11b..60620f0bae3 100644 --- a/addons/l10n_lu/i18n/de.po +++ b/addons/l10n_lu/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es.po b/addons/l10n_lu/i18n/es.po index f8617cfda5b..179a9a2c7ee 100644 --- a/addons/l10n_lu/i18n/es.po +++ b/addons/l10n_lu/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index c75382e6f6d..42939747339 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_CR.po b/addons/l10n_lu/i18n/es_CR.po index 014610e6aee..7c435191cd0 100644 --- a/addons/l10n_lu/i18n/es_CR.po +++ b/addons/l10n_lu/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_PY.po b/addons/l10n_lu/i18n/es_PY.po index aca25d4cfd0..35530f68472 100644 --- a/addons/l10n_lu/i18n/es_PY.po +++ b/addons/l10n_lu/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/et.po b/addons/l10n_lu/i18n/et.po index a359ee0bc83..e56f59f381e 100644 --- a/addons/l10n_lu/i18n/et.po +++ b/addons/l10n_lu/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/fr.po b/addons/l10n_lu/i18n/fr.po index cdf1fc4a689..849b3458ee3 100644 --- a/addons/l10n_lu/i18n/fr.po +++ b/addons/l10n_lu/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/gl.po b/addons/l10n_lu/i18n/gl.po index d773fd1df15..46ce5a91088 100644 --- a/addons/l10n_lu/i18n/gl.po +++ b/addons/l10n_lu/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hr.po b/addons/l10n_lu/i18n/hr.po index 53d6585c7e8..20004d6943d 100644 --- a/addons/l10n_lu/i18n/hr.po +++ b/addons/l10n_lu/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hu.po b/addons/l10n_lu/i18n/hu.po index 5cec9f1ab41..07ee6a35dc0 100644 --- a/addons/l10n_lu/i18n/hu.po +++ b/addons/l10n_lu/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/id.po b/addons/l10n_lu/i18n/id.po index dd53a899022..653315589c7 100644 --- a/addons/l10n_lu/i18n/id.po +++ b/addons/l10n_lu/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/it.po b/addons/l10n_lu/i18n/it.po index 9da6834e04f..2735229e4b4 100644 --- a/addons/l10n_lu/i18n/it.po +++ b/addons/l10n_lu/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ko.po b/addons/l10n_lu/i18n/ko.po index d877314ec51..030dd76d538 100644 --- a/addons/l10n_lu/i18n/ko.po +++ b/addons/l10n_lu/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/lt.po b/addons/l10n_lu/i18n/lt.po index 324fe7928c5..f5e65ee2afd 100644 --- a/addons/l10n_lu/i18n/lt.po +++ b/addons/l10n_lu/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl.po b/addons/l10n_lu/i18n/nl.po index 98d40afd8f3..ac3c554e138 100644 --- a/addons/l10n_lu/i18n/nl.po +++ b/addons/l10n_lu/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index 73ebe8164f5..896e660652d 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/oc.po b/addons/l10n_lu/i18n/oc.po index 482adab6454..7c4e039dbcc 100644 --- a/addons/l10n_lu/i18n/oc.po +++ b/addons/l10n_lu/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pl.po b/addons/l10n_lu/i18n/pl.po index 2a427f29598..e5d95d65add 100644 --- a/addons/l10n_lu/i18n/pl.po +++ b/addons/l10n_lu/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt.po b/addons/l10n_lu/i18n/pt.po index e0f6c494e25..3cb6a5abe6d 100644 --- a/addons/l10n_lu/i18n/pt.po +++ b/addons/l10n_lu/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index 5bada51be0c..38205d27b16 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ro.po b/addons/l10n_lu/i18n/ro.po index 966a8ce59d2..0ddc7f43ed2 100644 --- a/addons/l10n_lu/i18n/ro.po +++ b/addons/l10n_lu/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ru.po b/addons/l10n_lu/i18n/ru.po index 4eaab035491..6532e1e0456 100644 --- a/addons/l10n_lu/i18n/ru.po +++ b/addons/l10n_lu/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sl.po b/addons/l10n_lu/i18n/sl.po index 0892c5fa8d9..c325aeb9a54 100644 --- a/addons/l10n_lu/i18n/sl.po +++ b/addons/l10n_lu/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-01-01 13:47+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sq.po b/addons/l10n_lu/i18n/sq.po index 633546f3116..ab3dd1b9aa6 100644 --- a/addons/l10n_lu/i18n/sq.po +++ b/addons/l10n_lu/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sr@latin.po b/addons/l10n_lu/i18n/sr@latin.po index 2f3de3a2202..ceac0363cd5 100644 --- a/addons/l10n_lu/i18n/sr@latin.po +++ b/addons/l10n_lu/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sv.po b/addons/l10n_lu/i18n/sv.po index a70198f2c99..8326625c017 100644 --- a/addons/l10n_lu/i18n/sv.po +++ b/addons/l10n_lu/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tlh.po b/addons/l10n_lu/i18n/tlh.po index 530a5ba4a43..17d8f9a1d23 100644 --- a/addons/l10n_lu/i18n/tlh.po +++ b/addons/l10n_lu/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tr.po b/addons/l10n_lu/i18n/tr.po index adb311e7118..4fb6fb1c404 100644 --- a/addons/l10n_lu/i18n/tr.po +++ b/addons/l10n_lu/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/uk.po b/addons/l10n_lu/i18n/uk.po index 5d5ef666e8b..daf155b2f29 100644 --- a/addons/l10n_lu/i18n/uk.po +++ b/addons/l10n_lu/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/vi.po b/addons/l10n_lu/i18n/vi.po index a666897a2e8..0ba445693ea 100644 --- a/addons/l10n_lu/i18n/vi.po +++ b/addons/l10n_lu/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index d9c28fd38e0..1525e7a8768 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index e6308c7d98f..530510cc18c 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_ma/i18n/ar.po b/addons/l10n_ma/i18n/ar.po index 182b3d11a2b..c42f7682e4e 100644 --- a/addons/l10n_ma/i18n/ar.po +++ b/addons/l10n_ma/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/ca.po b/addons/l10n_ma/i18n/ca.po index 8abde9f20aa..c55b93655b4 100644 --- a/addons/l10n_ma/i18n/ca.po +++ b/addons/l10n_ma/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/da.po b/addons/l10n_ma/i18n/da.po index 68f890289a4..7ebfaec3125 100644 --- a/addons/l10n_ma/i18n/da.po +++ b/addons/l10n_ma/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/de.po b/addons/l10n_ma/i18n/de.po index 8433047c70c..d208a007788 100644 --- a/addons/l10n_ma/i18n/de.po +++ b/addons/l10n_ma/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es.po b/addons/l10n_ma/i18n/es.po index afa6bc61a11..d53b0c03e41 100644 --- a/addons/l10n_ma/i18n/es.po +++ b/addons/l10n_ma/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_CR.po b/addons/l10n_ma/i18n/es_CR.po index 306356aa6b7..9156f38153a 100644 --- a/addons/l10n_ma/i18n/es_CR.po +++ b/addons/l10n_ma/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_PY.po b/addons/l10n_ma/i18n/es_PY.po index c5f2360a471..64d8bd022a5 100644 --- a/addons/l10n_ma/i18n/es_PY.po +++ b/addons/l10n_ma/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/fr.po b/addons/l10n_ma/i18n/fr.po index 1e04bce924e..ec818dd8e84 100644 --- a/addons/l10n_ma/i18n/fr.po +++ b/addons/l10n_ma/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/gl.po b/addons/l10n_ma/i18n/gl.po index a74b81732b9..9a873b93993 100644 --- a/addons/l10n_ma/i18n/gl.po +++ b/addons/l10n_ma/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/hu.po b/addons/l10n_ma/i18n/hu.po index 4a8cf85df5f..790822d8aaf 100644 --- a/addons/l10n_ma/i18n/hu.po +++ b/addons/l10n_ma/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/it.po b/addons/l10n_ma/i18n/it.po index ecafefdc8f3..492e73f5697 100644 --- a/addons/l10n_ma/i18n/it.po +++ b/addons/l10n_ma/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt.po b/addons/l10n_ma/i18n/pt.po index 769ca9cefe6..769adf06baf 100644 --- a/addons/l10n_ma/i18n/pt.po +++ b/addons/l10n_ma/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt_BR.po b/addons/l10n_ma/i18n/pt_BR.po index 732f17159da..3a807f3aa5b 100644 --- a/addons/l10n_ma/i18n/pt_BR.po +++ b/addons/l10n_ma/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sl.po b/addons/l10n_ma/i18n/sl.po index cd05f7280cc..ad6fca792bc 100644 --- a/addons/l10n_ma/i18n/sl.po +++ b/addons/l10n_ma/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-27 18:18+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sr@latin.po b/addons/l10n_ma/i18n/sr@latin.po index ed42b38bbd8..a4248011c6e 100644 --- a/addons/l10n_ma/i18n/sr@latin.po +++ b/addons/l10n_ma/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/tr.po b/addons/l10n_ma/i18n/tr.po index 693efe95f69..617ff5a9b4e 100644 --- a/addons/l10n_ma/i18n/tr.po +++ b/addons/l10n_ma/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 1a98ae5b2e1..1dfd5631337 100644 --- a/addons/l10n_multilang/i18n/ar.po +++ b/addons/l10n_multilang/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index dbb1874471c..48608620a59 100644 --- a/addons/l10n_multilang/i18n/de.po +++ b/addons/l10n_multilang/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es.po b/addons/l10n_multilang/i18n/es.po index 02bd8b00e91..416486624ca 100644 --- a/addons/l10n_multilang/i18n/es.po +++ b/addons/l10n_multilang/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es_CR.po b/addons/l10n_multilang/i18n/es_CR.po index c6aee3059f2..558996178f2 100644 --- a/addons/l10n_multilang/i18n/es_CR.po +++ b/addons/l10n_multilang/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/fr.po b/addons/l10n_multilang/i18n/fr.po index 973595b3068..3fcf78302d3 100644 --- a/addons/l10n_multilang/i18n/fr.po +++ b/addons/l10n_multilang/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hr.po b/addons/l10n_multilang/i18n/hr.po index d63832684e7..a3c26e8d017 100644 --- a/addons/l10n_multilang/i18n/hr.po +++ b/addons/l10n_multilang/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index 2a05cfe4c8e..ce942f5c3f7 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index c7ef144e8d0..ad372c3a431 100644 --- a/addons/l10n_multilang/i18n/nl.po +++ b/addons/l10n_multilang/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pl.po b/addons/l10n_multilang/i18n/pl.po index fec64f85a53..dac81278f0c 100644 --- a/addons/l10n_multilang/i18n/pl.po +++ b/addons/l10n_multilang/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt.po b/addons/l10n_multilang/i18n/pt.po index 32f7b6ef71e..9b15edb0856 100644 --- a/addons/l10n_multilang/i18n/pt.po +++ b/addons/l10n_multilang/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt_BR.po b/addons/l10n_multilang/i18n/pt_BR.po index e34acdaa40d..86f2fba86fe 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/ro.po b/addons/l10n_multilang/i18n/ro.po index 3065f43f2cc..417865b4fa6 100644 --- a/addons/l10n_multilang/i18n/ro.po +++ b/addons/l10n_multilang/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/sl.po b/addons/l10n_multilang/i18n/sl.po index d4bd953dc4e..cdcac23fd2c 100644 --- a/addons/l10n_multilang/i18n/sl.po +++ b/addons/l10n_multilang/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:06+0000\n" "PO-Revision-Date: 2012-12-29 11:13+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/tr.po b/addons/l10n_multilang/i18n/tr.po index 1757e446bf3..fc6193ba51b 100644 --- a/addons/l10n_multilang/i18n/tr.po +++ b/addons/l10n_multilang/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_nl/i18n/ar.po b/addons/l10n_nl/i18n/ar.po index ef270d4dcc8..3dcf33fb2c9 100644 --- a/addons/l10n_nl/i18n/ar.po +++ b/addons/l10n_nl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/ca.po b/addons/l10n_nl/i18n/ca.po index adcb755c906..eea344a05b2 100644 --- a/addons/l10n_nl/i18n/ca.po +++ b/addons/l10n_nl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/da.po b/addons/l10n_nl/i18n/da.po index bf78ca28749..4a8ecc5904c 100644 --- a/addons/l10n_nl/i18n/da.po +++ b/addons/l10n_nl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es.po b/addons/l10n_nl/i18n/es.po index f33fe94dad8..45307a43121 100644 --- a/addons/l10n_nl/i18n/es.po +++ b/addons/l10n_nl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_CR.po b/addons/l10n_nl/i18n/es_CR.po index 01cd8e26a49..aa6615645a8 100644 --- a/addons/l10n_nl/i18n/es_CR.po +++ b/addons/l10n_nl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_PY.po b/addons/l10n_nl/i18n/es_PY.po index 7809271e0c8..d5c6db2859c 100644 --- a/addons/l10n_nl/i18n/es_PY.po +++ b/addons/l10n_nl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/gl.po b/addons/l10n_nl/i18n/gl.po index fccdfa0f86a..613e4589812 100644 --- a/addons/l10n_nl/i18n/gl.po +++ b/addons/l10n_nl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/it.po b/addons/l10n_nl/i18n/it.po index d9f18b380c3..a59d8a77b26 100644 --- a/addons/l10n_nl/i18n/it.po +++ b/addons/l10n_nl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/nl.po b/addons/l10n_nl/i18n/nl.po index 7cea98b50ca..ab44f0d8234 100644 --- a/addons/l10n_nl/i18n/nl.po +++ b/addons/l10n_nl/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/pt_BR.po b/addons/l10n_nl/i18n/pt_BR.po index 371ec26fbdf..d228dd300a1 100644 --- a/addons/l10n_nl/i18n/pt_BR.po +++ b/addons/l10n_nl/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sl.po b/addons/l10n_nl/i18n/sl.po index bffa69aaa3b..ea242ef8601 100644 --- a/addons/l10n_nl/i18n/sl.po +++ b/addons/l10n_nl/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 10:50+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sr@latin.po b/addons/l10n_nl/i18n/sr@latin.po index d646ab6302b..c554ed1614f 100644 --- a/addons/l10n_nl/i18n/sr@latin.po +++ b/addons/l10n_nl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/tr.po b/addons/l10n_nl/i18n/tr.po index 7e2d3fc1fdf..a14a1fc6674 100644 --- a/addons/l10n_nl/i18n/tr.po +++ b/addons/l10n_nl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_pe/i18n/ar.po b/addons/l10n_pe/i18n/ar.po index 394297d3b5e..6e2b12fd8d0 100644 --- a/addons/l10n_pe/i18n/ar.po +++ b/addons/l10n_pe/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/br.po b/addons/l10n_pe/i18n/br.po index 13dcc032461..344cbf4d576 100644 --- a/addons/l10n_pe/i18n/br.po +++ b/addons/l10n_pe/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ca.po b/addons/l10n_pe/i18n/ca.po index 9eb30797943..9e1d6419070 100644 --- a/addons/l10n_pe/i18n/ca.po +++ b/addons/l10n_pe/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/de.po b/addons/l10n_pe/i18n/de.po index cafdbe3e755..7cb14e84d99 100644 --- a/addons/l10n_pe/i18n/de.po +++ b/addons/l10n_pe/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/es.po b/addons/l10n_pe/i18n/es.po index 14eb7ef695e..720198bcfb1 100644 --- a/addons/l10n_pe/i18n/es.po +++ b/addons/l10n_pe/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/et.po b/addons/l10n_pe/i18n/et.po index 10d4d966fc1..17aa39afddd 100644 --- a/addons/l10n_pe/i18n/et.po +++ b/addons/l10n_pe/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/fr.po b/addons/l10n_pe/i18n/fr.po index 8db54ae5d3b..6c5039b6bd3 100644 --- a/addons/l10n_pe/i18n/fr.po +++ b/addons/l10n_pe/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/gl.po b/addons/l10n_pe/i18n/gl.po index 15867dcc802..e9f2e98f99b 100644 --- a/addons/l10n_pe/i18n/gl.po +++ b/addons/l10n_pe/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/hu.po b/addons/l10n_pe/i18n/hu.po index 0bd799d7a51..e81293a77a1 100644 --- a/addons/l10n_pe/i18n/hu.po +++ b/addons/l10n_pe/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/it.po b/addons/l10n_pe/i18n/it.po index 53ce55b1376..494d84ee45d 100644 --- a/addons/l10n_pe/i18n/it.po +++ b/addons/l10n_pe/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt.po b/addons/l10n_pe/i18n/pt.po index 16bed77b176..a92f3359483 100644 --- a/addons/l10n_pe/i18n/pt.po +++ b/addons/l10n_pe/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt_BR.po b/addons/l10n_pe/i18n/pt_BR.po index f2a85f51faf..3dd54c6c68e 100644 --- a/addons/l10n_pe/i18n/pt_BR.po +++ b/addons/l10n_pe/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ru.po b/addons/l10n_pe/i18n/ru.po index e9bc04515b1..bcbfe21b0d6 100644 --- a/addons/l10n_pe/i18n/ru.po +++ b/addons/l10n_pe/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:20+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sl.po b/addons/l10n_pe/i18n/sl.po index a10073d1ccc..d65f93d49b8 100644 --- a/addons/l10n_pe/i18n/sl.po +++ b/addons/l10n_pe/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 11:16+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sr@latin.po b/addons/l10n_pe/i18n/sr@latin.po index 29512fed0b7..340a6ceb888 100644 --- a/addons/l10n_pe/i18n/sr@latin.po +++ b/addons/l10n_pe/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sv.po b/addons/l10n_pe/i18n/sv.po index 4b6c1a3e664..d5e3bc70989 100644 --- a/addons/l10n_pe/i18n/sv.po +++ b/addons/l10n_pe/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pl/i18n/ar.po b/addons/l10n_pl/i18n/ar.po index c3b37e9e8fa..a58a3191b5b 100644 --- a/addons/l10n_pl/i18n/ar.po +++ b/addons/l10n_pl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/ca.po b/addons/l10n_pl/i18n/ca.po index e5eb9f6cb7c..1ecb7713a77 100644 --- a/addons/l10n_pl/i18n/ca.po +++ b/addons/l10n_pl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/da.po b/addons/l10n_pl/i18n/da.po index b3de1f71dbe..70bec6640cb 100644 --- a/addons/l10n_pl/i18n/da.po +++ b/addons/l10n_pl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es.po b/addons/l10n_pl/i18n/es.po index b0df25eb368..89a8ece205e 100644 --- a/addons/l10n_pl/i18n/es.po +++ b/addons/l10n_pl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_CR.po b/addons/l10n_pl/i18n/es_CR.po index 68219127db9..f36a399f476 100644 --- a/addons/l10n_pl/i18n/es_CR.po +++ b/addons/l10n_pl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_PY.po b/addons/l10n_pl/i18n/es_PY.po index 3222ed4a9f2..05f2b35d7f5 100644 --- a/addons/l10n_pl/i18n/es_PY.po +++ b/addons/l10n_pl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/gl.po b/addons/l10n_pl/i18n/gl.po index 8afeefba168..ec6e2b5b22e 100644 --- a/addons/l10n_pl/i18n/gl.po +++ b/addons/l10n_pl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/it.po b/addons/l10n_pl/i18n/it.po index 64778ab1d68..2d70edaa818 100644 --- a/addons/l10n_pl/i18n/it.po +++ b/addons/l10n_pl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/pt_BR.po b/addons/l10n_pl/i18n/pt_BR.po index ff637388a96..be3b3421085 100644 --- a/addons/l10n_pl/i18n/pt_BR.po +++ b/addons/l10n_pl/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sl.po b/addons/l10n_pl/i18n/sl.po index 75a8394a577..4615fc12a59 100644 --- a/addons/l10n_pl/i18n/sl.po +++ b/addons/l10n_pl/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-30 23:24+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sr@latin.po b/addons/l10n_pl/i18n/sr@latin.po index aeaa9754c61..6b6f31b794d 100644 --- a/addons/l10n_pl/i18n/sr@latin.po +++ b/addons/l10n_pl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/tr.po b/addons/l10n_pl/i18n/tr.po index 2ca8d8ea914..b96adaf70f4 100644 --- a/addons/l10n_pl/i18n/tr.po +++ b/addons/l10n_pl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_syscohada/i18n/ar.po b/addons/l10n_syscohada/i18n/ar.po index dea239980f2..df6567b0669 100644 --- a/addons/l10n_syscohada/i18n/ar.po +++ b/addons/l10n_syscohada/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ca.po b/addons/l10n_syscohada/i18n/ca.po index 48127d9ea9d..a093f18a58f 100644 --- a/addons/l10n_syscohada/i18n/ca.po +++ b/addons/l10n_syscohada/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es.po b/addons/l10n_syscohada/i18n/es.po index 17036fdd807..a5cd52c54ec 100644 --- a/addons/l10n_syscohada/i18n/es.po +++ b/addons/l10n_syscohada/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es_CR.po b/addons/l10n_syscohada/i18n/es_CR.po index 1998cffd901..cc42f188c11 100644 --- a/addons/l10n_syscohada/i18n/es_CR.po +++ b/addons/l10n_syscohada/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/fr.po b/addons/l10n_syscohada/i18n/fr.po index 41ff0aad852..0a324cb97a6 100644 --- a/addons/l10n_syscohada/i18n/fr.po +++ b/addons/l10n_syscohada/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt.po b/addons/l10n_syscohada/i18n/pt.po index c0160400596..4f16aa3530d 100644 --- a/addons/l10n_syscohada/i18n/pt.po +++ b/addons/l10n_syscohada/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ro.po b/addons/l10n_syscohada/i18n/ro.po index 4514da2d4b8..afc2a35693f 100644 --- a/addons/l10n_syscohada/i18n/ro.po +++ b/addons/l10n_syscohada/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/sl.po b/addons/l10n_syscohada/i18n/sl.po index 92ef5f734aa..9aae1016499 100644 --- a/addons/l10n_syscohada/i18n/sl.po +++ b/addons/l10n_syscohada/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-01-01 13:48+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/tr.po b/addons/l10n_syscohada/i18n/tr.po index e1126e04b25..01f43f8801a 100644 --- a/addons/l10n_syscohada/i18n/tr.po +++ b/addons/l10n_syscohada/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_th/i18n/ar.po b/addons/l10n_th/i18n/ar.po index 5798a431456..d4c365cb3f6 100644 --- a/addons/l10n_th/i18n/ar.po +++ b/addons/l10n_th/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/ca.po b/addons/l10n_th/i18n/ca.po index 34935d8b9f8..7f1bd0859fe 100644 --- a/addons/l10n_th/i18n/ca.po +++ b/addons/l10n_th/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/da.po b/addons/l10n_th/i18n/da.po index 7480aa8b023..645cbfdda53 100644 --- a/addons/l10n_th/i18n/da.po +++ b/addons/l10n_th/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es.po b/addons/l10n_th/i18n/es.po index a40206a09de..c88531c3e16 100644 --- a/addons/l10n_th/i18n/es.po +++ b/addons/l10n_th/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_CR.po b/addons/l10n_th/i18n/es_CR.po index 3e585f05000..53d02e8aedc 100644 --- a/addons/l10n_th/i18n/es_CR.po +++ b/addons/l10n_th/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_PY.po b/addons/l10n_th/i18n/es_PY.po index b428d2bdbd6..96322669ced 100644 --- a/addons/l10n_th/i18n/es_PY.po +++ b/addons/l10n_th/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/gl.po b/addons/l10n_th/i18n/gl.po index 0ee63bde031..08116467643 100644 --- a/addons/l10n_th/i18n/gl.po +++ b/addons/l10n_th/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/it.po b/addons/l10n_th/i18n/it.po index 3f792fe7943..86391dd0ed5 100644 --- a/addons/l10n_th/i18n/it.po +++ b/addons/l10n_th/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/nb.po b/addons/l10n_th/i18n/nb.po index 264eee4d930..9a048f629d2 100644 --- a/addons/l10n_th/i18n/nb.po +++ b/addons/l10n_th/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt.po b/addons/l10n_th/i18n/pt.po index f26dcefe976..bc1d039ea22 100644 --- a/addons/l10n_th/i18n/pt.po +++ b/addons/l10n_th/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt_BR.po b/addons/l10n_th/i18n/pt_BR.po index 0eb1257321c..03b14ea7733 100644 --- a/addons/l10n_th/i18n/pt_BR.po +++ b/addons/l10n_th/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sl.po b/addons/l10n_th/i18n/sl.po index 1425e9680a3..c9b769dcaa1 100644 --- a/addons/l10n_th/i18n/sl.po +++ b/addons/l10n_th/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2012-12-29 11:19+0000\n" -"Last-Translator: Dusan Laznik \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sr@latin.po b/addons/l10n_th/i18n/sr@latin.po index eb8b94dd621..0f7b78e66a5 100644 --- a/addons/l10n_th/i18n/sr@latin.po +++ b/addons/l10n_th/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/th.po b/addons/l10n_th/i18n/th.po index c1ca11371c8..243d15c4a63 100644 --- a/addons/l10n_th/i18n/th.po +++ b/addons/l10n_th/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/tr.po b/addons/l10n_th/i18n/tr.po index 4aefccd8901..1d0496a4315 100644 --- a/addons/l10n_th/i18n/tr.po +++ b/addons/l10n_th/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_uk/i18n/ar.po b/addons/l10n_uk/i18n/ar.po index 8a52c70c261..20d648af793 100644 --- a/addons/l10n_uk/i18n/ar.po +++ b/addons/l10n_uk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bg.po b/addons/l10n_uk/i18n/bg.po index b2f1cfe97d2..f50b391b82f 100644 --- a/addons/l10n_uk/i18n/bg.po +++ b/addons/l10n_uk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bs.po b/addons/l10n_uk/i18n/bs.po index 971cf482fe4..de56f636fcb 100644 --- a/addons/l10n_uk/i18n/bs.po +++ b/addons/l10n_uk/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ca.po b/addons/l10n_uk/i18n/ca.po index c75cbd7f188..05ee36a0cbe 100644 --- a/addons/l10n_uk/i18n/ca.po +++ b/addons/l10n_uk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/cs.po b/addons/l10n_uk/i18n/cs.po index 74a60230747..1d5e243772f 100644 --- a/addons/l10n_uk/i18n/cs.po +++ b/addons/l10n_uk/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/da.po b/addons/l10n_uk/i18n/da.po index a4eecfb6d80..bf383d2e1f0 100644 --- a/addons/l10n_uk/i18n/da.po +++ b/addons/l10n_uk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/de.po b/addons/l10n_uk/i18n/de.po index 57de326f296..525dbaede5f 100644 --- a/addons/l10n_uk/i18n/de.po +++ b/addons/l10n_uk/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es.po b/addons/l10n_uk/i18n/es.po index 7e5878c5f45..9ae8542be80 100644 --- a/addons/l10n_uk/i18n/es.po +++ b/addons/l10n_uk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_CR.po b/addons/l10n_uk/i18n/es_CR.po index 586f5ac2ad1..19ed2f07386 100644 --- a/addons/l10n_uk/i18n/es_CR.po +++ b/addons/l10n_uk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_PY.po b/addons/l10n_uk/i18n/es_PY.po index 39e1fe07416..47328c8de60 100644 --- a/addons/l10n_uk/i18n/es_PY.po +++ b/addons/l10n_uk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/et.po b/addons/l10n_uk/i18n/et.po index 5bfaa791a3a..a5b5da43684 100644 --- a/addons/l10n_uk/i18n/et.po +++ b/addons/l10n_uk/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-24 05:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/fr.po b/addons/l10n_uk/i18n/fr.po index 44f895c0040..7516971f2ea 100644 --- a/addons/l10n_uk/i18n/fr.po +++ b/addons/l10n_uk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/gl.po b/addons/l10n_uk/i18n/gl.po index a68c9a134b5..71f9e12490d 100644 --- a/addons/l10n_uk/i18n/gl.po +++ b/addons/l10n_uk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hr.po b/addons/l10n_uk/i18n/hr.po index 53eb226175a..40d60fcbfb4 100644 --- a/addons/l10n_uk/i18n/hr.po +++ b/addons/l10n_uk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hu.po b/addons/l10n_uk/i18n/hu.po index d00bf7a3437..62059fe4d32 100644 --- a/addons/l10n_uk/i18n/hu.po +++ b/addons/l10n_uk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/id.po b/addons/l10n_uk/i18n/id.po index 64f28d4c593..11643542508 100644 --- a/addons/l10n_uk/i18n/id.po +++ b/addons/l10n_uk/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/it.po b/addons/l10n_uk/i18n/it.po index bbc290bbf8b..ae3c5ac1727 100644 --- a/addons/l10n_uk/i18n/it.po +++ b/addons/l10n_uk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ko.po b/addons/l10n_uk/i18n/ko.po index e3d85ded0e6..b1082c45e82 100644 --- a/addons/l10n_uk/i18n/ko.po +++ b/addons/l10n_uk/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/lt.po b/addons/l10n_uk/i18n/lt.po index 0d684008f4e..72750fbc769 100644 --- a/addons/l10n_uk/i18n/lt.po +++ b/addons/l10n_uk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/nl.po b/addons/l10n_uk/i18n/nl.po index 503ca08758a..2019721d03c 100644 --- a/addons/l10n_uk/i18n/nl.po +++ b/addons/l10n_uk/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/oc.po b/addons/l10n_uk/i18n/oc.po index 142221c0f36..72490010d01 100644 --- a/addons/l10n_uk/i18n/oc.po +++ b/addons/l10n_uk/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pl.po b/addons/l10n_uk/i18n/pl.po index 1b19ed4a6ed..273f6690be9 100644 --- a/addons/l10n_uk/i18n/pl.po +++ b/addons/l10n_uk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt.po b/addons/l10n_uk/i18n/pt.po index ad299a212a2..a7ee2315534 100644 --- a/addons/l10n_uk/i18n/pt.po +++ b/addons/l10n_uk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt_BR.po b/addons/l10n_uk/i18n/pt_BR.po index 41ff32bf7a5..57570ec3020 100644 --- a/addons/l10n_uk/i18n/pt_BR.po +++ b/addons/l10n_uk/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ro.po b/addons/l10n_uk/i18n/ro.po index 19d8b8e66e8..6c2e3538b43 100644 --- a/addons/l10n_uk/i18n/ro.po +++ b/addons/l10n_uk/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ru.po b/addons/l10n_uk/i18n/ru.po index db4ea7ecab9..53166329493 100644 --- a/addons/l10n_uk/i18n/ru.po +++ b/addons/l10n_uk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sl.po b/addons/l10n_uk/i18n/sl.po index 95119a433f9..c7c4d885d05 100644 --- a/addons/l10n_uk/i18n/sl.po +++ b/addons/l10n_uk/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-01-01 13:50+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sq.po b/addons/l10n_uk/i18n/sq.po index 70e1de46b5a..bddda4ebf4c 100644 --- a/addons/l10n_uk/i18n/sq.po +++ b/addons/l10n_uk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sr@latin.po b/addons/l10n_uk/i18n/sr@latin.po index 05686d9016c..89f6df9d9be 100644 --- a/addons/l10n_uk/i18n/sr@latin.po +++ b/addons/l10n_uk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sv.po b/addons/l10n_uk/i18n/sv.po index 41d08cd22e6..0069d4c4e4b 100644 --- a/addons/l10n_uk/i18n/sv.po +++ b/addons/l10n_uk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tlh.po b/addons/l10n_uk/i18n/tlh.po index 6952409067f..bc80dddd855 100644 --- a/addons/l10n_uk/i18n/tlh.po +++ b/addons/l10n_uk/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tr.po b/addons/l10n_uk/i18n/tr.po index dcb3a85c4fb..b3588478b8a 100644 --- a/addons/l10n_uk/i18n/tr.po +++ b/addons/l10n_uk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/uk.po b/addons/l10n_uk/i18n/uk.po index 664528b024b..bfda4cbce5d 100644 --- a/addons/l10n_uk/i18n/uk.po +++ b/addons/l10n_uk/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/vi.po b/addons/l10n_uk/i18n/vi.po index 55a12a6968d..16c87f62ae0 100644 --- a/addons/l10n_uk/i18n/vi.po +++ b/addons/l10n_uk/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_CN.po b/addons/l10n_uk/i18n/zh_CN.po index af1b77380c1..380941b4f7e 100644 --- a/addons/l10n_uk/i18n/zh_CN.po +++ b/addons/l10n_uk/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_TW.po b/addons/l10n_uk/i18n/zh_TW.po index 6d50b56ac78..1b8d818ef01 100644 --- a/addons/l10n_uk/i18n/zh_TW.po +++ b/addons/l10n_uk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_ve/i18n/ar.po b/addons/l10n_ve/i18n/ar.po index 8f85d511d70..4e0c2d14b58 100644 --- a/addons/l10n_ve/i18n/ar.po +++ b/addons/l10n_ve/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/ca.po b/addons/l10n_ve/i18n/ca.po index 6650217acb8..640983f8377 100644 --- a/addons/l10n_ve/i18n/ca.po +++ b/addons/l10n_ve/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/da.po b/addons/l10n_ve/i18n/da.po index 1e9a76704ca..e8adf9afe9f 100644 --- a/addons/l10n_ve/i18n/da.po +++ b/addons/l10n_ve/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/de.po b/addons/l10n_ve/i18n/de.po index b1c25e37ba1..4aaacbda572 100644 --- a/addons/l10n_ve/i18n/de.po +++ b/addons/l10n_ve/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es.po b/addons/l10n_ve/i18n/es.po index 3df22e19d41..afcaf06ee56 100644 --- a/addons/l10n_ve/i18n/es.po +++ b/addons/l10n_ve/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_CR.po b/addons/l10n_ve/i18n/es_CR.po index 90adb0afb69..fa4d59dec4b 100644 --- a/addons/l10n_ve/i18n/es_CR.po +++ b/addons/l10n_ve/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_PY.po b/addons/l10n_ve/i18n/es_PY.po index 2435830c6f6..ad765683e30 100644 --- a/addons/l10n_ve/i18n/es_PY.po +++ b/addons/l10n_ve/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/gl.po b/addons/l10n_ve/i18n/gl.po index c1fa9aea60b..11c3d8078e4 100644 --- a/addons/l10n_ve/i18n/gl.po +++ b/addons/l10n_ve/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/it.po b/addons/l10n_ve/i18n/it.po index 2dd25c3b746..3fe4f9560b8 100644 --- a/addons/l10n_ve/i18n/it.po +++ b/addons/l10n_ve/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt.po b/addons/l10n_ve/i18n/pt.po index 47993d9fcd7..bfda47a5cd1 100644 --- a/addons/l10n_ve/i18n/pt.po +++ b/addons/l10n_ve/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt_BR.po b/addons/l10n_ve/i18n/pt_BR.po index fb053b1b00e..1fd1db4673d 100644 --- a/addons/l10n_ve/i18n/pt_BR.po +++ b/addons/l10n_ve/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sl.po b/addons/l10n_ve/i18n/sl.po index 48c8c5ce1d3..0ea2eb7e24c 100644 --- a/addons/l10n_ve/i18n/sl.po +++ b/addons/l10n_ve/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-01-01 14:01+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sr@latin.po b/addons/l10n_ve/i18n/sr@latin.po index c041aa66a14..b3fb3adf599 100644 --- a/addons/l10n_ve/i18n/sr@latin.po +++ b/addons/l10n_ve/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/tr.po b/addons/l10n_ve/i18n/tr.po index 3be131f1225..6d8765fd6f3 100644 --- a/addons/l10n_ve/i18n/tr.po +++ b/addons/l10n_ve/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index 5fd5b2aa857..262558a220c 100644 --- a/addons/lunch/i18n/ar.po +++ b/addons/lunch/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index b90f13eca9d..c717a2388f9 100644 --- a/addons/lunch/i18n/bg.po +++ b/addons/lunch/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index 8651763573d..37482a5f15a 100644 --- a/addons/lunch/i18n/ca.po +++ b/addons/lunch/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index 8b7f76fdf62..24ff305d81b 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index fa90bfed842..6a87a41ae69 100644 --- a/addons/lunch/i18n/da.po +++ b/addons/lunch/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index 417d75ca9d4..64b7ced428b 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index 8ddcde01866..6c93c422202 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -886,7 +886,7 @@ msgstr "Cancelar una comida significa que no la ha recibido del proveedor." #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "Pagos de los empleados" #. module: lunch #: view:lunch.cashmove:0 diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index 9ed19e43ab0..0cff7c2f884 100644 --- a/addons/lunch/i18n/es_CR.po +++ b/addons/lunch/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index f998dadfbf4..ad1886ca451 100644 --- a/addons/lunch/i18n/es_PY.po +++ b/addons/lunch/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 997296dcc91..1a8de5fea09 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index b7ad53d3433..f449631c2af 100644 --- a/addons/lunch/i18n/fr.po +++ b/addons/lunch/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index fed57275248..a7a84bb09e1 100644 --- a/addons/lunch/i18n/gl.po +++ b/addons/lunch/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index 99a1d69a1ac..94670f4831e 100644 --- a/addons/lunch/i18n/hr.po +++ b/addons/lunch/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index 348e4f90504..26216086b06 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index 69a3a812b64..eaca362e557 100644 --- a/addons/lunch/i18n/it.po +++ b/addons/lunch/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index 7079cbe59ab..bc5bc79f5b8 100644 --- a/addons/lunch/i18n/ja.po +++ b/addons/lunch/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 653f5e07b64..e4cc2a259a9 100644 --- a/addons/lunch/i18n/nl.po +++ b/addons/lunch/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index c23332361de..cc784bcbb7a 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index b33027c5ca5..d9cd0c0320e 100644 --- a/addons/lunch/i18n/pt_BR.po +++ b/addons/lunch/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -26,17 +26,17 @@ msgstr "Categoria" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_by_supplier_form msgid "Today's Orders by Supplier" -msgstr "" +msgstr "Pedidos de Hoje por Fornecedor" #. module: lunch #: view:lunch.order:0 msgid "My Orders" -msgstr "" +msgstr "Meus Pedidos" #. module: lunch #: selection:lunch.order,state:0 msgid "Partially Confirmed" -msgstr "" +msgstr "Parcialmente Confirmado" #. module: lunch #: view:lunch.cashmove:0 @@ -47,13 +47,13 @@ msgstr "Agrupar Por..." #. module: lunch #: field:lunch.alert,sunday:0 msgid "Sunday" -msgstr "" +msgstr "Domingo" #. module: lunch #: field:lunch.order.line,supplier:0 #: field:lunch.product,supplier:0 msgid "Supplier" -msgstr "" +msgstr "Fornecedor" #. module: lunch #: view:lunch.order.line:0 @@ -68,22 +68,22 @@ msgstr "Março" #. module: lunch #: view:lunch.cashmove:0 msgid "By Employee" -msgstr "" +msgstr "Por Funcionário" #. module: lunch #: field:lunch.alert,friday:0 msgid "Friday" -msgstr "" +msgstr "Sexta-feira" #. module: lunch #: view:lunch.validation:0 msgid "validate order lines" -msgstr "" +msgstr "validar linhas do pedido" #. module: lunch #: view:lunch.order.line:0 msgid "Order lines Tree" -msgstr "" +msgstr "Árvore de linhas do pedido" #. module: lunch #: field:lunch.alert,specific_day:0 @@ -95,12 +95,12 @@ msgstr "Dia" #: view:lunch.order.line:0 #: selection:lunch.order.line,state:0 msgid "Received" -msgstr "" +msgstr "Recebido" #. module: lunch #: view:lunch.order.line:0 msgid "By Supplier" -msgstr "" +msgstr "Por fornecedor" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_order_tree @@ -117,27 +117,39 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um pedido de almoço. \n" +"

\n" +"

\n" +" Um pedido de almoço é definido por usuário, data e linhas do " +"pedido.\n" +" Cada linha do pedido corresponde a um produto, uma " +"informação adicional e o valor.\n" +" Antes de selecionar suas linhas do pedido, não se esqueça de " +"ler os avisos mostrados na área avermelhada.\n" +"

\n" +" " #. module: lunch #: view:lunch.order.line:0 msgid "Not Received" -msgstr "" +msgstr "Não Recebido" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_by_supplier_form #: model:ir.ui.menu,name:lunch.menu_lunch_control_suppliers msgid "Orders by Supplier" -msgstr "" +msgstr "Pedidos por Fornecedor" #. module: lunch #: view:lunch.validation:0 msgid "Receive Meals" -msgstr "" +msgstr "Receber Refeições" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove form" -msgstr "" +msgstr "formulário de movimentação do caixa" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_cashmove_form @@ -151,6 +163,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"                 Aqui você pode ver seus movimentos de caixa.
Um " +"movimento de caixa pode ser uma despesa ou um pagamento.\n" +"                 Uma despesa é automaticamente criada quando uma ordem é " +"recebida, enquanto o pagamento é um reembolso para a empresa codificada pelo " +"gerente.\n" +"               \n" +" " #. module: lunch #: field:lunch.cashmove,amount:0 @@ -167,24 +187,24 @@ msgstr "Produtos" #. module: lunch #: view:lunch.order.line:0 msgid "By Date" -msgstr "" +msgstr "Por data" #. module: lunch #: selection:lunch.order,state:0 #: view:lunch.order.line:0 #: selection:lunch.order.line,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: lunch #: view:lunch.cashmove:0 msgid "lunch employee payment" -msgstr "" +msgstr "pagamento de almoço do funcionário" #. module: lunch #: view:lunch.alert:0 msgid "alert tree" -msgstr "" +msgstr "árvore de alerta" #. module: lunch #: model:ir.model,name:lunch.model_report_lunch_order_line @@ -194,23 +214,24 @@ msgstr "Estatísticas de Pedido de Almoço" #. module: lunch #: model:ir.model,name:lunch.model_lunch_alert msgid "Lunch Alert" -msgstr "" +msgstr "alerta de almoço" #. module: lunch #: code:addons/lunch/lunch.py:183 #, python-format msgid "Select a product and put your order comments on the note." msgstr "" +"Escolha um produto e coloque os comentários de seu pedido na observação" #. module: lunch #: selection:lunch.alert,alter_type:0 msgid "Every Week" -msgstr "" +msgstr "A cada Semana" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_cashmove msgid "Register Cash Moves" -msgstr "" +msgstr "Registrar Movimentos de Caixa" #. module: lunch #: selection:lunch.order,state:0 @@ -220,7 +241,7 @@ msgstr "Confirmado" #. module: lunch #: view:lunch.order:0 msgid "lunch orders" -msgstr "" +msgstr "Pedidos de Almoço" #. module: lunch #: view:lunch.order.line:0 @@ -230,22 +251,22 @@ msgstr "Confirmar" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_cashmove_form msgid "Your Account" -msgstr "" +msgstr "Sua Conta" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form msgid "Your Lunch Account" -msgstr "" +msgstr "Sua Conta de Almoço" #. module: lunch #: field:lunch.alert,active_from:0 msgid "Between" -msgstr "" +msgstr "Entre" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_order msgid "Wizard to order a meal" -msgstr "" +msgstr "Assistente para pedir refeições" #. module: lunch #: selection:lunch.order,state:0 @@ -257,7 +278,7 @@ msgstr "Novo" #: code:addons/lunch/lunch.py:180 #, python-format msgid "This is the first time you order a meal" -msgstr "" +msgstr "Esta é a primeira vez que você pede uma refeição" #. module: lunch #: field:report.lunch.order.line,price_total:0 @@ -267,7 +288,7 @@ msgstr "Preço Total" #. module: lunch #: model:ir.model,name:lunch.model_lunch_validation msgid "lunch validation for order" -msgstr "" +msgstr "validação de almoço para o pedido" #. module: lunch #: report:lunch.order.line:0 @@ -287,13 +308,13 @@ msgstr "Julho" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_config msgid "Configuration" -msgstr "" +msgstr "Configuração" #. module: lunch #: field:lunch.order,state:0 #: field:lunch.order.line,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: lunch #: view:lunch.order.order:0 @@ -301,17 +322,19 @@ msgid "" "Order a meal doesn't mean that we have to pay it.\n" " A meal should be paid when it is received." msgstr "" +"Pedir uma refeição não significa que temos que pagar.\n" +"                         A refeição deve ser paga quando ele é recebida." #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts #: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts msgid "Control Accounts" -msgstr "" +msgstr "Controlar Contas" #. module: lunch #: selection:lunch.alert,alter_type:0 msgid "Every Day" -msgstr "" +msgstr "Diariamente" #. module: lunch #: field:lunch.order.line,cashmove:0 @@ -321,12 +344,12 @@ msgstr "Movimentos do Caixa" #. module: lunch #: model:ir.actions.act_window,name:lunch.order_order_lines msgid "Order meals" -msgstr "" +msgstr "Pedir Refeições" #. module: lunch #: view:lunch.alert:0 msgid "Schedule Hour" -msgstr "" +msgstr "Agendar Horário" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -353,16 +376,30 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui você pode ver cada pedido agrupado por fornecedor e " +"data.\n" +"

\n" +"

\n" +" - Clique em para avisar " +"que o pedido foi efetuado
\n" +" - Clique em para avisar que o pedido chegou
\n" +" - Clique em X vermelho para avisar que o pedido não está disponível\n" +"

\n" +" " #. module: lunch #: field:lunch.alert,tuesday:0 msgid "Tuesday" -msgstr "" +msgstr "Terça-feira" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_tree msgid "Your Orders" -msgstr "" +msgstr "Seus Pedidos" #. module: lunch #: field:report.lunch.order.line,month:0 @@ -381,24 +418,32 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um produto para almoço. \n" +"

\n" +"

\n" +" Um produto é fefinido por seu nome, categoria, preço e " +"fornecedor.\n" +"

\n" +" " #. module: lunch #: view:lunch.alert:0 #: field:lunch.alert,message:0 msgid "Message" -msgstr "" +msgstr "Mensagem" #. module: lunch #: view:lunch.order.order:0 msgid "Order Meals" -msgstr "" +msgstr "Pedir Refeições" #. module: lunch #: view:lunch.cancel:0 #: view:lunch.order.order:0 #: view:lunch.validation:0 msgid "or" -msgstr "" +msgstr "ou" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_product_categories @@ -411,11 +456,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma categoria de almoço. \n" +"

\n" +"

\n" +" Aqui você pode definir cada categoria de almoço para os " +"produtos.\n" +"

\n" +" " #. module: lunch #: view:lunch.order.order:0 msgid "Order meal" -msgstr "" +msgstr "Pedir Refeição" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_product_categories @@ -426,58 +479,58 @@ msgstr "Categorias de Produtos" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_suppliers msgid "Control Suppliers" -msgstr "" +msgstr "Controlar Fornecedores" #. module: lunch #: view:lunch.alert:0 msgid "Schedule Date" -msgstr "" +msgstr "Data Agendada" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_alert #: model:ir.ui.menu,name:lunch.menu_lunch_alert #: field:lunch.order,alerts:0 msgid "Alerts" -msgstr "" +msgstr "Alertas" #. module: lunch #: field:lunch.order.line,note:0 #: field:report.lunch.order.line,note:0 msgid "Note" -msgstr "" +msgstr "Observação" #. module: lunch #: code:addons/lunch/lunch.py:250 #, python-format msgid "Add" -msgstr "" +msgstr "Adicionar" #. module: lunch #: view:lunch.product:0 #: view:lunch.product.category:0 msgid "Products Form" -msgstr "" +msgstr "Formulário de Produtos" #. module: lunch #: model:ir.actions.act_window,name:lunch.cancel_order_lines msgid "Cancel meals" -msgstr "" +msgstr "Cancelar refeições" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cashmove #: view:lunch.cashmove:0 msgid "lunch cashmove" -msgstr "" +msgstr "movimentação de caixa de almoço" #. module: lunch #: view:lunch.cancel:0 msgid "Are you sure you want to cancel these meals?" -msgstr "" +msgstr "Você tem certeza de que deseja cancelar estas refeições?" #. module: lunch #: view:lunch.cashmove:0 msgid "My Account" -msgstr "" +msgstr "Minha Conta" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -487,17 +540,17 @@ msgstr "Agosto" #. module: lunch #: field:lunch.alert,monday:0 msgid "Monday" -msgstr "" +msgstr "Segunda-feira" #. module: lunch #: field:lunch.order.line,name:0 msgid "unknown" -msgstr "" +msgstr "desconhecido" #. module: lunch #: model:ir.actions.act_window,name:lunch.validate_order_lines msgid "Receive meals" -msgstr "" +msgstr "Receber Refeições" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -521,12 +574,12 @@ msgstr "Almoço" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_line msgid "lunch order line" -msgstr "" +msgstr "Linha do pedido de almoço" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product msgid "lunch product" -msgstr "" +msgstr "produto de almoço" #. module: lunch #: field:lunch.order.line,user_id:0 @@ -549,18 +602,18 @@ msgstr "Novembro" #. module: lunch #: view:lunch.order:0 msgid "Orders Tree" -msgstr "" +msgstr "Árvore de Pedidos" #. module: lunch #: view:lunch.order:0 msgid "Orders Form" -msgstr "" +msgstr "Formulário de Pedidos" #. module: lunch #: view:lunch.alert:0 #: view:lunch.order.line:0 msgid "Search" -msgstr "" +msgstr "Procurar" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -586,6 +639,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui você pode ver os pedidos de hoje agrupado por " +"fornecedores.\n" +"

\n" +"

\n" +" - Clique em para avisar " +"que o almoço foi pedido
\n" +" - Clique em para avisar que o almoço chegou
\n" +" - Clique em para avisar que o pedido não está disponível\n" +"

\n" +" " #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -595,27 +662,27 @@ msgstr "Janeiro" #. module: lunch #: selection:lunch.alert,alter_type:0 msgid "Specific Day" -msgstr "" +msgstr "Dia Específico" #. module: lunch #: field:lunch.alert,wednesday:0 msgid "Wednesday" -msgstr "" +msgstr "Quarta-feira" #. module: lunch #: view:lunch.product.category:0 msgid "Product Category: " -msgstr "" +msgstr "Categoria de Produto " #. module: lunch #: field:lunch.alert,active_to:0 msgid "And" -msgstr "" +msgstr "E" #. module: lunch #: selection:lunch.order.line,state:0 msgid "Ordered" -msgstr "" +msgstr "Pedido" #. module: lunch #: field:report.lunch.order.line,date:0 @@ -625,7 +692,7 @@ msgstr "Data do Pedido" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel Orders" -msgstr "" +msgstr "Cancelar Pedidos" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_alert @@ -648,21 +715,39 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um alerta de almoço. \n" +"

\n" +"

\n" +" Alertas são usados ​​para avisar funcionários sobre " +"possíveis questões sobre os pedidos de almoço.\n" +"                 Para criar um alerta do almoço, você tem que definir a sua " +"recorrência, o intervalo de tempo durante o qual o alerta deve ser executado " +"e a mensagem a ser exibida.\n" +"

\n" +"

\n" +" Exemplo:
\n" +" - Recorrência: Diariamente
\n" +" - Intervalo de Tempo: de 00:00 hs até 23:59 hs
\n" +" - Mensagem: \"Você precisa pedir o almoço antes de 10:30 " +"hs\"\n" +"

\n" +" " #. module: lunch #: view:lunch.cancel:0 msgid "A cancelled meal should not be paid by employees." -msgstr "" +msgstr "Uma refeição cancelada não deve ser paga pelos funcionários." #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cash msgid "Administrate Cash Moves" -msgstr "" +msgstr "Administrar Movimentos de Caixa" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cancel msgid "cancel lunch order" -msgstr "" +msgstr "cancelar pedido de almoço" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -689,12 +774,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um pagamento. \n" +"

\n" +"

\n" +" Aqui você pode ver os pagamentos dos funcionários. Um " +"pagamento é um movimento de caixa do funcionário para a empresa.\n" +"

\n" +" " #. module: lunch #: code:addons/lunch/lunch.py:186 #, python-format msgid "Your favorite meals will be created based on your last orders." msgstr "" +"Suas refeições favoritas serão criadas baseada em seus últimos pedidos." #. module: lunch #: model:ir.module.category,description:lunch.module_lunch_category @@ -702,6 +796,9 @@ msgid "" "Helps you handle your lunch needs, if you are a manager you will be able to " "create new products, cashmoves and to confirm or cancel orders." msgstr "" +"Ajuda a lidar com as suas necessidades de almoço, se você é um gerente que " +"você vai ser capaz de criar novos produtos, movimentações de caixa e para " +"confirmar ou cancelar encomendas." #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_control_accounts @@ -718,22 +815,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo pagamento. \n" +"

\n" +"

\n" +" Um movimento de caixa pode ser tanto uma despesa ou um " +"pagamento.
\n" +" Uma despesa é criada automaticamente no recibo do " +"pedido.
\n" +" Um pagamento representa um reembolso do funcionário para a " +"empresa.\n" +"

\n" +" " #. module: lunch #: field:lunch.alert,alter_type:0 msgid "Recurrency" -msgstr "" +msgstr "Recorrência" #. module: lunch #: code:addons/lunch/lunch.py:189 #, python-format msgid "Don't forget the alerts displayed in the reddish area" -msgstr "" +msgstr "Não se esqueça dos alertas mostrados na área avermelhada" #. module: lunch #: field:lunch.alert,thursday:0 msgid "Thursday" -msgstr "" +msgstr "Quinta-feira" #. module: lunch #: report:lunch.order.line:0 @@ -767,34 +876,34 @@ msgstr "Preço" #. module: lunch #: field:lunch.cashmove,state:0 msgid "Is an order or a Payment" -msgstr "" +msgstr "é um pedido ou um Pagamento" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_form #: model:ir.ui.menu,name:lunch.menu_lunch_order_form msgid "New Order" -msgstr "" +msgstr "Novo Pedido" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove tree" -msgstr "" +msgstr "árvore de movimentação de caixa" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel a meal means that we didn't receive it from the supplier." -msgstr "" +msgstr "Cancelar uma refeição significa que nós não recebemos do fornecedor." #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "Pagamentos de Funcionários" #. module: lunch #: view:lunch.cashmove:0 #: selection:lunch.cashmove,state:0 msgid "Payment" -msgstr "" +msgstr "Pagamento" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -809,12 +918,12 @@ msgstr "Ano" #. module: lunch #: view:lunch.order:0 msgid "List" -msgstr "" +msgstr "Lista" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_admin msgid "Administrate Orders" -msgstr "" +msgstr "Administrar Pedidos" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -824,7 +933,7 @@ msgstr "Abril" #. module: lunch #: view:lunch.order:0 msgid "Select your order" -msgstr "" +msgstr "Escolha seu pedido" #. module: lunch #: field:lunch.cashmove,order_id:0 @@ -845,22 +954,22 @@ msgstr "Pedido de Almoço" #. module: lunch #: view:lunch.order.order:0 msgid "Are you sure you want to order these meals?" -msgstr "" +msgstr "Você tem certeza de que deseja pedir estas refeições?" #. module: lunch #: view:lunch.cancel:0 msgid "cancel order lines" -msgstr "" +msgstr "cancelar linhas do pedido" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category msgid "lunch product category" -msgstr "" +msgstr "categoria de produto de almoço" #. module: lunch #: field:lunch.alert,saturday:0 msgid "Saturday" -msgstr "" +msgstr "Sábado" #. module: lunch #: model:res.groups,name:lunch.group_lunch_manager @@ -870,17 +979,19 @@ msgstr "Gerente" #. module: lunch #: view:lunch.validation:0 msgid "Did your received these meals?" -msgstr "" +msgstr "Você recebeu essas refeições?" #. module: lunch #: view:lunch.validation:0 msgid "Once a meal is received a new cash move is created for the employee." msgstr "" +"Assim que a refeição é recebida, um movimento de caixa é criado para o " +"funcionário." #. module: lunch #: view:lunch.product:0 msgid "Products Tree" -msgstr "" +msgstr "Árvore de Produtos" #. module: lunch #: view:lunch.cashmove:0 @@ -888,9 +999,9 @@ msgstr "" #: field:lunch.order,total:0 #: view:lunch.order.line:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree msgid "Previous Orders" -msgstr "" +msgstr "Pedidos Anteriores" diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index b03d3dd530f..c15463a2506 100644 --- a/addons/lunch/i18n/ro.po +++ b/addons/lunch/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 118a0e20b60..d19b1c2671c 100644 --- a/addons/lunch/i18n/ru.po +++ b/addons/lunch/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index 778c68812d2..4e9f990d4a6 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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: lunch diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index 6a88bc3a5d2..780ee6c9708 100644 --- a/addons/lunch/i18n/sr@latin.po +++ b/addons/lunch/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 6c51f45de0f..72c0749025b 100644 --- a/addons/lunch/i18n/sv.po +++ b/addons/lunch/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index b6bcd0dec3e..16138844ce0 100644 --- a/addons/lunch/i18n/tr.po +++ b/addons/lunch/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index 010fe1f5205..c946fe56408 100644 --- a/addons/lunch/i18n/zh_CN.po +++ b/addons/lunch/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index b0a5efd2f16..b83ec51427b 100644 --- a/addons/lunch/i18n/zh_TW.po +++ b/addons/lunch/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index 11bffac58db..cc3c17a5513 100644 --- a/addons/mail/i18n/ar.po +++ b/addons/mail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 3ab8cbaf23a..4ecc2b34be8 100644 --- a/addons/mail/i18n/bg.po +++ b/addons/mail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 02bbc6dde4d..ab83fedf4bb 100644 --- a/addons/mail/i18n/ca.po +++ b/addons/mail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index 124b3faa3e4..d1aa59d22ad 100644 --- a/addons/mail/i18n/da.po +++ b/addons/mail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 3bc9a2300bf..c460f3d6e0a 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index f6b0f3c3234..4e06dbd719e 100644 --- a/addons/mail/i18n/es.po +++ b/addons/mail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 @@ -46,7 +46,7 @@ msgstr "Destinatarios del mensaje" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Activado por defecto en la suscripción." #. module: mail #: view:mail.message:0 @@ -85,7 +85,7 @@ msgstr "Componer correo electrónico" #: code:addons/mail/static/src/xml/mail.xml:132 #, python-format msgid "Add them into recipients and followers" -msgstr "" +msgstr "Añadirlos a los destinatarios y seguidores" #. module: mail #: view:mail.group:0 @@ -127,12 +127,12 @@ msgstr "Asistente de redacción de correo electrónico." #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Añadir otros" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Padre" #. module: mail #: field:mail.group,message_unread:0 @@ -205,7 +205,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:194 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Error de subida" #. module: mail #: model:mail.group,name:mail.group_support @@ -291,7 +291,7 @@ msgstr "subiendo" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "más." #. module: mail #: help:mail.compose.message,type:0 @@ -310,6 +310,9 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"Campo usado para enlazar el modelo relacionado al modelo de subtipo cuando " +"se utiliza suscripción automática en el documento relacionado. El campo se " +"usa para calcular getattr(relacionado.campo_relacionado)." #. module: mail #: selection:mail.mail,state:0 @@ -422,7 +425,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Campo relación" #. module: mail #: selection:mail.compose.message,type:0 @@ -679,7 +682,7 @@ msgstr "Avanzado" #: code:addons/mail/static/src/xml/mail.xml:226 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Mover a la bandeja de entrada" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 @@ -779,7 +782,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Subtipos de mensaje" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -943,6 +946,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Descripción que se añadirá en el mensaje mandado para este subtipo. Si no se " +"rellena, se pondrá el nombre en su lugar." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -960,6 +965,7 @@ msgstr "Grupo" #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"El usuario actual tiene una notificación destacada asociada a este mensaje" #. module: mail #: field:mail.group,public:0 @@ -976,7 +982,7 @@ msgstr "Notificación" #: code:addons/mail/static/src/js/mail.js:585 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Complete por favor la información de la empresa" #. module: mail #: view:mail.wizard.invite:0 @@ -986,7 +992,7 @@ msgstr "Añadir seguidores" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Seguidores de los elementos seleccionados y" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1182,7 +1188,7 @@ msgstr "Marcar 'Por realizar'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Subtipo del padre, usado para la suscripción automática." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1201,6 +1207,8 @@ msgstr "Resumen" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Modelo al que aplica el subtipo. Si no está establecido, este subtipo aplica " +"a todos los modelos." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1220,7 +1228,7 @@ msgstr "Formulario de grupo" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Destacado" #. module: mail #. openerp-web @@ -1268,7 +1276,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "Y" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1306,7 +1314,7 @@ msgstr "Cc" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Mensaje destacado que va al buzón 'Por realizar'" #. module: mail #. openerp-web @@ -1349,7 +1357,7 @@ msgstr "Seguir" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Nombre" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1452,7 +1460,7 @@ msgstr "Seguidores del documento" #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Eliminar este seguidor" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1486,6 +1494,7 @@ msgstr "Contenido con texto enriquecido" #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"El usuario actual tiene una notificación sin leer asociada a este mensaje" #. module: mail #: help:res.partner,notification_email_send:0 @@ -1518,7 +1527,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:195 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Por favor, espere mientras el archivo sube." #. module: mail #: view:mail.group:0 @@ -1585,7 +1594,7 @@ msgstr "otros..." #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Por realizar" #. module: mail #: view:mail.alias:0 diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index e45b10130c2..93151f1f45b 100644 --- a/addons/mail/i18n/es_CR.po +++ b/addons/mail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index f5705120ebb..481f6eefca1 100644 --- a/addons/mail/i18n/es_PY.po +++ b/addons/mail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index 4c59aad8fc4..841b2c49c67 100644 --- a/addons/mail/i18n/et.po +++ b/addons/mail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index 97ad2229cb9..4c8af17e401 100644 --- a/addons/mail/i18n/fi.po +++ b/addons/mail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index 611606dfd40..c9048e8b26c 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index f02858fde55..33ce51dea9c 100644 --- a/addons/mail/i18n/gl.po +++ b/addons/mail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index 04399f440bf..c211bb41666 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 7bceb176e2e..4cbab2f210b 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index 9e6e4324809..f942f6acd1a 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index 9f612a425d2..8a396d073a3 100644 --- a/addons/mail/i18n/ja.po +++ b/addons/mail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index c2d1125f882..882e084bd73 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index 2acef198fa3..e68b5981699 100644 --- a/addons/mail/i18n/lv.po +++ b/addons/mail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index a55dbf887fc..2e58c051b7a 100644 --- a/addons/mail/i18n/mn.po +++ b/addons/mail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index 05696613250..7b4384c5066 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index 4f85cf9b10b..70281521c3a 100644 --- a/addons/mail/i18n/pl.po +++ b/addons/mail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index a24b18a1e4b..a8b8761bb84 100644 --- a/addons/mail/i18n/pt.po +++ b/addons/mail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index 88830581745..ae692f297ae 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index 3666de3ade9..faf1b30ea21 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index e0c56f90f88..f97fbeb776c 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 1f7840566de..536e4668b00 100644 --- a/addons/mail/i18n/sl.po +++ b/addons/mail/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-08 11:17+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 6d85246c2ba..7acdac87b2a 100644 --- a/addons/mail/i18n/sr@latin.po +++ b/addons/mail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index cbdb6fef849..1e4fe72d1e9 100644 --- a/addons/mail/i18n/sv.po +++ b/addons/mail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 700f8c75671..46cda01adea 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index 90412fb154b..2ae8015905e 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 @@ -46,7 +46,7 @@ msgstr "收件人" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "订阅时,默认激活" #. module: mail #: view:mail.message:0 @@ -83,7 +83,7 @@ msgstr "编辑邮件" #: code:addons/mail/static/src/xml/mail.xml:132 #, python-format msgid "Add them into recipients and followers" -msgstr "" +msgstr "将他们加入到收件人和关注者" #. module: mail #: view:mail.group:0 @@ -123,12 +123,12 @@ msgstr "电子邮件撰写向导" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "加入其它的" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "上级" #. module: mail #: field:mail.group,message_unread:0 @@ -195,7 +195,7 @@ msgstr "群组的中等尺寸照片。它们被缩放为128x128px,纵横比保 #: code:addons/mail/static/src/xml/mail.xml:194 #, python-format msgid "Uploading error" -msgstr "" +msgstr "上传错误" #. module: mail #: model:mail.group,name:mail.group_support @@ -231,7 +231,7 @@ msgstr "线程" #: code:addons/mail/static/src/xml/mail.xml:37 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "新邮件的完整界面" #. module: mail #. openerp-web @@ -280,7 +280,7 @@ msgstr "上传中" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "更多." #. module: mail #: help:mail.compose.message,type:0 @@ -404,7 +404,7 @@ msgstr "相应于这个别名对应的模型(Openerp的单据种类)。任 #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "关联字段" #. module: mail #: selection:mail.compose.message,type:0 @@ -576,7 +576,7 @@ msgstr "<<<" #: code:addons/mail/static/src/xml/mail.xml:43 #, python-format msgid "Write to the followers of this document..." -msgstr "" +msgstr "写给这些单据的关注者" #. module: mail #: field:mail.group,group_public_id:0 @@ -658,7 +658,7 @@ msgstr "高级" #: code:addons/mail/static/src/xml/mail.xml:226 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "移动到收件箱" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 @@ -705,7 +705,7 @@ msgstr "取消" #: code:addons/mail/static/src/xml/mail.xml:44 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "分享给我的关注者" #. module: mail #: field:mail.notification,partner_id:0 @@ -717,7 +717,7 @@ msgstr "联系人" msgid "" "Only the invited followers can read the\n" " discussions on this group." -msgstr "" +msgstr "该组中,只有受邀请的关注者可以阅读这些讨论" #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -752,7 +752,7 @@ msgstr "当创建别名的新记录时,一个Python字典被提供作为默认 #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "消息子类型" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -922,7 +922,7 @@ msgstr "群组" #: help:mail.compose.message,starred:0 #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" -msgstr "" +msgstr "当前用户用 星号 提醒关联到这条消息" #. module: mail #: field:mail.group,public:0 @@ -939,7 +939,7 @@ msgstr "通知" #: code:addons/mail/static/src/js/mail.js:585 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "请完成上级的信息" #. module: mail #: view:mail.wizard.invite:0 @@ -949,7 +949,7 @@ msgstr "增加关注者" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "选中项目的关注者和" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1136,7 +1136,7 @@ msgstr "标记为待办事项" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "上级子类型,用来自动订阅" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1154,7 +1154,7 @@ msgstr "摘要" #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." -msgstr "" +msgstr "子类型适用的模型:如果 假,子类型适用于所有模块" #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1174,7 +1174,7 @@ msgstr "群组表单" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "加星的邮件" #. module: mail #. openerp-web @@ -1218,7 +1218,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "与" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1254,7 +1254,7 @@ msgstr "抄送" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "加星号的消息进入到 待办事项 邮箱" #. module: mail #. openerp-web @@ -1296,7 +1296,7 @@ msgstr "关注" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "姓名" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1395,7 +1395,7 @@ msgstr "文档关注者" #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "取消此关注者" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1428,7 +1428,7 @@ msgstr "富文本内容" #: help:mail.compose.message,to_read:0 #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" -msgstr "" +msgstr "当前用户有关联到这条消息的未读的提醒" #. module: mail #: help:res.partner,notification_email_send:0 @@ -1460,7 +1460,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:195 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "当文件上传时,请等待。" #. module: mail #: view:mail.group:0 @@ -1470,6 +1470,8 @@ msgid "" "installed\n" " the portal module." msgstr "" +"这个群主所有人可见。\n" +" 如果你安装了门户模块,包括你的客户" #. module: mail #. openerp-web @@ -1523,7 +1525,7 @@ msgstr "其它..." #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "待办事项" #. module: mail #: view:mail.alias:0 @@ -1644,6 +1646,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 没有待办事项\n" +"

\n" +" 当你处理收件箱里的消息时,你能标记一些消息作为待办事项. \n" +" 从这个菜单,你能处理你所有的待办事项。\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index 76a896856a6..064e20f6ab2 100644 --- a/addons/mail/i18n/zh_TW.po +++ b/addons/mail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/marketing/i18n/ar.po b/addons/marketing/i18n/ar.po index ac87af71d54..d67f62fb539 100644 --- a/addons/marketing/i18n/ar.po +++ b/addons/marketing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/bg.po b/addons/marketing/i18n/bg.po index 654c1d6854a..61032783406 100644 --- a/addons/marketing/i18n/bg.po +++ b/addons/marketing/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ca.po b/addons/marketing/i18n/ca.po index 77b0271386d..4a2d7947961 100644 --- a/addons/marketing/i18n/ca.po +++ b/addons/marketing/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/cs.po b/addons/marketing/i18n/cs.po index 0aa21519ae1..1383e75e4d2 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/da.po b/addons/marketing/i18n/da.po index 21fa2100559..6d42ad75d9d 100644 --- a/addons/marketing/i18n/da.po +++ b/addons/marketing/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/de.po b/addons/marketing/i18n/de.po index e6dc8ffe4fc..d14535b65b6 100644 --- a/addons/marketing/i18n/de.po +++ b/addons/marketing/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/el.po b/addons/marketing/i18n/el.po index 0ed5964da82..8aa44feb32a 100644 --- a/addons/marketing/i18n/el.po +++ b/addons/marketing/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es.po b/addons/marketing/i18n/es.po index fa1bbf21c1c..6cd2e21006c 100644 --- a/addons/marketing/i18n/es.po +++ b/addons/marketing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es_CR.po b/addons/marketing/i18n/es_CR.po index 3a6b66e46ee..5a902d10dc3 100644 --- a/addons/marketing/i18n/es_CR.po +++ b/addons/marketing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fi.po b/addons/marketing/i18n/fi.po index 6854a4676bc..b786de98495 100644 --- a/addons/marketing/i18n/fi.po +++ b/addons/marketing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fr.po b/addons/marketing/i18n/fr.po index b34515c0b86..34133d9921b 100644 --- a/addons/marketing/i18n/fr.po +++ b/addons/marketing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/gl.po b/addons/marketing/i18n/gl.po index aacaf3fc0c9..baddc2341d3 100644 --- a/addons/marketing/i18n/gl.po +++ b/addons/marketing/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hr.po b/addons/marketing/i18n/hr.po index f6f21158ee6..23ecc9b9d2b 100644 --- a/addons/marketing/i18n/hr.po +++ b/addons/marketing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hu.po b/addons/marketing/i18n/hu.po index 68cb13a8f86..aea98fd3b1a 100644 --- a/addons/marketing/i18n/hu.po +++ b/addons/marketing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/id.po b/addons/marketing/i18n/id.po index 76ee11a4a24..3320a197e6d 100644 --- a/addons/marketing/i18n/id.po +++ b/addons/marketing/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/it.po b/addons/marketing/i18n/it.po index a22b8a31d3e..a9179edc5b2 100644 --- a/addons/marketing/i18n/it.po +++ b/addons/marketing/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ja.po b/addons/marketing/i18n/ja.po index 6780677399e..086ecdcf517 100644 --- a/addons/marketing/i18n/ja.po +++ b/addons/marketing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lt.po b/addons/marketing/i18n/lt.po index 136a9a3d8be..0e70edebffd 100644 --- a/addons/marketing/i18n/lt.po +++ b/addons/marketing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lv.po b/addons/marketing/i18n/lv.po index 8091fb66972..ea842f65cef 100644 --- a/addons/marketing/i18n/lv.po +++ b/addons/marketing/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/mn.po b/addons/marketing/i18n/mn.po index 647a1587a75..20d4a18cb6d 100644 --- a/addons/marketing/i18n/mn.po +++ b/addons/marketing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nb.po b/addons/marketing/i18n/nb.po index a20342ac867..e5a47be342e 100644 --- a/addons/marketing/i18n/nb.po +++ b/addons/marketing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nl.po b/addons/marketing/i18n/nl.po index 51718a71c00..41809489b9d 100644 --- a/addons/marketing/i18n/nl.po +++ b/addons/marketing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pl.po b/addons/marketing/i18n/pl.po index de1e3d74abf..c8d7ac35d33 100644 --- a/addons/marketing/i18n/pl.po +++ b/addons/marketing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt.po b/addons/marketing/i18n/pt.po index 0d0d9795696..8357ba530e0 100644 --- a/addons/marketing/i18n/pt.po +++ b/addons/marketing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt_BR.po b/addons/marketing/i18n/pt_BR.po index 375ba15c0c6..826a894930b 100644 --- a/addons/marketing/i18n/pt_BR.po +++ b/addons/marketing/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ro.po b/addons/marketing/i18n/ro.po index 2ff9f8383a1..1208f639ac3 100644 --- a/addons/marketing/i18n/ro.po +++ b/addons/marketing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ru.po b/addons/marketing/i18n/ru.po index 510a0be574d..f822eb9a827 100644 --- a/addons/marketing/i18n/ru.po +++ b/addons/marketing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sk.po b/addons/marketing/i18n/sk.po index bb1ff2f24fd..434db66e75d 100644 --- a/addons/marketing/i18n/sk.po +++ b/addons/marketing/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sl.po b/addons/marketing/i18n/sl.po index fec382bb406..4eb47da9573 100644 --- a/addons/marketing/i18n/sl.po +++ b/addons/marketing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr.po b/addons/marketing/i18n/sr.po index 6a1ff2bc160..d8e3aae65ff 100644 --- a/addons/marketing/i18n/sr.po +++ b/addons/marketing/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr@latin.po b/addons/marketing/i18n/sr@latin.po index 09b67610d75..4ddff727539 100644 --- a/addons/marketing/i18n/sr@latin.po +++ b/addons/marketing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sv.po b/addons/marketing/i18n/sv.po index 2f378e7f3ef..96f3146561f 100644 --- a/addons/marketing/i18n/sv.po +++ b/addons/marketing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/th.po b/addons/marketing/i18n/th.po index 45ec6ca49a6..16d1eeb7c28 100644 --- a/addons/marketing/i18n/th.po +++ b/addons/marketing/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/tr.po b/addons/marketing/i18n/tr.po index f1e4e9d6332..bdfc5d9380c 100644 --- a/addons/marketing/i18n/tr.po +++ b/addons/marketing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/zh_CN.po b/addons/marketing/i18n/zh_CN.po index 5e69c3cedba..6d331e36cac 100644 --- a/addons/marketing/i18n/zh_CN.po +++ b/addons/marketing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/zh_TW.po b/addons/marketing/i18n/zh_TW.po index 0055b27aa24..fb407fbd657 100644 --- a/addons/marketing/i18n/zh_TW.po +++ b/addons/marketing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing_campaign/i18n/ar.po b/addons/marketing_campaign/i18n/ar.po index e02741c75cf..ab46e4bd797 100644 --- a/addons/marketing_campaign/i18n/ar.po +++ b/addons/marketing_campaign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/bg.po b/addons/marketing_campaign/i18n/bg.po index 7c2bd10b06d..04076974215 100644 --- a/addons/marketing_campaign/i18n/bg.po +++ b/addons/marketing_campaign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ca.po b/addons/marketing_campaign/i18n/ca.po index 87fb8b21d18..40f41fcad2e 100644 --- a/addons/marketing_campaign/i18n/ca.po +++ b/addons/marketing_campaign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/da.po b/addons/marketing_campaign/i18n/da.po index 2b9757edae3..19f3f66d005 100644 --- a/addons/marketing_campaign/i18n/da.po +++ b/addons/marketing_campaign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/de.po b/addons/marketing_campaign/i18n/de.po index 62b00123974..3b860b2ef84 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/el.po b/addons/marketing_campaign/i18n/el.po index fe17ed1e67e..6a4d3f68070 100644 --- a/addons/marketing_campaign/i18n/el.po +++ b/addons/marketing_campaign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es.po b/addons/marketing_campaign/i18n/es.po index 5ed08772a35..c91ac602260 100644 --- a/addons/marketing_campaign/i18n/es.po +++ b/addons/marketing_campaign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es_CR.po b/addons/marketing_campaign/i18n/es_CR.po index 3fb9b8c5845..4274a4e558e 100644 --- a/addons/marketing_campaign/i18n/es_CR.po +++ b/addons/marketing_campaign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fi.po b/addons/marketing_campaign/i18n/fi.po index cea71a51237..cfe9bfc0a63 100644 --- a/addons/marketing_campaign/i18n/fi.po +++ b/addons/marketing_campaign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fr.po b/addons/marketing_campaign/i18n/fr.po index 6e38662b8c9..f7e8e17d1e9 100644 --- a/addons/marketing_campaign/i18n/fr.po +++ b/addons/marketing_campaign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hi.po b/addons/marketing_campaign/i18n/hi.po index 002465afd42..bf45cf4a838 100644 --- a/addons/marketing_campaign/i18n/hi.po +++ b/addons/marketing_campaign/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hr.po b/addons/marketing_campaign/i18n/hr.po index 9a62dc505e4..3242092d233 100644 --- a/addons/marketing_campaign/i18n/hr.po +++ b/addons/marketing_campaign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hu.po b/addons/marketing_campaign/i18n/hu.po index 9f815416eb1..64192f6ca7b 100644 --- a/addons/marketing_campaign/i18n/hu.po +++ b/addons/marketing_campaign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/it.po b/addons/marketing_campaign/i18n/it.po index c0fe17761c2..8bd438c50c4 100644 --- a/addons/marketing_campaign/i18n/it.po +++ b/addons/marketing_campaign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ja.po b/addons/marketing_campaign/i18n/ja.po index ee577cacc4d..4c8539c3117 100644 --- a/addons/marketing_campaign/i18n/ja.po +++ b/addons/marketing_campaign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/lv.po b/addons/marketing_campaign/i18n/lv.po index e08412bae51..36813ecf722 100644 --- a/addons/marketing_campaign/i18n/lv.po +++ b/addons/marketing_campaign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/mn.po b/addons/marketing_campaign/i18n/mn.po index 54685e9759d..0fbc4928982 100644 --- a/addons/marketing_campaign/i18n/mn.po +++ b/addons/marketing_campaign/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/nl.po b/addons/marketing_campaign/i18n/nl.po index 7fb628036e9..79e99f4021b 100644 --- a/addons/marketing_campaign/i18n/nl.po +++ b/addons/marketing_campaign/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:21+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -848,7 +848,7 @@ msgstr "Hoe wordt de bestemming taak geactiveerd" #: selection:marketing.campaign.segment,state:0 #: selection:marketing.campaign.workitem,state:0 msgid "Done" -msgstr "Klaar" +msgstr "Verwerkt" #. module: marketing_campaign #: code:addons/marketing_campaign/marketing_campaign.py:214 @@ -1044,7 +1044,7 @@ msgstr "April" #, python-format msgid "The campaign cannot be marked as done before all segments are closed." msgstr "" -"de campagne kan niet worden aangemerkt als gereed, voordat alle segmenten " +"De campagne kan niet worden aangemerkt als verwerkt, voordat alle segmenten " "afgesloten zijn." #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/pl.po b/addons/marketing_campaign/i18n/pl.po index d922533e850..8a43e6c8bba 100644 --- a/addons/marketing_campaign/i18n/pl.po +++ b/addons/marketing_campaign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt.po b/addons/marketing_campaign/i18n/pt.po index 02c4f34a0aa..4889b19e8b2 100644 --- a/addons/marketing_campaign/i18n/pt.po +++ b/addons/marketing_campaign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt_BR.po b/addons/marketing_campaign/i18n/pt_BR.po index 4c6642787f6..e03f27c4b25 100644 --- a/addons/marketing_campaign/i18n/pt_BR.po +++ b/addons/marketing_campaign/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ro.po b/addons/marketing_campaign/i18n/ro.po index 52e6669aaad..9d9bbec3e3a 100644 --- a/addons/marketing_campaign/i18n/ro.po +++ b/addons/marketing_campaign/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ru.po b/addons/marketing_campaign/i18n/ru.po index ddebb417dbb..eac0031888f 100644 --- a/addons/marketing_campaign/i18n/ru.po +++ b/addons/marketing_campaign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sr@latin.po b/addons/marketing_campaign/i18n/sr@latin.po index e51e223e6d1..61382fc0b99 100644 --- a/addons/marketing_campaign/i18n/sr@latin.po +++ b/addons/marketing_campaign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sv.po b/addons/marketing_campaign/i18n/sv.po index 4ecb0e80a70..1f79e66bb4c 100644 --- a/addons/marketing_campaign/i18n/sv.po +++ b/addons/marketing_campaign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/tr.po b/addons/marketing_campaign/i18n/tr.po index 25c0af6209c..f08260eff40 100644 --- a/addons/marketing_campaign/i18n/tr.po +++ b/addons/marketing_campaign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/zh_CN.po b/addons/marketing_campaign/i18n/zh_CN.po index 013c3ea91b1..34f66df858f 100644 --- a/addons/marketing_campaign/i18n/zh_CN.po +++ b/addons/marketing_campaign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/ar.po b/addons/marketing_campaign_crm_demo/i18n/ar.po index 501deadf674..444e69f8467 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ar.po +++ b/addons/marketing_campaign_crm_demo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/bg.po b/addons/marketing_campaign_crm_demo/i18n/bg.po index 950b09dad6a..377b6b8439c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/bg.po +++ b/addons/marketing_campaign_crm_demo/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ca.po b/addons/marketing_campaign_crm_demo/i18n/ca.po index 517aa4238e7..52ccd7e3100 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ca.po +++ b/addons/marketing_campaign_crm_demo/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/da.po b/addons/marketing_campaign_crm_demo/i18n/da.po index 7e7052f9dba..0b76a4c073f 100644 --- a/addons/marketing_campaign_crm_demo/i18n/da.po +++ b/addons/marketing_campaign_crm_demo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/de.po b/addons/marketing_campaign_crm_demo/i18n/de.po index 9182df36760..9ae46b58661 100644 --- a/addons/marketing_campaign_crm_demo/i18n/de.po +++ b/addons/marketing_campaign_crm_demo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index cbdab4165d2..491fad9be8d 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es_CR.po b/addons/marketing_campaign_crm_demo/i18n/es_CR.po index 9a49ea75353..a8d7ca35f90 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es_CR.po +++ b/addons/marketing_campaign_crm_demo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/fr.po b/addons/marketing_campaign_crm_demo/i18n/fr.po index 0492d08a875..527d4ae4f79 100644 --- a/addons/marketing_campaign_crm_demo/i18n/fr.po +++ b/addons/marketing_campaign_crm_demo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/gl.po b/addons/marketing_campaign_crm_demo/i18n/gl.po index f231f9dbee4..169b6d63a24 100644 --- a/addons/marketing_campaign_crm_demo/i18n/gl.po +++ b/addons/marketing_campaign_crm_demo/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hr.po b/addons/marketing_campaign_crm_demo/i18n/hr.po index 137b9a6f329..1c3269220ab 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hr.po +++ b/addons/marketing_campaign_crm_demo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hu.po b/addons/marketing_campaign_crm_demo/i18n/hu.po index d9659ed3705..7f742cf7add 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hu.po +++ b/addons/marketing_campaign_crm_demo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/it.po b/addons/marketing_campaign_crm_demo/i18n/it.po index 7f99ddeca9f..23f98d6d5b9 100644 --- a/addons/marketing_campaign_crm_demo/i18n/it.po +++ b/addons/marketing_campaign_crm_demo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ja.po b/addons/marketing_campaign_crm_demo/i18n/ja.po index ef200ae3c94..d3b543b679c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ja.po +++ b/addons/marketing_campaign_crm_demo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/nb.po b/addons/marketing_campaign_crm_demo/i18n/nb.po index 9b5ba0e2683..459a5902c2c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nb.po +++ b/addons/marketing_campaign_crm_demo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/nl.po b/addons/marketing_campaign_crm_demo/i18n/nl.po index 584c32617d0..4eb5e9656ec 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nl.po +++ b/addons/marketing_campaign_crm_demo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt.po b/addons/marketing_campaign_crm_demo/i18n/pt.po index fbd792e414c..8ab335df6f8 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po index f1fbb8667e8..864ad01c1b9 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ro.po b/addons/marketing_campaign_crm_demo/i18n/ro.po index 3865a8493a6..14d6dfb0442 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ro.po +++ b/addons/marketing_campaign_crm_demo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ru.po b/addons/marketing_campaign_crm_demo/i18n/ru.po index 3d178844b08..5aeba2e4166 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ru.po +++ b/addons/marketing_campaign_crm_demo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr.po b/addons/marketing_campaign_crm_demo/i18n/sr.po index 7526d561124..3e0c3777501 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po index d396ebe041e..011e60de811 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/tr.po b/addons/marketing_campaign_crm_demo/i18n/tr.po index 8e164123675..d7191ba88e3 100644 --- a/addons/marketing_campaign_crm_demo/i18n/tr.po +++ b/addons/marketing_campaign_crm_demo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po index ac6c49321a2..6c1a359b561 100644 --- a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po +++ b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/membership/i18n/ar.po b/addons/membership/i18n/ar.po index 2df350a5b48..17fb57613f8 100644 --- a/addons/membership/i18n/ar.po +++ b/addons/membership/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bg.po b/addons/membership/i18n/bg.po index 663ed884202..4e135078ca4 100644 --- a/addons/membership/i18n/bg.po +++ b/addons/membership/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bs.po b/addons/membership/i18n/bs.po index e32ec4e9f6e..3855e2df9f8 100644 --- a/addons/membership/i18n/bs.po +++ b/addons/membership/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ca.po b/addons/membership/i18n/ca.po index 7d9730e6f17..5821f9f40ff 100644 --- a/addons/membership/i18n/ca.po +++ b/addons/membership/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/cs.po b/addons/membership/i18n/cs.po index 4bb59016478..fde895968c4 100644 --- a/addons/membership/i18n/cs.po +++ b/addons/membership/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/da.po b/addons/membership/i18n/da.po index 661ae7935b0..7aff8e006cc 100644 --- a/addons/membership/i18n/da.po +++ b/addons/membership/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/de.po b/addons/membership/i18n/de.po index 3466dc3d515..7a04d90d59a 100644 --- a/addons/membership/i18n/de.po +++ b/addons/membership/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es.po b/addons/membership/i18n/es.po index e1bc9fb4eb7..4f5b4b00114 100644 --- a/addons/membership/i18n/es.po +++ b/addons/membership/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 @@ -797,7 +797,7 @@ msgstr "Año" #. module: membership #: view:product.product:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidad" #. module: membership #: view:report.membership:0 diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index b975e066822..888d15fc30d 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es_CR.po b/addons/membership/i18n/es_CR.po index c316f78a4bd..504f0e2163e 100644 --- a/addons/membership/i18n/es_CR.po +++ b/addons/membership/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/et.po b/addons/membership/i18n/et.po index a7258835cf5..7ca135dda8e 100644 --- a/addons/membership/i18n/et.po +++ b/addons/membership/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fi.po b/addons/membership/i18n/fi.po index c9b2fbf9bb9..890a1752ff9 100644 --- a/addons/membership/i18n/fi.po +++ b/addons/membership/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fr.po b/addons/membership/i18n/fr.po index 27e6df6944b..ba593ada575 100644 --- a/addons/membership/i18n/fr.po +++ b/addons/membership/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 @@ -104,7 +104,7 @@ msgstr "Date de fin de l'adhésion" #: field:product.product,membership_date_to:0 #: field:res.partner,membership_stop:0 msgid "Membership End Date" -msgstr "" +msgstr "Date de fin d'adhésion" #. module: membership #: view:report.membership:0 @@ -248,7 +248,7 @@ msgstr "Date de début d'adhésion" #. module: membership #: field:res.partner,membership_cancel:0 msgid "Cancel Membership Date" -msgstr "" +msgstr "Date d'annulation de l'adhésion" #. module: membership #: model:process.node,name:membership.process_node_paidmember0 @@ -328,7 +328,7 @@ msgstr "Articles d'adhésion" #. module: membership #: field:res.partner,membership_state:0 msgid "Current Membership Status" -msgstr "" +msgstr "État actuel de l'adhésion" #. module: membership #: field:membership.membership_line,date:0 @@ -390,7 +390,7 @@ msgstr "Le partenaire est membre gratuitement." #. module: membership #: view:res.partner:0 msgid "Buy Membership" -msgstr "" +msgstr "Payer une cotisation" #. module: membership #: field:report.membership,associate_member_id:0 @@ -459,7 +459,7 @@ msgstr "Date à laquelle l'adhésion du membre a été effective." #. module: membership #: field:membership.membership_line,state:0 msgid "Membership Status" -msgstr "" +msgstr "État de l'adhésion" #. module: membership #: view:res.partner:0 @@ -487,6 +487,7 @@ msgstr "Articles d'adhésion" #: sql_constraint:product.product:0 msgid "Error ! Ending Date cannot be set before Beginning Date." msgstr "" +"Erreur ! La Date de Fin ne peut pas être définit avant la Date de Début." #. module: membership #: selection:report.membership,month:0 @@ -560,6 +561,15 @@ msgid "" "created.\n" " -Paying member: A member who has paid the membership fee." msgstr "" +"Cela indique l'état de l'adhésion.\n" +" -Non Membre: Un partenaire qui n'a jamais adhéré.\n" +" -Adhésion annulée: Un membre qui a annulé son adhésion.\n" +" -Ancien Membre: Un membre dont la date d'adhésion a " +"expirée.\n" +" -Membre en attente: Un membre qui a demandé son adhésion " +"et dont la facture va être créée.\n" +" -Membre facturé: Un membre dont la facture a été créée.\n" +" -Membre payé: Un membre qui a payé son adhésion." #. module: membership #: selection:report.membership,month:0 @@ -627,6 +637,17 @@ msgid "" " -Paid Member: A member who has paid the membership " "amount." msgstr "" +"Cela indique l'état de l'adhésion.\n" +" -Non Membre: Un partenaire qui n'a jamais adhéré.\n" +" -Adhésion annulée: Un membre qui a annulé son " +"adhésion.\n" +" -Ancien Membre: Un membre dont la date d'adhésion a " +"expirée.\n" +" -Membre en attente: Un membre qui a demandé son " +"adhésion et dont la facture va être créée.\n" +" -Membre facturé: Un membre dont la facture a été " +"créée.\n" +" -Membre payé: Un membre qui a payé son adhésion." #. module: membership #: model:process.transition,note:membership.process_transition_waitingtoinvoice0 @@ -672,7 +693,7 @@ msgstr "Prix Membre" #. module: membership #: view:product.product:0 msgid "Membership Duration" -msgstr "" +msgstr "Durée d'Adhésion" #. module: membership #: model:ir.model,name:membership.model_product_product @@ -688,17 +709,17 @@ msgstr "Mai" #: field:product.product,membership_date_from:0 #: field:res.partner,membership_start:0 msgid "Membership Start Date" -msgstr "" +msgstr "Date de Début d'Adhésion" #. module: membership #: help:res.partner,free_member:0 msgid "Select if you want to give free membership." -msgstr "" +msgstr "Sélectionner si vous voulez donner une adhésion gratuite." #. module: membership #: field:res.partner,membership_amount:0 msgid "Membership Amount" -msgstr "" +msgstr "Montant de l'Adhésion" #. module: membership #: field:report.membership,date_to:0 @@ -779,7 +800,7 @@ msgstr "Année" #. module: membership #: view:product.product:0 msgid "Accounting" -msgstr "" +msgstr "Compte" #. module: membership #: view:report.membership:0 diff --git a/addons/membership/i18n/gl.po b/addons/membership/i18n/gl.po index bbce4722644..e5870dbcbfd 100644 --- a/addons/membership/i18n/gl.po +++ b/addons/membership/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hr.po b/addons/membership/i18n/hr.po index 0479d208b5c..5af7dc4b8e9 100644 --- a/addons/membership/i18n/hr.po +++ b/addons/membership/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hu.po b/addons/membership/i18n/hu.po index 93df0fd10b1..a225cf3d628 100644 --- a/addons/membership/i18n/hu.po +++ b/addons/membership/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/id.po b/addons/membership/i18n/id.po index 9e6e66ca305..6ba74b13e01 100644 --- a/addons/membership/i18n/id.po +++ b/addons/membership/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/it.po b/addons/membership/i18n/it.po index 31e813b282e..608a4beb135 100644 --- a/addons/membership/i18n/it.po +++ b/addons/membership/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ja.po b/addons/membership/i18n/ja.po index a1c4d82dfba..3c2861d6606 100644 --- a/addons/membership/i18n/ja.po +++ b/addons/membership/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ko.po b/addons/membership/i18n/ko.po index 15eee797bc6..c726bbf135b 100644 --- a/addons/membership/i18n/ko.po +++ b/addons/membership/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/lt.po b/addons/membership/i18n/lt.po index f2af6af7a40..5ae778e4abd 100644 --- a/addons/membership/i18n/lt.po +++ b/addons/membership/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/mn.po b/addons/membership/i18n/mn.po index ea5042e95d9..a348cff979e 100644 --- a/addons/membership/i18n/mn.po +++ b/addons/membership/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl.po b/addons/membership/i18n/nl.po index a25d9bc413c..eb7d02d0cc1 100644 --- a/addons/membership/i18n/nl.po +++ b/addons/membership/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index c47a3f98dcd..6793b34ddcc 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pl.po b/addons/membership/i18n/pl.po index 161539414ce..09e8ec6fbab 100644 --- a/addons/membership/i18n/pl.po +++ b/addons/membership/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt.po b/addons/membership/i18n/pt.po index b27a9d54878..b7cc0def9d9 100644 --- a/addons/membership/i18n/pt.po +++ b/addons/membership/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index 41b751357c5..6937cb24de8 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ro.po b/addons/membership/i18n/ro.po index 2fadc354e7a..9affab4be4e 100644 --- a/addons/membership/i18n/ro.po +++ b/addons/membership/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ru.po b/addons/membership/i18n/ru.po index 731af0d095a..5188367e90b 100644 --- a/addons/membership/i18n/ru.po +++ b/addons/membership/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sk.po b/addons/membership/i18n/sk.po index 7adb1709d6f..499b8b9d786 100644 --- a/addons/membership/i18n/sk.po +++ b/addons/membership/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sl.po b/addons/membership/i18n/sl.po index cc0a6269ab6..a4fcd7cbbbb 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sq.po b/addons/membership/i18n/sq.po index bd9165e5192..6c92850013e 100644 --- a/addons/membership/i18n/sq.po +++ b/addons/membership/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sr@latin.po b/addons/membership/i18n/sr@latin.po index 2b1b8a5be09..a36ad17a2ee 100644 --- a/addons/membership/i18n/sr@latin.po +++ b/addons/membership/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sv.po b/addons/membership/i18n/sv.po index af8dce3f1e9..1dd09d7dfeb 100644 --- a/addons/membership/i18n/sv.po +++ b/addons/membership/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tlh.po b/addons/membership/i18n/tlh.po index d6f2e323d0a..af86ecf2ca9 100644 --- a/addons/membership/i18n/tlh.po +++ b/addons/membership/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tr.po b/addons/membership/i18n/tr.po index 6521055582c..0169c8113e9 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/uk.po b/addons/membership/i18n/uk.po index 1197db5230a..59bc4f87694 100644 --- a/addons/membership/i18n/uk.po +++ b/addons/membership/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/vi.po b/addons/membership/i18n/vi.po index 44943172875..4b8a97db79b 100644 --- a/addons/membership/i18n/vi.po +++ b/addons/membership/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 1227207ce27..5771df6ea4d 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index 93afed7dd38..9d25e1bac71 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 9339e453c07..9a529908250 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index 1994a2b7de4..07de45fd7cd 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index 8966f361ae9..4c4c01b650c 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index f33a817cfec..e33a77c539f 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 19643ca36e8..f4d2b10d224 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/da.po b/addons/mrp/i18n/da.po index fa575e5f166..ad8c8e854df 100644 --- a/addons/mrp/i18n/da.po +++ b/addons/mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 16e503402e6..393905ffcac 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 3d98068ba8a..84e7bce9842 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index 3710ecdaf3a..414f57e10c3 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -210,7 +210,7 @@ msgstr "Para material comprado" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_production_order_action msgid "Order Planning" -msgstr "" +msgstr "Planificación de la orden" #. module: mrp #: field:mrp.config.settings,module_mrp_operations:0 @@ -300,6 +300,8 @@ msgid "" "The selection of the right Bill of Material to use will depend on the " "properties specified on the sales order and the Bill of Material." msgstr "" +"La selección de la lista de materiales correcta a usar dependerá de las " +"propiedades especificadas en el pedido de venta y en la lista de materiales." #. module: mrp #: view:mrp.bom:0 @@ -308,6 +310,8 @@ msgid "" " will contain the raw materials, instead of " "the finished product." msgstr "" +"Cuando se procese un pedido de venta para este producto, la orden de entrega " +"contendrá las materias primas, en lugar del producto final." #. module: mrp #: report:mrp.production.order:0 @@ -516,6 +520,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una nueva propiedad.\n" +"

\n" +"Las propiedades en OpenERP se usan para seleccionar la lista adecuada de " +"materiales para la fabricación de un producto cuando se tienen diferentes " +"forma de construir el mismo producto. Puede asignar diferentes propiedades a " +"cada lista de materiales. Cuando un comercial crea un pedido de venta, puede " +"relacionarlo con varias propiedades, y OpenERP seleccionará automáticamente " +"la LdM a usar de acuerdo a las necesidades.\n" +"

\n" +" " #. module: mrp #: view:mrp.production:0 @@ -1722,6 +1737,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un grupo de propiedades.\n" +"

\n" +"Defina grupos de propiedades específicas que se pueden asignar las listas " +"de materiales y a los pedidos de venta. Las propiedades permiten a OpenERP " +"seleccionar automáticamente la lista de materiales adecuada de acuerdo a " +"las propiedades seleccionadas en el pedido de venta por el comercial.\n" +"

\n" +"Por ejemplo, en el grupo de propiedades \"Garantía\", puede tener dos " +"propiedades: 1 año de garantía y 3 años de garantía. Dependiendo de las " +"propiedades seleccionadas en el pedido de venta, OpenERP planificará la " +"fabricación usando la lista de materiales que coincida.\n" +"

\n" +" " #. module: mrp #: field:mrp.workcenter,capacity_per_cycle:0 diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index f4413f21f0b..d883f58d8e7 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CL.po b/addons/mrp/i18n/es_CL.po index 036289ad17f..5fe759f7a6b 100644 --- a/addons/mrp/i18n/es_CL.po +++ b/addons/mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CR.po b/addons/mrp/i18n/es_CR.po index 056eda3ea26..1a55f34d301 100644 --- a/addons/mrp/i18n/es_CR.po +++ b/addons/mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 9f86a057367..61d7dfb0500 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index b12cb932303..a8ab79b7869 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index e3f60cb4d7d..5a6f45c0c4c 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 26714b3e511..50796513c17 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/gl.po b/addons/mrp/i18n/gl.po index bfebe1391c5..7b1a11c586a 100644 --- a/addons/mrp/i18n/gl.po +++ b/addons/mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index f2a20a2d9fa..69a57d8fb42 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 952730a2dc4..79c83eb5bb6 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 62b3f09e100..6dc5bad396a 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.bom,message_unread:0 diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 7a607679719..3445485d403 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index 3460180bd07..765cf3bddeb 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ja.po b/addons/mrp/i18n/ja.po index 331e419aa8b..84edc7ce928 100644 --- a/addons/mrp/i18n/ja.po +++ b/addons/mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index 4814b09b380..b29d0850c79 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index 645e4d727d3..2c5bd3956b2 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lv.po b/addons/mrp/i18n/lv.po index 5d20418456e..4a7f2ee8fd0 100644 --- a/addons/mrp/i18n/lv.po +++ b/addons/mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/mn.po b/addons/mrp/i18n/mn.po index 3d446c5302a..4291b51c4cf 100644 --- a/addons/mrp/i18n/mn.po +++ b/addons/mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nb.po b/addons/mrp/i18n/nb.po index cb2d706414b..27f6068ec36 100644 --- a/addons/mrp/i18n/nb.po +++ b/addons/mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 53e35729570..ae7f9ab8beb 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -1563,7 +1563,7 @@ msgstr "" #. module: mrp #: selection:mrp.production,state:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: mrp #: view:product.product:0 @@ -1663,7 +1663,7 @@ msgstr "Afdrukken kostprijs van product" #: field:mrp.bom,product_uos:0 #: field:mrp.production.product.line,product_uos:0 msgid "Product UOS" -msgstr "Verkoopeenheid product" +msgstr "Product verkoopeenheid" #. module: mrp #: view:mrp.production:0 @@ -1714,7 +1714,7 @@ msgstr "" #. module: mrp #: field:mrp.production,product_uos:0 msgid "Product UoS" -msgstr "Product VE" +msgstr "Product verkoopeenheid" #. module: mrp #: selection:mrp.production,priority:0 diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index c2c65a57cfc..72a4a49333b 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index c1c3e833947..b40a38edf69 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -202,7 +202,7 @@ msgstr "Dla kupowanych materiałów" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_production_order_action msgid "Order Planning" -msgstr "" +msgstr "Planowanie zamówień" #. module: mrp #: field:mrp.config.settings,module_mrp_operations:0 @@ -1154,6 +1154,9 @@ msgid "" "Number of operations this Work Center can do in parallel. If this Work " "Center represents a team of 5 workers, the capacity per cycle is 5." msgstr "" +"Liczba operacji, które to centrum może wykonać jednocześnie. Jeśli maszyna " +"wykonuje tę samą czynność jednocześnie na 5 komponentach, to jej wydajność " +"na cykl wynosi 5." #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action3 @@ -1190,7 +1193,7 @@ msgstr "Koszt cykli" #: code:addons/mrp/wizard/change_production_qty.py:88 #, python-format msgid "Cannot find bill of material for this product." -msgstr "" +msgstr "Nie można odnaleźć zastawienia materiałowego dla tego produktu." #. module: mrp #: selection:mrp.workcenter.load,measure_unit:0 @@ -1213,6 +1216,7 @@ msgid "" "Time in hours for this Work Center to achieve the operation of the specified " "routing." msgstr "" +"Czas w godzinach, który dane centrum potrzebuje na wykonanie operacji." #. module: mrp #: field:mrp.workcenter,costs_journal_id:0 diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index 14685448700..7ced950a43f 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 26317d6c936..9a1a4014591 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-24 05:10+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 3c3d37041a9..1be1924ffd1 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index d07fed7f653..574902e6d20 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index 9e97082365c..6c11d47c4a8 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 9458f991658..fde757f685f 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: mrp diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index d27c45140c1..d6cffecded9 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:22+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sr@latin.po b/addons/mrp/i18n/sr@latin.po index 4514fce00c8..6faff39b16d 100644 --- a/addons/mrp/i18n/sr@latin.po +++ b/addons/mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 088c9851fa4..265c249eb16 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 4f18380c81a..86e80fc3652 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 02fde1dbcd4..2f6a0a71b35 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 1e3a314bb77..70aaf08b01c 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index 4fd54efdb24..9d299bd68b5 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 342f120dcf9..e77dc88d094 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index c8dac3c9d9b..562ca5f59a6 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 0aa51cf5b7c..fe74568ae1e 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index f679d3b4e51..ac25080557c 100644 --- a/addons/mrp_byproduct/i18n/ab.po +++ b/addons/mrp_byproduct/i18n/ab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ar.po b/addons/mrp_byproduct/i18n/ar.po index af21e9c2943..e1f7bc68e7c 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bg.po b/addons/mrp_byproduct/i18n/bg.po index 2328c45c3b5..dc67cbfae8d 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bs.po b/addons/mrp_byproduct/i18n/bs.po index 05790291a40..c1ea83928d9 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ca.po b/addons/mrp_byproduct/i18n/ca.po index 63c351e67db..b53882e0a70 100644 --- a/addons/mrp_byproduct/i18n/ca.po +++ b/addons/mrp_byproduct/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/cs.po b/addons/mrp_byproduct/i18n/cs.po index 932a157487b..5fad7116274 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 10:50+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/da.po b/addons/mrp_byproduct/i18n/da.po index 5158b514269..79ca4fc483b 100644 --- a/addons/mrp_byproduct/i18n/da.po +++ b/addons/mrp_byproduct/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/de.po b/addons/mrp_byproduct/i18n/de.po index befefbe7222..ed433f693aa 100644 --- a/addons/mrp_byproduct/i18n/de.po +++ b/addons/mrp_byproduct/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es.po b/addons/mrp_byproduct/i18n/es.po index c5a08f2bc5d..3dfbc970fff 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_AR.po b/addons/mrp_byproduct/i18n/es_AR.po index fb2cc3276a6..461e919e8b3 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_CR.po b/addons/mrp_byproduct/i18n/es_CR.po index bcee26ab15d..37c77480ffc 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index 8674b37de18..076d96dfcd5 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/et.po b/addons/mrp_byproduct/i18n/et.po index 2995c1a2b2b..7c076f44f80 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fi.po b/addons/mrp_byproduct/i18n/fi.po index 75c2b6d5708..d38a0db1b8a 100644 --- a/addons/mrp_byproduct/i18n/fi.po +++ b/addons/mrp_byproduct/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fr.po b/addons/mrp_byproduct/i18n/fr.po index 3a587436226..98e33065143 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 99fb885ad70..6929f6a1e06 100644 --- a/addons/mrp_byproduct/i18n/gl.po +++ b/addons/mrp_byproduct/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hr.po b/addons/mrp_byproduct/i18n/hr.po index ccf879c382e..e25fa4a418f 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hu.po b/addons/mrp_byproduct/i18n/hu.po index b13987cb689..f2283ecd615 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/id.po b/addons/mrp_byproduct/i18n/id.po index 07483f873c2..faad6e923eb 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/it.po b/addons/mrp_byproduct/i18n/it.po index b9e00453d19..1d9e3918b2c 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ja.po b/addons/mrp_byproduct/i18n/ja.po index 4edc3e6b484..b3b0af1fec6 100644 --- a/addons/mrp_byproduct/i18n/ja.po +++ b/addons/mrp_byproduct/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ko.po b/addons/mrp_byproduct/i18n/ko.po index 7108699d074..2bdb6c97fa2 100644 --- a/addons/mrp_byproduct/i18n/ko.po +++ b/addons/mrp_byproduct/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lt.po b/addons/mrp_byproduct/i18n/lt.po index 91adcc1e5d4..ab7559fb94c 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mn.po b/addons/mrp_byproduct/i18n/mn.po index 1a17eecd886..c34d3e60d98 100644 --- a/addons/mrp_byproduct/i18n/mn.po +++ b/addons/mrp_byproduct/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index d8b30f42a2e..12aa4cfe73d 100644 --- a/addons/mrp_byproduct/i18n/nb.po +++ b/addons/mrp_byproduct/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index c387bdd8324..19dc3dc1619 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl_BE.po b/addons/mrp_byproduct/i18n/nl_BE.po index 0fe325d2bba..7e525f3203f 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/oc.po b/addons/mrp_byproduct/i18n/oc.po index 211fcaf7451..1a7c2c86547 100644 --- a/addons/mrp_byproduct/i18n/oc.po +++ b/addons/mrp_byproduct/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pl.po b/addons/mrp_byproduct/i18n/pl.po index 2fb40b7969e..85c46b8f4cb 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index 3c1055cd4fb..b80265040de 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt_BR.po b/addons/mrp_byproduct/i18n/pt_BR.po index a2e7f3d5170..cf6063fcf2e 100644 --- a/addons/mrp_byproduct/i18n/pt_BR.po +++ b/addons/mrp_byproduct/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -28,6 +28,14 @@ msgid "" "BoM / quantity of manufactured product set on the BoM * quantity of " "manufactured product in the production order.)'" msgstr "" +"Definir como a quantidade de subprodutos será definido nas ordens de " +"produção que utilizam esta LdM. \"Fixa\" descreve uma situação em que a " +"quantidade de subproduto criado é sempre igual à quantidade definida na LdM, " +"independentemente de quantaos são criadas na ordem de produção. Por " +"oposição, \"variável\" significa que a quantidade serão calculados como " +"\"(quantidade de subproduto definido na LdM / quantidade de produto " +"fabricado definido na quantidade LdM * Quantidade de produto fabricado na " +"ordem de produção.) '" #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 @@ -37,7 +45,7 @@ msgstr "Produto" #. module: mrp_byproduct #: field:mrp.subproduct,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de Medida do Produto" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_production @@ -47,13 +55,13 @@ msgstr "Ordem de Produção" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_change_production_qty msgid "Change Quantity of Products" -msgstr "" +msgstr "Altera a Quantidade dos Produtos" #. module: mrp_byproduct #: view:mrp.bom:0 #: field:mrp.bom,sub_products:0 msgid "Byproducts" -msgstr "" +msgstr "Subprodutos" #. module: mrp_byproduct #: field:mrp.subproduct,subproduct_type:0 @@ -74,7 +82,7 @@ msgstr "Qtd do Produto" #: code:addons/mrp_byproduct/mrp_byproduct.py:63 #, python-format msgid "Warning" -msgstr "" +msgstr "Aviso" #. module: mrp_byproduct #: field:mrp.subproduct,bom_id:0 @@ -89,7 +97,7 @@ msgstr "Variável" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Fixed" -msgstr "Fixado" +msgstr "Fixo" #. module: mrp_byproduct #: code:addons/mrp_byproduct/mrp_byproduct.py:63 @@ -98,8 +106,10 @@ msgid "" "The Product Unit of Measure you chose has a different category than in the " "product form." msgstr "" +"A Unidade de Medida do Produto que você escolheu tem uma categoria diferente " +"do que no formulário do produto." #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct msgid "Byproduct" -msgstr "" +msgstr "Subproduto" diff --git a/addons/mrp_byproduct/i18n/ro.po b/addons/mrp_byproduct/i18n/ro.po index bd57bfec8cf..e359ee7ab44 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ru.po b/addons/mrp_byproduct/i18n/ru.po index b3d7585f9a0..d0c92e421fc 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sk.po b/addons/mrp_byproduct/i18n/sk.po index 15b506243ca..38f2bea8b09 100644 --- a/addons/mrp_byproduct/i18n/sk.po +++ b/addons/mrp_byproduct/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index 4da39064810..e919f57e3ba 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sq.po b/addons/mrp_byproduct/i18n/sq.po index 3f6a2d40528..f84256e707b 100644 --- a/addons/mrp_byproduct/i18n/sq.po +++ b/addons/mrp_byproduct/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr.po b/addons/mrp_byproduct/i18n/sr.po index f997b818153..e6fb5047643 100644 --- a/addons/mrp_byproduct/i18n/sr.po +++ b/addons/mrp_byproduct/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr@latin.po b/addons/mrp_byproduct/i18n/sr@latin.po index 19e80dc9a0d..a892b600960 100644 --- a/addons/mrp_byproduct/i18n/sr@latin.po +++ b/addons/mrp_byproduct/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sv.po b/addons/mrp_byproduct/i18n/sv.po index 070f57ef9c5..3436c265872 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tlh.po b/addons/mrp_byproduct/i18n/tlh.po index adf9b9b6808..8b3f675f990 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tr.po b/addons/mrp_byproduct/i18n/tr.po index 928474d5468..bc61dfbab11 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/uk.po b/addons/mrp_byproduct/i18n/uk.po index 14b5e56647a..2cf4667c248 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/vi.po b/addons/mrp_byproduct/i18n/vi.po index bb46c99a1fc..7091d101db3 100644 --- a/addons/mrp_byproduct/i18n/vi.po +++ b/addons/mrp_byproduct/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_CN.po b/addons/mrp_byproduct/i18n/zh_CN.po index c90908a4415..4a65fc8a3fc 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_TW.po b/addons/mrp_byproduct/i18n/zh_TW.po index 70e55749f56..e86246d51fe 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_jit/i18n/ar.po b/addons/mrp_jit/i18n/ar.po index fd9b1c65734..0c1ae57f064 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bg.po b/addons/mrp_jit/i18n/bg.po index f29cd1df02b..70aff9b7751 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bs.po b/addons/mrp_jit/i18n/bs.po index 77bd8b84585..70e9ceaad57 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ca.po b/addons/mrp_jit/i18n/ca.po index be31871ca37..90cbbc9a16d 100644 --- a/addons/mrp_jit/i18n/ca.po +++ b/addons/mrp_jit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/cs.po b/addons/mrp_jit/i18n/cs.po index 4a97a68b08e..9ce2d6f8128 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:15+0000\n" "PO-Revision-Date: 2012-12-30 11:09+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/da.po b/addons/mrp_jit/i18n/da.po index 3b6a31171a8..77d37ee63ec 100644 --- a/addons/mrp_jit/i18n/da.po +++ b/addons/mrp_jit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/de.po b/addons/mrp_jit/i18n/de.po index 9a2a934f598..0cc885c965f 100644 --- a/addons/mrp_jit/i18n/de.po +++ b/addons/mrp_jit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/el.po b/addons/mrp_jit/i18n/el.po index 1feed86c35a..9520f1a5bca 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es.po b/addons/mrp_jit/i18n/es.po index b3bbfe10a11..38f7bc7564f 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index 9a0ff864a92..bfa41394f79 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_CR.po b/addons/mrp_jit/i18n/es_CR.po index 5a3b471bcae..a73889e5b17 100644 --- a/addons/mrp_jit/i18n/es_CR.po +++ b/addons/mrp_jit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index 7ea8e8e51f6..2d76825513f 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/et.po b/addons/mrp_jit/i18n/et.po index 817bf57548b..05275033691 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fi.po b/addons/mrp_jit/i18n/fi.po index c278ca7ae94..80e62fc5546 100644 --- a/addons/mrp_jit/i18n/fi.po +++ b/addons/mrp_jit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index dd660385fef..a5580038b00 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/gl.po b/addons/mrp_jit/i18n/gl.po index 4e2e2a52cbc..804bad3ff94 100644 --- a/addons/mrp_jit/i18n/gl.po +++ b/addons/mrp_jit/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hr.po b/addons/mrp_jit/i18n/hr.po index 2fbfaf35834..b4cf0336908 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index 031dcf911d4..9e45010391d 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/id.po b/addons/mrp_jit/i18n/id.po index cb8736223fb..185932649a9 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/it.po b/addons/mrp_jit/i18n/it.po index e9ea2faccfb..2e60d27540f 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ja.po b/addons/mrp_jit/i18n/ja.po index 440d6b50955..6ca50042d2a 100644 --- a/addons/mrp_jit/i18n/ja.po +++ b/addons/mrp_jit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/kab.po b/addons/mrp_jit/i18n/kab.po index 17624286eb5..cba2114ea42 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ko.po b/addons/mrp_jit/i18n/ko.po index 537df620e36..1b2b71f4d01 100644 --- a/addons/mrp_jit/i18n/ko.po +++ b/addons/mrp_jit/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/lt.po b/addons/mrp_jit/i18n/lt.po index 5b623851b67..36363d70d46 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ml.po b/addons/mrp_jit/i18n/ml.po index 708764eddb6..812303b4a34 100644 --- a/addons/mrp_jit/i18n/ml.po +++ b/addons/mrp_jit/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mn.po b/addons/mrp_jit/i18n/mn.po index 617cec7be21..c6ca1c0851d 100644 --- a/addons/mrp_jit/i18n/mn.po +++ b/addons/mrp_jit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nb.po b/addons/mrp_jit/i18n/nb.po index 6580e491871..ee86209f3fb 100644 --- a/addons/mrp_jit/i18n/nb.po +++ b/addons/mrp_jit/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl.po b/addons/mrp_jit/i18n/nl.po index 300810fd834..e981b4bed72 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index cee73e62833..d8436e0ea82 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/oc.po b/addons/mrp_jit/i18n/oc.po index 6c967621bc3..23917a22e6c 100644 --- a/addons/mrp_jit/i18n/oc.po +++ b/addons/mrp_jit/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pl.po b/addons/mrp_jit/i18n/pl.po index 0f4ac79399c..f734720630f 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt.po b/addons/mrp_jit/i18n/pt.po index 949493a6aea..b7f9081134c 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index 0977262722c..7dc8523020f 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ro.po b/addons/mrp_jit/i18n/ro.po index 0cb51308512..60caa9e58de 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ru.po b/addons/mrp_jit/i18n/ru.po index 0f8e6e3b335..0c946cdaaba 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sk.po b/addons/mrp_jit/i18n/sk.po index 5bc7ce8f05b..70e5fbc98fe 100644 --- a/addons/mrp_jit/i18n/sk.po +++ b/addons/mrp_jit/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sl.po b/addons/mrp_jit/i18n/sl.po index d504f261e81..7d4f168363e 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sq.po b/addons/mrp_jit/i18n/sq.po index 4f8907ae6a8..083102d0e78 100644 --- a/addons/mrp_jit/i18n/sq.po +++ b/addons/mrp_jit/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr.po b/addons/mrp_jit/i18n/sr.po index 28c871ef5a9..527ff85ca6d 100644 --- a/addons/mrp_jit/i18n/sr.po +++ b/addons/mrp_jit/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr@latin.po b/addons/mrp_jit/i18n/sr@latin.po index a80bb5df719..6a38c4bdeb2 100644 --- a/addons/mrp_jit/i18n/sr@latin.po +++ b/addons/mrp_jit/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sv.po b/addons/mrp_jit/i18n/sv.po index 9b2bcc0fe10..f96f303235c 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ta.po b/addons/mrp_jit/i18n/ta.po index 07f36a1899b..efc4fa75e59 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/tr.po b/addons/mrp_jit/i18n/tr.po index f953b7e1c79..3adee9ddeb6 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/uk.po b/addons/mrp_jit/i18n/uk.po index 0ae959b4061..3c18b2227a2 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/vi.po b/addons/mrp_jit/i18n/vi.po index a51656fc3ff..c1f53294955 100644 --- a/addons/mrp_jit/i18n/vi.po +++ b/addons/mrp_jit/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index e9b7ab92074..52abcd24b90 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index e9081b89d7f..6a9aec3e118 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_operations/i18n/ar.po b/addons/mrp_operations/i18n/ar.po index 6beb358256a..50157003291 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bg.po b/addons/mrp_operations/i18n/bg.po index 8125f7d45d0..933e2fc9981 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bs.po b/addons/mrp_operations/i18n/bs.po index 0898cf245ef..397909caf7d 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ca.po b/addons/mrp_operations/i18n/ca.po index c9f1fbfc092..3fa73659f1b 100644 --- a/addons/mrp_operations/i18n/ca.po +++ b/addons/mrp_operations/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/cs.po b/addons/mrp_operations/i18n/cs.po index 1f435149217..16c745695fd 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 12:32+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index 174fcf32a46..4859b390d2a 100644 --- a/addons/mrp_operations/i18n/da.po +++ b/addons/mrp_operations/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/de.po b/addons/mrp_operations/i18n/de.po index 3a28ac40fef..a28de66cf1a 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index 5ad3686a75c..e81902df080 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -199,7 +199,7 @@ msgstr "Borrador" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Fecha real de fabricación" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index 24d920c2033..25018c028f0 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_CR.po b/addons/mrp_operations/i18n/es_CR.po index afec70f60d8..242be002908 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index 9590d598b01..e1b94eac1b8 100644 --- a/addons/mrp_operations/i18n/es_EC.po +++ b/addons/mrp_operations/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/et.po b/addons/mrp_operations/i18n/et.po index bf6dc0fe0e0..a34f214a1ae 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/fi.po b/addons/mrp_operations/i18n/fi.po index 1d7bf042e5a..0831eef41c8 100644 --- a/addons/mrp_operations/i18n/fi.po +++ b/addons/mrp_operations/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index b24956bd5fd..8a0f436994d 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index 95a0538fad2..03d2b42d7f7 100644 --- a/addons/mrp_operations/i18n/hi.po +++ b/addons/mrp_operations/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hr.po b/addons/mrp_operations/i18n/hr.po index 24beee28d99..46f9f2ea18e 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hu.po b/addons/mrp_operations/i18n/hu.po index 8087817e998..6a3d0aecce2 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/id.po b/addons/mrp_operations/i18n/id.po index 7ac3b637830..83fd1e48bf6 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/it.po b/addons/mrp_operations/i18n/it.po index a4ee4c70814..a60c919da00 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ja.po b/addons/mrp_operations/i18n/ja.po index 1a0ab921d38..c956d16b9f4 100644 --- a/addons/mrp_operations/i18n/ja.po +++ b/addons/mrp_operations/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ko.po b/addons/mrp_operations/i18n/ko.po index 9a07085d868..4847909e0a0 100644 --- a/addons/mrp_operations/i18n/ko.po +++ b/addons/mrp_operations/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/lt.po b/addons/mrp_operations/i18n/lt.po index a95a841625a..036fc146a74 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index 1bb68be90ef..eac617fe1c0 100644 --- a/addons/mrp_operations/i18n/mn.po +++ b/addons/mrp_operations/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index c78f4826bf0..18932223b52 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -597,7 +597,7 @@ msgstr "Werk uitgevoerd" #: view:mrp.workorder:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index 821f171d179..c8b52ff66cd 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pl.po b/addons/mrp_operations/i18n/pl.po index 3269ccd05ce..562af4ff0ec 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt.po b/addons/mrp_operations/i18n/pt.po index aa80635f5ea..e29a5dc5df2 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index 9416cab7d61..fb345e5ae62 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -55,7 +55,7 @@ msgstr "Informação da definição de roteamento." #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de Medida" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -173,7 +173,7 @@ msgstr "Mov. de Estoque" #: code:addons/mrp_operations/mrp_operations.py:481 #, python-format msgid "No operation to cancel." -msgstr "" +msgstr "Nenhuma operação para cancelar" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:474 @@ -199,12 +199,12 @@ msgstr "Provisório" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Data de Produção Atual" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production Workcenter" -msgstr "" +msgstr "Centro de Trabalho de Produção" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_finished:0 @@ -241,7 +241,7 @@ msgstr "Análise da ordem de Serviço" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning msgid "Work Orders By Resource" -msgstr "" +msgstr "Ordem de Serviço por Recurso" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -315,6 +315,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar uma nova ordem serviço. \n" +"

\n" +"Ordens de Trabalho a lista de operações a serem realizadas para cada\n" +"             ordem de produção. Uma vez que você começar a primeira " +"encomenda de uma\n" +"             ordem de produção, da ordem de fabricação é automaticamente\n" +"             marcado como começou. Depois de terminar a última operação de " +"uma\n" +"             ordem de produção, o MO é concluída automaticamente e os " +"respectivos\n" +"             produtos são produzidos.\n" +"

\n" +" " #. module: mrp_operations #: help:mrp.production.workcenter.line,delay:0 @@ -377,7 +391,7 @@ msgstr "Aguardando Mercadorias" #. module: mrp_operations #: field:mrp.production.workcenter.line,production_state:0 msgid "Production Status" -msgstr "" +msgstr "Situação da Produção" #. module: mrp_operations #: selection:mrp.workorder,state:0 @@ -453,6 +467,7 @@ msgid "" "Operation has already started! You can either Pause/Finish/Cancel the " "operation." msgstr "" +"A Operação já foi iniciada! Você pode Pausar/Finalizar/Cancelar a operação." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -617,6 +632,15 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Quando uma ordem de serviço é criado é definido como 'Provisório'.\n" +"* Quando o usuário define ordem de serviço no início, o modo de tempo que " +"será definido como \"Em andamento\".\n" +"* Quando a ordem de serviço está em execução, durante esse tempo, se o " +"usuário quer parar ou fazer alterações em ordem, então pode definir como " +"'pendente'\n" +"* Quando o usuário cancela a ordem de serviço será definido como " +"'cancelado'.\n" +"* Quando a ordem é completamente processado é definida como 'concluído'." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 @@ -644,6 +668,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar uma nova ordem de serviço.\n" +"

\n" +" Para fabricar ou montar produtos, e usar matérias primas e \n" +" produtos acabados, você também precisa lidar com operações de " +"produção.\n" +" Operações de produção são chamadas de Ordens de Serviço. As " +"diversas \n" +" operações terão impactos diferentes nos custos de produção e " +"planejamento\n" +"dependendo da carga de trabalho.\n" +"

\n" +" " #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode diff --git a/addons/mrp_operations/i18n/ro.po b/addons/mrp_operations/i18n/ro.po index 08ea8086b3d..3acb4277a37 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ru.po b/addons/mrp_operations/i18n/ru.po index aa1bce39d5e..5f118a4823d 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index 868e9d67c93..c38f149a69c 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sq.po b/addons/mrp_operations/i18n/sq.po index 9ce7358d584..cdd24a5c00a 100644 --- a/addons/mrp_operations/i18n/sq.po +++ b/addons/mrp_operations/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr.po b/addons/mrp_operations/i18n/sr.po index bf9cad784a9..90988cf5a34 100644 --- a/addons/mrp_operations/i18n/sr.po +++ b/addons/mrp_operations/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr@latin.po b/addons/mrp_operations/i18n/sr@latin.po index 1c7fe8671b5..63cb9a6754c 100644 --- a/addons/mrp_operations/i18n/sr@latin.po +++ b/addons/mrp_operations/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sv.po b/addons/mrp_operations/i18n/sv.po index 74ab49baa94..1302bbe7cc1 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:23+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tlh.po b/addons/mrp_operations/i18n/tlh.po index db23d45a3b9..184ad0be69a 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index fea2a252ee3..cc1a00dea1e 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index 515e9323dbd..780cd938a5d 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/vi.po b/addons/mrp_operations/i18n/vi.po index e5dcff8a1eb..41aef1d1ef9 100644 --- a/addons/mrp_operations/i18n/vi.po +++ b/addons/mrp_operations/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index e73b518e361..48c0c5edef9 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -198,7 +198,7 @@ msgstr "草稿" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "实际生产日期" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index 07e00186d07..f2406778a56 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_repair/i18n/ar.po b/addons/mrp_repair/i18n/ar.po index f8ad0dadc38..b98fade53ba 100644 --- a/addons/mrp_repair/i18n/ar.po +++ b/addons/mrp_repair/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bg.po b/addons/mrp_repair/i18n/bg.po index d9c351b07ce..dc97e20fbf7 100644 --- a/addons/mrp_repair/i18n/bg.po +++ b/addons/mrp_repair/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bs.po b/addons/mrp_repair/i18n/bs.po index 664d117acfe..b93454b61cc 100644 --- a/addons/mrp_repair/i18n/bs.po +++ b/addons/mrp_repair/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ca.po b/addons/mrp_repair/i18n/ca.po index 3b86416800a..e4b20c56d93 100644 --- a/addons/mrp_repair/i18n/ca.po +++ b/addons/mrp_repair/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/cs.po b/addons/mrp_repair/i18n/cs.po index 32f8375e905..2e07a2da545 100644 --- a/addons/mrp_repair/i18n/cs.po +++ b/addons/mrp_repair/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-30 16:23+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/da.po b/addons/mrp_repair/i18n/da.po index d8172e68d36..b1cb558b65b 100644 --- a/addons/mrp_repair/i18n/da.po +++ b/addons/mrp_repair/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/de.po b/addons/mrp_repair/i18n/de.po index 11715c289b2..154c69d8a78 100644 --- a/addons/mrp_repair/i18n/de.po +++ b/addons/mrp_repair/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es.po b/addons/mrp_repair/i18n/es.po index d3e8661bb76..16663c4d09d 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index 55cf6092da0..39940528a04 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_CR.po b/addons/mrp_repair/i18n/es_CR.po index 65a550e4ab3..f38d1ed75cc 100644 --- a/addons/mrp_repair/i18n/es_CR.po +++ b/addons/mrp_repair/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_EC.po b/addons/mrp_repair/i18n/es_EC.po index 01cf6b6e9fb..4b8ede49ba4 100644 --- a/addons/mrp_repair/i18n/es_EC.po +++ b/addons/mrp_repair/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/et.po b/addons/mrp_repair/i18n/et.po index 0951009a313..a05dbd70760 100644 --- a/addons/mrp_repair/i18n/et.po +++ b/addons/mrp_repair/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fi.po b/addons/mrp_repair/i18n/fi.po index 43473c4d6af..12dc7714315 100644 --- a/addons/mrp_repair/i18n/fi.po +++ b/addons/mrp_repair/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fr.po b/addons/mrp_repair/i18n/fr.po index a6a0143fbee..82617e67981 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hi.po b/addons/mrp_repair/i18n/hi.po index d28146d7d1f..3708c6869cd 100644 --- a/addons/mrp_repair/i18n/hi.po +++ b/addons/mrp_repair/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hr.po b/addons/mrp_repair/i18n/hr.po index 7d701c122bc..5f3f78ad996 100644 --- a/addons/mrp_repair/i18n/hr.po +++ b/addons/mrp_repair/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hu.po b/addons/mrp_repair/i18n/hu.po index d84dd33e25a..5f394a6d806 100644 --- a/addons/mrp_repair/i18n/hu.po +++ b/addons/mrp_repair/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/id.po b/addons/mrp_repair/i18n/id.po index 242bd22f1cb..bc96ada2c45 100644 --- a/addons/mrp_repair/i18n/id.po +++ b/addons/mrp_repair/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/it.po b/addons/mrp_repair/i18n/it.po index d4c9109230b..ced85e29229 100644 --- a/addons/mrp_repair/i18n/it.po +++ b/addons/mrp_repair/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ja.po b/addons/mrp_repair/i18n/ja.po index 214642965eb..695d6fcf186 100644 --- a/addons/mrp_repair/i18n/ja.po +++ b/addons/mrp_repair/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ko.po b/addons/mrp_repair/i18n/ko.po index f17826e16af..c2ff47c31f7 100644 --- a/addons/mrp_repair/i18n/ko.po +++ b/addons/mrp_repair/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/lt.po b/addons/mrp_repair/i18n/lt.po index c5c71188cb6..af10059ac3c 100644 --- a/addons/mrp_repair/i18n/lt.po +++ b/addons/mrp_repair/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/mn.po b/addons/mrp_repair/i18n/mn.po index 0d66cbd309c..1bf3381b5da 100644 --- a/addons/mrp_repair/i18n/mn.po +++ b/addons/mrp_repair/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/nl.po b/addons/mrp_repair/i18n/nl.po index 999fa897a9d..50e84b2e974 100644 --- a/addons/mrp_repair/i18n/nl.po +++ b/addons/mrp_repair/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -595,7 +595,7 @@ msgstr "Offertes" #: field:mrp.repair.line,product_uom_qty:0 #: report:repair.order:0 msgid "Quantity" -msgstr "Aantal" +msgstr "Hoeveelheid" #. module: mrp_repair #: view:mrp.repair:0 @@ -624,7 +624,7 @@ msgstr "Prijs" #. module: mrp_repair #: selection:mrp.repair.line,state:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: mrp_repair #: field:mrp.repair,invoice_id:0 diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index afe0238f66a..6c77cae98ad 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pl.po b/addons/mrp_repair/i18n/pl.po index 82fc82153e8..36200969914 100644 --- a/addons/mrp_repair/i18n/pl.po +++ b/addons/mrp_repair/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt.po b/addons/mrp_repair/i18n/pt.po index 9eea274c5d3..6aa7a0042ed 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index 407f2101ac0..d8255f08434 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -55,7 +55,7 @@ msgstr "Faturar" #. module: mrp_repair #: view:mrp.repair:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de Medida" #. module: mrp_repair #: report:repair.order:0 @@ -70,7 +70,7 @@ msgstr "Agrupar pelo Endereço de Faturamento do Parceiro" #. module: mrp_repair #: field:mrp.repair,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:435 @@ -97,7 +97,7 @@ msgstr "Pendência no Faturamento" #. module: mrp_repair #: view:mrp.repair:0 msgid "Serial Number" -msgstr "" +msgstr "Número de Série" #. module: mrp_repair #: field:mrp.repair,address_id:0 @@ -123,7 +123,7 @@ msgstr "Endereço de Faturamento :" #. module: mrp_repair #: help:mrp.repair,partner_id:0 msgid "Choose partner for whom the order will be invoiced and delivered." -msgstr "" +msgstr "Escolha o parceiro para quem o pedido será faturado e entregue." #. module: mrp_repair #: view:mrp.repair:0 @@ -138,7 +138,7 @@ msgstr "Observações" #. module: mrp_repair #: field:mrp.repair,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: mrp_repair #: field:mrp.repair,amount_tax:0 @@ -153,7 +153,7 @@ msgstr "Impostos" #: code:addons/mrp_repair/mrp_repair.py:442 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: mrp_repair #: report:repair.order:0 @@ -164,12 +164,12 @@ msgstr "Total Líquido" #: selection:mrp.repair,state:0 #: selection:mrp.repair.line,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: mrp_repair #: help:mrp.repair,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: mrp_repair #: view:mrp.repair:0 @@ -196,6 +196,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma ordem de reparos. \n" +"

\n" +" Em uma ordem de reparos, você pode detalhar os componentes " +"que você remover,\n" +" adicionar, ou substituir e registrar o tempo gasto em " +"diferentes operações.\n" +"

\n" +" A ordem de reparo usa a data da garantia no Número de Série " +"para saber se\n" +" o reparo deve ser faturado ou não.\n" +"

\n" +" " #. module: mrp_repair #: help:mrp.repair.line,state:0 @@ -208,6 +221,12 @@ msgid "" " \n" "* The 'Cancelled' status is set automatically when user cancel repair order." msgstr "" +" * A situação 'Provisório' é definida quando a ordem de reparo está em " +"situação provisória.\n" +"* A situação 'Confirmado' é quando a ordem de reparo for confirmada.\n" +"* A situação 'Concluído' é definido quando a ordem de reparo está " +"terminada.\n" +"* A situação 'Cancelado' é quando o usuário cancela a ordem de reparo." #. module: mrp_repair #: field:mrp.repair,move_id:0 @@ -236,11 +255,14 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: mrp_repair #: view:mrp.repair:0 msgid "Extra Info" -msgstr "Info. Extra" +msgstr "Informações Adicionais" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:336 @@ -249,12 +271,12 @@ msgstr "Info. Extra" #: code:addons/mrp_repair/wizard/cancel_repair.py:49 #, python-format msgid "Warning!" -msgstr "Informação!" +msgstr "Aviso!" #. module: mrp_repair #: view:mrp.repair:0 msgid "(update)" -msgstr "" +msgstr "(atualizar)" #. module: mrp_repair #: view:mrp.repair:0 @@ -289,6 +311,17 @@ msgid "" "* The 'Done' status is set when repairing is completed. \n" "* The 'Cancelled' status is used when user cancel repair order." msgstr "" +" * A situação 'Provisório' é usada quando o usuário está preparando uma " +"ordem de reparo nova ou não confirmada.\n" +"* A situação 'Confirmada' é usada quando um usuário confirmar a ordem de " +"reparos.\n" +"* A situação 'Pronto para o Reparo' é usada para iniciar o reparo, o usuário " +"somente poderá reparar após a confirmação.\n" +"* A situação 'A ser faturado' é usada para gerar a fatura antes ou depois do " +"reparo concluído.\n" +"* A situação 'Concluído' é usada quando a ordem de serviço estiver pronta.\n" +"* A situação 'Cancelada' é usada quando o usuário cancelar a ordem de " +"reparos." #. module: mrp_repair #: view:mrp.repair:0 @@ -300,6 +333,7 @@ msgstr "Ordens de Reparo" #, python-format msgid "Serial number is required for operation line with product '%s'" msgstr "" +"O Número de série é obrigatório para a linha de operação com o produto '%s'" #. module: mrp_repair #: report:repair.order:0 @@ -316,7 +350,7 @@ msgstr "Número do Lote" #. module: mrp_repair #: field:mrp.repair,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: mrp_repair #: field:mrp.repair,fees_lines:0 @@ -431,7 +465,7 @@ msgstr "Sim" #: view:mrp.repair.cancel:0 #: view:mrp.repair.make_invoice:0 msgid "or" -msgstr "" +msgstr "ou" #. module: mrp_repair #: view:mrp.repair:0 @@ -445,7 +479,7 @@ msgstr "Faturado" #: field:mrp.repair.fee,product_uom:0 #: field:mrp.repair.line,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de Medida do Produto" #. module: mrp_repair #: view:mrp.repair.make_invoice:0 @@ -465,7 +499,7 @@ msgstr "Adicionar" #. module: mrp_repair #: selection:mrp.repair.line,state:0 msgid "Draft" -msgstr "Rascunho" +msgstr "Provisório" #. module: mrp_repair #: field:mrp.repair,name:0 @@ -500,16 +534,19 @@ msgid "" "invoice before or after the repair is done respectively. 'No invoice' means " "you don't want to generate invoice for this repair order." msgstr "" +"Selecionando 'Antes do reparo' ou 'Após o reparo', irá permitir-lhe gerar a " +"fatura antes ou após o reparo é feito, respectivamente. 'Não faturar' " +"significa que você não quer gerar fatura para esta ordem de reparos." #. module: mrp_repair #: field:mrp.repair,guarantee_limit:0 msgid "Warranty Expiration" -msgstr "" +msgstr "Término da Garantia" #. module: mrp_repair #: help:mrp.repair,pricelist_id:0 msgid "Pricelist of the selected partner." -msgstr "" +msgstr "Lista de preços do parceiro selecionado." #. module: mrp_repair #: report:repair.order:0 @@ -536,17 +573,17 @@ msgstr "Depois de ser Reparado" #: code:addons/mrp_repair/wizard/cancel_repair.py:41 #, python-format msgid "Active ID not Found" -msgstr "" +msgstr "ID Ativo não encontrado" #. module: mrp_repair #: field:mrp.repair,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: mrp_repair #: view:mrp.repair:0 msgid "Date" -msgstr "Data:" +msgstr "Data" #. module: mrp_repair #: model:ir.model,name:mrp_repair.model_mrp_repair_fee @@ -571,7 +608,7 @@ msgstr "Cotação do Reparo" #. module: mrp_repair #: field:mrp.repair,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: mrp_repair #: view:mrp.repair:0 @@ -583,7 +620,7 @@ msgstr "Finalizar Reparo" #: code:addons/mrp_repair/mrp_repair.py:442 #, python-format msgid "No account defined for product \"%s\"." -msgstr "Sem conta definida para o produtot \"%s\"." +msgstr "Sem conta definida para o produto \"%s\"." #. module: mrp_repair #: view:mrp.repair:0 @@ -601,14 +638,14 @@ msgstr "Quantidade" #. module: mrp_repair #: view:mrp.repair:0 msgid "Product Information" -msgstr "" +msgstr "Informação do Produto" #. module: mrp_repair #: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice #: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice #: view:mrp.repair:0 msgid "Make Invoice" -msgstr "Faturar" +msgstr "Gerar Fatura" #. module: mrp_repair #: view:mrp.repair:0 @@ -630,7 +667,7 @@ msgstr "Concluído" #. module: mrp_repair #: field:mrp.repair,invoice_id:0 msgid "Invoice" -msgstr "Nota Fiscal" +msgstr "Fatura" #. module: mrp_repair #: view:mrp.repair:0 @@ -665,6 +702,9 @@ msgid "" "repaired and create a picking with selected product. Note that you can " "select the locations in the Info tab, if you have the extended view." msgstr "" +"Marque esta caixa se você deseja gerenciar a entrega assim que o produto for " +"reparado e criar uma separação com o produto selecionado. Note que você pode " +"selecionar os locais na aba Info." #. module: mrp_repair #: help:mrp.repair,guarantee_limit:0 @@ -674,16 +714,20 @@ msgid "" "expiration limit, each operation and fee you will add will be set as 'not to " "invoiced' by default. Note that you can change manually afterwards." msgstr "" +"O Prazo de Garantia é calculado como: data de último movimento + garantia " +"definida no produto selecionado. Se a data atual é inferior ao prazo de " +"garantia, cada operação e valor que você adicionar será definido como \"não " +"faturado\" por padrão. Note que você pode alterar isso depois manualmente." #. module: mrp_repair #: view:mrp.repair.make_invoice:0 msgid "Create Invoice" -msgstr "Criar Fatura" +msgstr "Gerar Fatura" #. module: mrp_repair #: view:mrp.repair:0 msgid "Reair Orders" -msgstr "" +msgstr "Ordens de Reparo" #. module: mrp_repair #: field:mrp.repair.fee,name:0 @@ -722,7 +766,7 @@ msgstr "Entregar" #. module: mrp_repair #: field:mrp.repair,internal_notes:0 msgid "Internal Notes" -msgstr "Notas Internas" +msgstr "Anotações Internas" #. module: mrp_repair #: report:repair.order:0 @@ -732,13 +776,13 @@ msgstr "Impostos:" #. module: mrp_repair #: view:mrp.repair.make_invoice:0 msgid "Do you really want to create the invoice(s)?" -msgstr "Deseja Criar uma Fatura ?" +msgstr "Deseja Criar uma Fatura?" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:349 #, python-format msgid "Repair order is already invoiced." -msgstr "" +msgstr "A Ordem de Reparos já foi faturada." #. module: mrp_repair #: field:mrp.repair,picking_id:0 @@ -754,7 +798,7 @@ msgstr "Valor sem impostos" #: field:mrp.repair.fee,repair_id:0 #: field:mrp.repair.line,repair_id:0 msgid "Repair Order Reference" -msgstr "Ref. da Ordem" +msgstr "Ref. da Ordem de Reparos" #. module: mrp_repair #: code:addons/mrp_repair/wizard/cancel_repair.py:49 @@ -780,7 +824,7 @@ msgstr "Endereço de Faturamento" #. module: mrp_repair #: help:mrp.repair,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/ro.po b/addons/mrp_repair/i18n/ro.po index fa4a6af5326..2377080c0a5 100644 --- a/addons/mrp_repair/i18n/ro.po +++ b/addons/mrp_repair/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ru.po b/addons/mrp_repair/i18n/ru.po index c983ba77ab1..29fa72a8e3c 100644 --- a/addons/mrp_repair/i18n/ru.po +++ b/addons/mrp_repair/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sl.po b/addons/mrp_repair/i18n/sl.po index 06c93ed1956..bd17337df29 100644 --- a/addons/mrp_repair/i18n/sl.po +++ b/addons/mrp_repair/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sq.po b/addons/mrp_repair/i18n/sq.po index 03bc639e1fd..be114ed745d 100644 --- a/addons/mrp_repair/i18n/sq.po +++ b/addons/mrp_repair/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr.po b/addons/mrp_repair/i18n/sr.po index 7d462af69e4..403156ae188 100644 --- a/addons/mrp_repair/i18n/sr.po +++ b/addons/mrp_repair/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr@latin.po b/addons/mrp_repair/i18n/sr@latin.po index e304397e070..ae0e8376a63 100644 --- a/addons/mrp_repair/i18n/sr@latin.po +++ b/addons/mrp_repair/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sv.po b/addons/mrp_repair/i18n/sv.po index 821fc15bee2..264fd6227ed 100644 --- a/addons/mrp_repair/i18n/sv.po +++ b/addons/mrp_repair/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tlh.po b/addons/mrp_repair/i18n/tlh.po index 59b5c493417..d9e7e389ee8 100644 --- a/addons/mrp_repair/i18n/tlh.po +++ b/addons/mrp_repair/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tr.po b/addons/mrp_repair/i18n/tr.po index 54c74e8cd59..773999fed4a 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/uk.po b/addons/mrp_repair/i18n/uk.po index 373878b31b5..e30baa0e3bc 100644 --- a/addons/mrp_repair/i18n/uk.po +++ b/addons/mrp_repair/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/vi.po b/addons/mrp_repair/i18n/vi.po index fef85bb5b0e..8d9592af896 100644 --- a/addons/mrp_repair/i18n/vi.po +++ b/addons/mrp_repair/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index ff9e1c5c8cd..335da9acb05 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index da8c19b6573..6871dc39d70 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/multi_company/i18n/ar.po b/addons/multi_company/i18n/ar.po index 6fad6364025..b9acf16c855 100644 --- a/addons/multi_company/i18n/ar.po +++ b/addons/multi_company/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bg.po b/addons/multi_company/i18n/bg.po index 398234c73f7..44a6fea4eb7 100644 --- a/addons/multi_company/i18n/bg.po +++ b/addons/multi_company/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bs.po b/addons/multi_company/i18n/bs.po index dd9213b33fb..9b187dc206d 100644 --- a/addons/multi_company/i18n/bs.po +++ b/addons/multi_company/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ca.po b/addons/multi_company/i18n/ca.po index 80a4dcc6607..cf5deedc4e8 100644 --- a/addons/multi_company/i18n/ca.po +++ b/addons/multi_company/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/cs.po b/addons/multi_company/i18n/cs.po index cf06d5defd4..4c2e0e3563a 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/da.po b/addons/multi_company/i18n/da.po index dc4de23c43e..4aa3584a7d7 100644 --- a/addons/multi_company/i18n/da.po +++ b/addons/multi_company/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/de.po b/addons/multi_company/i18n/de.po index 37f4081d409..a54444004d6 100644 --- a/addons/multi_company/i18n/de.po +++ b/addons/multi_company/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es.po b/addons/multi_company/i18n/es.po index 7c9c8b945a8..bcb79a1a811 100644 --- a/addons/multi_company/i18n/es.po +++ b/addons/multi_company/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_CR.po b/addons/multi_company/i18n/es_CR.po index 99b236d7157..b308d5b0759 100644 --- a/addons/multi_company/i18n/es_CR.po +++ b/addons/multi_company/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_EC.po b/addons/multi_company/i18n/es_EC.po index 3ab42166ead..b4d4483382e 100644 --- a/addons/multi_company/i18n/es_EC.po +++ b/addons/multi_company/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/et.po b/addons/multi_company/i18n/et.po index f4bc81a3316..af542af7806 100644 --- a/addons/multi_company/i18n/et.po +++ b/addons/multi_company/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/fi.po b/addons/multi_company/i18n/fi.po index fff5f8d85a7..26676a26d69 100644 --- a/addons/multi_company/i18n/fi.po +++ b/addons/multi_company/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/fr.po b/addons/multi_company/i18n/fr.po index 77bcdc84436..7b6fe2f7bc1 100644 --- a/addons/multi_company/i18n/fr.po +++ b/addons/multi_company/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/gl.po b/addons/multi_company/i18n/gl.po index af22a8ac228..eca320577e8 100644 --- a/addons/multi_company/i18n/gl.po +++ b/addons/multi_company/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hr.po b/addons/multi_company/i18n/hr.po index cb97196cecb..1c6826ca095 100644 --- a/addons/multi_company/i18n/hr.po +++ b/addons/multi_company/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hu.po b/addons/multi_company/i18n/hu.po index 028eddd286d..29984a33014 100644 --- a/addons/multi_company/i18n/hu.po +++ b/addons/multi_company/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/id.po b/addons/multi_company/i18n/id.po index 6e446c9ab0a..2e6781de788 100644 --- a/addons/multi_company/i18n/id.po +++ b/addons/multi_company/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/it.po b/addons/multi_company/i18n/it.po index 298b7bab203..c2d372a9f5e 100644 --- a/addons/multi_company/i18n/it.po +++ b/addons/multi_company/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ja.po b/addons/multi_company/i18n/ja.po index 256830f047a..48f3b0169a8 100644 --- a/addons/multi_company/i18n/ja.po +++ b/addons/multi_company/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lo.po b/addons/multi_company/i18n/lo.po index 2f031b9056f..a1dfbcec8d9 100644 --- a/addons/multi_company/i18n/lo.po +++ b/addons/multi_company/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lt.po b/addons/multi_company/i18n/lt.po index 06e160a9fd0..6407fe23ffd 100644 --- a/addons/multi_company/i18n/lt.po +++ b/addons/multi_company/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lv.po b/addons/multi_company/i18n/lv.po index e2765d0ef95..d0c4b2eb657 100644 --- a/addons/multi_company/i18n/lv.po +++ b/addons/multi_company/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/mn.po b/addons/multi_company/i18n/mn.po index f25878822c0..05c6b015cf8 100644 --- a/addons/multi_company/i18n/mn.po +++ b/addons/multi_company/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nb.po b/addons/multi_company/i18n/nb.po index 3a73093da4a..8fa5d6aa86d 100644 --- a/addons/multi_company/i18n/nb.po +++ b/addons/multi_company/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nl.po b/addons/multi_company/i18n/nl.po index efb8f140c15..278183dcaa4 100644 --- a/addons/multi_company/i18n/nl.po +++ b/addons/multi_company/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/oc.po b/addons/multi_company/i18n/oc.po index 52092017155..ad738c24390 100644 --- a/addons/multi_company/i18n/oc.po +++ b/addons/multi_company/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pl.po b/addons/multi_company/i18n/pl.po index f30f32688a1..06bd7984270 100644 --- a/addons/multi_company/i18n/pl.po +++ b/addons/multi_company/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt.po b/addons/multi_company/i18n/pt.po index 57b4ac4adfb..a3c0d5be64a 100644 --- a/addons/multi_company/i18n/pt.po +++ b/addons/multi_company/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt_BR.po b/addons/multi_company/i18n/pt_BR.po index f9c4fc28135..cc9abd4a9a7 100644 --- a/addons/multi_company/i18n/pt_BR.po +++ b/addons/multi_company/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ro.po b/addons/multi_company/i18n/ro.po index 7c63f2a3bc3..13de8bfcb81 100644 --- a/addons/multi_company/i18n/ro.po +++ b/addons/multi_company/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ru.po b/addons/multi_company/i18n/ru.po index f703e20a2d9..0768a32eea1 100644 --- a/addons/multi_company/i18n/ru.po +++ b/addons/multi_company/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sl.po b/addons/multi_company/i18n/sl.po index 1921e764457..d94d2dd3090 100644 --- a/addons/multi_company/i18n/sl.po +++ b/addons/multi_company/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr.po b/addons/multi_company/i18n/sr.po index 58615a22ed8..9de3c0e8d92 100644 --- a/addons/multi_company/i18n/sr.po +++ b/addons/multi_company/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr@latin.po b/addons/multi_company/i18n/sr@latin.po index a1cfe705e21..04ae4068858 100644 --- a/addons/multi_company/i18n/sr@latin.po +++ b/addons/multi_company/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sv.po b/addons/multi_company/i18n/sv.po index 76a1dbcec84..6005ab2500c 100644 --- a/addons/multi_company/i18n/sv.po +++ b/addons/multi_company/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index dace1b76516..1d2b92f90ed 100644 --- a/addons/multi_company/i18n/tr.po +++ b/addons/multi_company/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/uk.po b/addons/multi_company/i18n/uk.po index 63c32741ff0..c21113be8ac 100644 --- a/addons/multi_company/i18n/uk.po +++ b/addons/multi_company/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/vi.po b/addons/multi_company/i18n/vi.po index 8fc45b62f22..f4f1e1999ab 100644 --- a/addons/multi_company/i18n/vi.po +++ b/addons/multi_company/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/zh_CN.po b/addons/multi_company/i18n/zh_CN.po index 86577b49c40..2f458848f72 100644 --- a/addons/multi_company/i18n/zh_CN.po +++ b/addons/multi_company/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany @@ -45,6 +45,14 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"亲爱的先生/女士,\n" +" 我们的记录表明,您的到期帐款尚未支付。请看下面的明细信息。\n" +" 如果这些金额已经支付,请忽略本次提醒。否则,请向我们说明如下金额。\n" +" 如果有任何关于账单的疑问,请联系我们。\n" +"\n" +" 谢谢您的合作。\n" +" 此致 \n" +" 敬礼" #. module: multi_company #: view:multi_company.default:0 diff --git a/addons/multi_company/i18n/zh_TW.po b/addons/multi_company/i18n/zh_TW.po index 27be4229a61..8521fb4f48a 100644 --- a/addons/multi_company/i18n/zh_TW.po +++ b/addons/multi_company/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/note/i18n/de.po b/addons/note/i18n/de.po index ea07b681d93..9ea6a99f113 100644 --- a/addons/note/i18n/de.po +++ b/addons/note/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/es.po b/addons/note/i18n/es.po index ad32b879ab6..97b05c0fdcb 100644 --- a/addons/note/i18n/es.po +++ b/addons/note/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/fr.po b/addons/note/i18n/fr.po index 42e89800c68..6a72d4884a7 100644 --- a/addons/note/i18n/fr.po +++ b/addons/note/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hr.po b/addons/note/i18n/hr.po index 22cadcc4eeb..ca922545cc9 100644 --- a/addons/note/i18n/hr.po +++ b/addons/note/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/id.po b/addons/note/i18n/id.po index fba401fb9bb..f0d955e9189 100644 --- a/addons/note/i18n/id.po +++ b/addons/note/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/it.po b/addons/note/i18n/it.po index 1ece2b8a34d..a14748af67d 100644 --- a/addons/note/i18n/it.po +++ b/addons/note/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/nl.po b/addons/note/i18n/nl.po index da41ed3065a..7165345021b 100644 --- a/addons/note/i18n/nl.po +++ b/addons/note/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pl.po b/addons/note/i18n/pl.po index 174edc39fd2..77ec8125f57 100644 --- a/addons/note/i18n/pl.po +++ b/addons/note/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt.po b/addons/note/i18n/pt.po index 932405032c7..a7bfe354f28 100644 --- a/addons/note/i18n/pt.po +++ b/addons/note/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt_BR.po b/addons/note/i18n/pt_BR.po index 40db3894d82..205f8858250 100644 --- a/addons/note/i18n/pt_BR.po +++ b/addons/note/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ro.po b/addons/note/i18n/ro.po index 082c42af3e7..b217a8651fe 100644 --- a/addons/note/i18n/ro.po +++ b/addons/note/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po index 4ed4dc97b1c..c142843744d 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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: note diff --git a/addons/note/i18n/zh_CN.po b/addons/note/i18n/zh_CN.po index 74e630a4674..9d590f13df8 100644 --- a/addons/note/i18n/zh_CN.po +++ b/addons/note/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note_pad/i18n/de.po b/addons/note_pad/i18n/de.po index 41fb69bad1b..bda7fdf4f2a 100644 --- a/addons/note_pad/i18n/de.po +++ b/addons/note_pad/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/es.po b/addons/note_pad/i18n/es.po index 699dc5d82e4..3b2714c4ca5 100644 --- a/addons/note_pad/i18n/es.po +++ b/addons/note_pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/fr.po b/addons/note_pad/i18n/fr.po index 23dc7b000d6..14ede510999 100644 --- a/addons/note_pad/i18n/fr.po +++ b/addons/note_pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/hr.po b/addons/note_pad/i18n/hr.po index 18402f48536..89cea309585 100644 --- a/addons/note_pad/i18n/hr.po +++ b/addons/note_pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/it.po b/addons/note_pad/i18n/it.po index 9eef882593e..a9700d5c987 100644 --- a/addons/note_pad/i18n/it.po +++ b/addons/note_pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/nl.po b/addons/note_pad/i18n/nl.po index 0657f4c3904..84ed3d2e4ef 100644 --- a/addons/note_pad/i18n/nl.po +++ b/addons/note_pad/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pl.po b/addons/note_pad/i18n/pl.po index 3fc012b033b..896a9066f9e 100644 --- a/addons/note_pad/i18n/pl.po +++ b/addons/note_pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt.po b/addons/note_pad/i18n/pt.po index 8cda2ccf556..f4e166ca757 100644 --- a/addons/note_pad/i18n/pt.po +++ b/addons/note_pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt_BR.po b/addons/note_pad/i18n/pt_BR.po index 54dd4e65783..aaa86830ccf 100644 --- a/addons/note_pad/i18n/pt_BR.po +++ b/addons/note_pad/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/ru.po b/addons/note_pad/i18n/ru.po index 5a12f44db4c..a3c4e209f53 100644 --- a/addons/note_pad/i18n/ru.po +++ b/addons/note_pad/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/zh_CN.po b/addons/note_pad/i18n/zh_CN.po index 64556853a01..d63beee6301 100644 --- a/addons/note_pad/i18n/zh_CN.po +++ b/addons/note_pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/pad/i18n/ar.po b/addons/pad/i18n/ar.po index 46ba0a90553..68f8715308e 100644 --- a/addons/pad/i18n/ar.po +++ b/addons/pad/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/bg.po b/addons/pad/i18n/bg.po index 6b94c7e742a..2976c5483cc 100644 --- a/addons/pad/i18n/bg.po +++ b/addons/pad/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ca.po b/addons/pad/i18n/ca.po index 15c0fe7458a..7a6f8e6beb3 100644 --- a/addons/pad/i18n/ca.po +++ b/addons/pad/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index d83629b9311..f408ed37bb4 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/da.po b/addons/pad/i18n/da.po index b7def875df4..1317a8e727e 100644 --- a/addons/pad/i18n/da.po +++ b/addons/pad/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index add7c31114d..208bd4db349 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/es.po b/addons/pad/i18n/es.po index 6a721b72c3b..e639617bb12 100644 --- a/addons/pad/i18n/es.po +++ b/addons/pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web @@ -32,6 +32,8 @@ msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Debe configurar el etherpad a través del menú Configuración > Compañías > " +"Compañías, en la pestaña de configuración de su compañía." #. module: pad #: help:res.company,pad_key:0 diff --git a/addons/pad/i18n/es_CR.po b/addons/pad/i18n/es_CR.po index 00a00339a24..fb283777cd2 100644 --- a/addons/pad/i18n/es_CR.po +++ b/addons/pad/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fi.po b/addons/pad/i18n/fi.po index c562f7b32e9..a916187b793 100644 --- a/addons/pad/i18n/fi.po +++ b/addons/pad/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index 472253149f6..ee565242a94 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/gl.po b/addons/pad/i18n/gl.po index f06363d1c04..46c7096e799 100644 --- a/addons/pad/i18n/gl.po +++ b/addons/pad/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hr.po b/addons/pad/i18n/hr.po index 11d6284a012..748d19b69af 100644 --- a/addons/pad/i18n/hr.po +++ b/addons/pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hu.po b/addons/pad/i18n/hu.po index b3425d74ebe..9062e321338 100644 --- a/addons/pad/i18n/hu.po +++ b/addons/pad/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/it.po b/addons/pad/i18n/it.po index 9ae507eb2e2..5f0ef443bbb 100644 --- a/addons/pad/i18n/it.po +++ b/addons/pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ja.po b/addons/pad/i18n/ja.po index 3a99076fa82..e02f5765022 100644 --- a/addons/pad/i18n/ja.po +++ b/addons/pad/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/mn.po b/addons/pad/i18n/mn.po index 2d46c00d027..8067b09e46f 100644 --- a/addons/pad/i18n/mn.po +++ b/addons/pad/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nb.po b/addons/pad/i18n/nb.po index d80bc7877ca..fb6fd6463b4 100644 --- a/addons/pad/i18n/nb.po +++ b/addons/pad/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nl.po b/addons/pad/i18n/nl.po index 9d7e2025ac3..63b9e5d4ba6 100644 --- a/addons/pad/i18n/nl.po +++ b/addons/pad/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pl.po b/addons/pad/i18n/pl.po index 147b29a00f6..eb943a2aa32 100644 --- a/addons/pad/i18n/pl.po +++ b/addons/pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt.po b/addons/pad/i18n/pt.po index d60e4f89774..3f8fa206731 100644 --- a/addons/pad/i18n/pt.po +++ b/addons/pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt_BR.po b/addons/pad/i18n/pt_BR.po index 6f0f4e33b54..7df95a3a72f 100644 --- a/addons/pad/i18n/pt_BR.po +++ b/addons/pad/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web @@ -32,6 +32,8 @@ msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Você precisa configurar o etherpad através do menu Configurações > Empresas " +"> Empresas, na aba de configuração da sua empresa" #. module: pad #: help:res.company,pad_key:0 diff --git a/addons/pad/i18n/ro.po b/addons/pad/i18n/ro.po index 339e896afa3..f068283a8c4 100644 --- a/addons/pad/i18n/ro.po +++ b/addons/pad/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ru.po b/addons/pad/i18n/ru.po index 11018438f3f..3525c1f9275 100644 --- a/addons/pad/i18n/ru.po +++ b/addons/pad/i18n/ru.po @@ -14,15 +14,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web #: code:addons/pad/static/src/xml/pad.xml:27 #, python-format msgid "Ñ" -msgstr "" +msgstr "Ñ" #. module: pad #. openerp-web @@ -46,17 +46,17 @@ msgstr "Компании" #. module: pad #: model:ir.model,name:pad.model_pad_common msgid "pad.common" -msgstr "" +msgstr "pad.common" #. module: pad #: view:res.company:0 msgid "Pads" -msgstr "" +msgstr "Планшеты" #. module: pad #: field:res.company,pad_server:0 msgid "Pad Server" -msgstr "" +msgstr "Сервер планшета" #. module: pad #: field:res.company,pad_key:0 diff --git a/addons/pad/i18n/sl.po b/addons/pad/i18n/sl.po index bc0e14e2fac..0336421ea0b 100644 --- a/addons/pad/i18n/sl.po +++ b/addons/pad/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sr@latin.po b/addons/pad/i18n/sr@latin.po index f78ed96dd52..9c21139fe37 100644 --- a/addons/pad/i18n/sr@latin.po +++ b/addons/pad/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sv.po b/addons/pad/i18n/sv.po index f6089eff17c..71b700b4458 100644 --- a/addons/pad/i18n/sv.po +++ b/addons/pad/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/tr.po b/addons/pad/i18n/tr.po index bf2bc575735..3464e1b6514 100644 --- a/addons/pad/i18n/tr.po +++ b/addons/pad/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/zh_CN.po b/addons/pad/i18n/zh_CN.po index e17f2effa42..2bc4dd425af 100644 --- a/addons/pad/i18n/zh_CN.po +++ b/addons/pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad #. openerp-web @@ -31,7 +31,7 @@ msgstr "Ñ" msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." -msgstr "" +msgstr "必须通过菜单“设置-公司-公司”,在公司的配置标签中设置 etherpad" #. module: pad #: help:res.company,pad_key:0 diff --git a/addons/pad_project/i18n/ar.po b/addons/pad_project/i18n/ar.po index 6dae749e93e..4f82200568f 100644 --- a/addons/pad_project/i18n/ar.po +++ b/addons/pad_project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/cs.po b/addons/pad_project/i18n/cs.po index 5830329702e..e5041469195 100644 --- a/addons/pad_project/i18n/cs.po +++ b/addons/pad_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/de.po b/addons/pad_project/i18n/de.po index 4db7b5a0772..adf29dc98fc 100644 --- a/addons/pad_project/i18n/de.po +++ b/addons/pad_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es.po b/addons/pad_project/i18n/es.po index 26c87b90e04..69119862fa4 100644 --- a/addons/pad_project/i18n/es.po +++ b/addons/pad_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es_CR.po b/addons/pad_project/i18n/es_CR.po index af08c59a113..00b804067fe 100644 --- a/addons/pad_project/i18n/es_CR.po +++ b/addons/pad_project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fi.po b/addons/pad_project/i18n/fi.po index 968f05ffdb7..a49efe0d74e 100644 --- a/addons/pad_project/i18n/fi.po +++ b/addons/pad_project/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fr.po b/addons/pad_project/i18n/fr.po index 7977fd92d6d..96be3bfc712 100644 --- a/addons/pad_project/i18n/fr.po +++ b/addons/pad_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/hr.po b/addons/pad_project/i18n/hr.po index 20797222557..50c44219511 100644 --- a/addons/pad_project/i18n/hr.po +++ b/addons/pad_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/it.po b/addons/pad_project/i18n/it.po index 8d9479f15e1..3906cbb3a0c 100644 --- a/addons/pad_project/i18n/it.po +++ b/addons/pad_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ja.po b/addons/pad_project/i18n/ja.po index 3ea359b42d5..667ce0a0ab6 100644 --- a/addons/pad_project/i18n/ja.po +++ b/addons/pad_project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/mn.po b/addons/pad_project/i18n/mn.po index df7340642d3..0e5ded6a08a 100644 --- a/addons/pad_project/i18n/mn.po +++ b/addons/pad_project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nb.po b/addons/pad_project/i18n/nb.po index ae86d89bbc7..cf0d8a1a109 100644 --- a/addons/pad_project/i18n/nb.po +++ b/addons/pad_project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nl.po b/addons/pad_project/i18n/nl.po index 67479970b2b..be241531834 100644 --- a/addons/pad_project/i18n/nl.po +++ b/addons/pad_project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pl.po b/addons/pad_project/i18n/pl.po index 53a91059be4..217370f02dd 100644 --- a/addons/pad_project/i18n/pl.po +++ b/addons/pad_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt.po b/addons/pad_project/i18n/pt.po index 92a7923681a..848354bf841 100644 --- a/addons/pad_project/i18n/pt.po +++ b/addons/pad_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt_BR.po b/addons/pad_project/i18n/pt_BR.po index 70f4dd7a74f..1d33ea9257a 100644 --- a/addons/pad_project/i18n/pt_BR.po +++ b/addons/pad_project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ro.po b/addons/pad_project/i18n/ro.po index 383a240f51c..0abb3e2b876 100644 --- a/addons/pad_project/i18n/ro.po +++ b/addons/pad_project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ru.po b/addons/pad_project/i18n/ru.po index a7600191bf7..8c0231e4baf 100644 --- a/addons/pad_project/i18n/ru.po +++ b/addons/pad_project/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sl.po b/addons/pad_project/i18n/sl.po index f3ae01fba92..c9845e52cd1 100644 --- a/addons/pad_project/i18n/sl.po +++ b/addons/pad_project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sv.po b/addons/pad_project/i18n/sv.po index 475cf939856..c167c96c0fc 100644 --- a/addons/pad_project/i18n/sv.po +++ b/addons/pad_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/tr.po b/addons/pad_project/i18n/tr.po index 48aba394c1e..06bd693ab63 100644 --- a/addons/pad_project/i18n/tr.po +++ b/addons/pad_project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/zh_CN.po b/addons/pad_project/i18n/zh_CN.po index 1209f59d796..89e2cde6a4f 100644 --- a/addons/pad_project/i18n/zh_CN.po +++ b/addons/pad_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/plugin/i18n/ar.po b/addons/plugin/i18n/ar.po index eb0e0f0cf1e..ff39e2a9bb9 100644 --- a/addons/plugin/i18n/ar.po +++ b/addons/plugin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/cs.po b/addons/plugin/i18n/cs.po index b7045f8d1fa..e28853d21c5 100644 --- a/addons/plugin/i18n/cs.po +++ b/addons/plugin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/de.po b/addons/plugin/i18n/de.po index c1f1a6d8e9d..030b48c966a 100644 --- a/addons/plugin/i18n/de.po +++ b/addons/plugin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/es.po b/addons/plugin/i18n/es.po index 8f164b7edef..098efb636ad 100644 --- a/addons/plugin/i18n/es.po +++ b/addons/plugin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/es_CR.po b/addons/plugin/i18n/es_CR.po index 6468ec49abf..c89b036e132 100644 --- a/addons/plugin/i18n/es_CR.po +++ b/addons/plugin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/fi.po b/addons/plugin/i18n/fi.po index b81ab095208..4dfed201dcd 100644 --- a/addons/plugin/i18n/fi.po +++ b/addons/plugin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/fr.po b/addons/plugin/i18n/fr.po index d598653182b..e14ff813744 100644 --- a/addons/plugin/i18n/fr.po +++ b/addons/plugin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/hr.po b/addons/plugin/i18n/hr.po index de8fa1cb7e4..905595450d6 100644 --- a/addons/plugin/i18n/hr.po +++ b/addons/plugin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/it.po b/addons/plugin/i18n/it.po index c2980ff7e71..364f924b89f 100644 --- a/addons/plugin/i18n/it.po +++ b/addons/plugin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ja.po b/addons/plugin/i18n/ja.po index 39c24029517..340048831a3 100644 --- a/addons/plugin/i18n/ja.po +++ b/addons/plugin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/mn.po b/addons/plugin/i18n/mn.po index 9f9d76a60f7..88e552c59c9 100644 --- a/addons/plugin/i18n/mn.po +++ b/addons/plugin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/nb.po b/addons/plugin/i18n/nb.po index 61fa633ee5f..d23f0023620 100644 --- a/addons/plugin/i18n/nb.po +++ b/addons/plugin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/nl.po b/addons/plugin/i18n/nl.po index 86e57730667..bf6a0494ce5 100644 --- a/addons/plugin/i18n/nl.po +++ b/addons/plugin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/pt.po b/addons/plugin/i18n/pt.po index ba1ae1a3142..2fa37f3bcbc 100644 --- a/addons/plugin/i18n/pt.po +++ b/addons/plugin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/pt_BR.po b/addons/plugin/i18n/pt_BR.po index dafeae12011..e7a95666f81 100644 --- a/addons/plugin/i18n/pt_BR.po +++ b/addons/plugin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ro.po b/addons/plugin/i18n/ro.po index 14362e09849..d07e1e2687a 100644 --- a/addons/plugin/i18n/ro.po +++ b/addons/plugin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ru.po b/addons/plugin/i18n/ru.po index f3f7bbad350..fb7483d7542 100644 --- a/addons/plugin/i18n/ru.po +++ b/addons/plugin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/sv.po b/addons/plugin/i18n/sv.po index 39d63cff4d5..40831895dea 100644 --- a/addons/plugin/i18n/sv.po +++ b/addons/plugin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/tr.po b/addons/plugin/i18n/tr.po index ff8230fe601..38a44a4bc17 100644 --- a/addons/plugin/i18n/tr.po +++ b/addons/plugin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/zh_CN.po b/addons/plugin/i18n/zh_CN.po index ca09af50400..9a07f17a3da 100644 --- a/addons/plugin/i18n/zh_CN.po +++ b/addons/plugin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/zh_TW.po b/addons/plugin/i18n/zh_TW.po index 421564e3a32..8f7d7438628 100644 --- a/addons/plugin/i18n/zh_TW.po +++ b/addons/plugin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin_outlook/i18n/ar.po b/addons/plugin_outlook/i18n/ar.po index e9053d07028..e05dd4b4455 100644 --- a/addons/plugin_outlook/i18n/ar.po +++ b/addons/plugin_outlook/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/bg.po b/addons/plugin_outlook/i18n/bg.po index c4a5aa3adc3..0a0b1a2af4a 100644 --- a/addons/plugin_outlook/i18n/bg.po +++ b/addons/plugin_outlook/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ca.po b/addons/plugin_outlook/i18n/ca.po index af104467b33..29efb070b77 100644 --- a/addons/plugin_outlook/i18n/ca.po +++ b/addons/plugin_outlook/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/da.po b/addons/plugin_outlook/i18n/da.po index f9a85db6280..a253d3a9cc0 100644 --- a/addons/plugin_outlook/i18n/da.po +++ b/addons/plugin_outlook/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/de.po b/addons/plugin_outlook/i18n/de.po index 9651a0ea156..61890edeca7 100644 --- a/addons/plugin_outlook/i18n/de.po +++ b/addons/plugin_outlook/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/el.po b/addons/plugin_outlook/i18n/el.po index 7b33481d801..ee5ce73fe8f 100644 --- a/addons/plugin_outlook/i18n/el.po +++ b/addons/plugin_outlook/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es.po b/addons/plugin_outlook/i18n/es.po index 41d7df8482e..d210350e718 100644 --- a/addons/plugin_outlook/i18n/es.po +++ b/addons/plugin_outlook/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es_CR.po b/addons/plugin_outlook/i18n/es_CR.po index bf3bcde0980..59c7e4baccc 100644 --- a/addons/plugin_outlook/i18n/es_CR.po +++ b/addons/plugin_outlook/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/et.po b/addons/plugin_outlook/i18n/et.po index 75383c4c77c..3c9ebfff7f4 100644 --- a/addons/plugin_outlook/i18n/et.po +++ b/addons/plugin_outlook/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fi.po b/addons/plugin_outlook/i18n/fi.po index 0eb8c0a5635..39f13976973 100644 --- a/addons/plugin_outlook/i18n/fi.po +++ b/addons/plugin_outlook/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fr.po b/addons/plugin_outlook/i18n/fr.po index fa61395d88f..c012008c3c1 100644 --- a/addons/plugin_outlook/i18n/fr.po +++ b/addons/plugin_outlook/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/gl.po b/addons/plugin_outlook/i18n/gl.po index 8802aa42803..af37f1e252b 100644 --- a/addons/plugin_outlook/i18n/gl.po +++ b/addons/plugin_outlook/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hr.po b/addons/plugin_outlook/i18n/hr.po index 9b6809f0b66..7e8c3c8d8a3 100644 --- a/addons/plugin_outlook/i18n/hr.po +++ b/addons/plugin_outlook/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hu.po b/addons/plugin_outlook/i18n/hu.po index 1bd1bd515d0..476f50d5c49 100644 --- a/addons/plugin_outlook/i18n/hu.po +++ b/addons/plugin_outlook/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/id.po b/addons/plugin_outlook/i18n/id.po index f32bb9a94ae..65dd1b8ade7 100644 --- a/addons/plugin_outlook/i18n/id.po +++ b/addons/plugin_outlook/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/it.po b/addons/plugin_outlook/i18n/it.po index e9eb7cc0151..34102ebc7e7 100644 --- a/addons/plugin_outlook/i18n/it.po +++ b/addons/plugin_outlook/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ja.po b/addons/plugin_outlook/i18n/ja.po index df7ebaf49c2..c4d8edabbd1 100644 --- a/addons/plugin_outlook/i18n/ja.po +++ b/addons/plugin_outlook/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/mn.po b/addons/plugin_outlook/i18n/mn.po index 0ac116c04bb..d09a458eabd 100644 --- a/addons/plugin_outlook/i18n/mn.po +++ b/addons/plugin_outlook/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nb.po b/addons/plugin_outlook/i18n/nb.po index 3ea318bec0e..8fbcc796838 100644 --- a/addons/plugin_outlook/i18n/nb.po +++ b/addons/plugin_outlook/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nl.po b/addons/plugin_outlook/i18n/nl.po index db42ee554b0..28ea577ad57 100644 --- a/addons/plugin_outlook/i18n/nl.po +++ b/addons/plugin_outlook/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pl.po b/addons/plugin_outlook/i18n/pl.po index 789ce0d46c2..8779009b68c 100644 --- a/addons/plugin_outlook/i18n/pl.po +++ b/addons/plugin_outlook/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt.po b/addons/plugin_outlook/i18n/pt.po index 91ad5873f1a..03ccb675447 100644 --- a/addons/plugin_outlook/i18n/pt.po +++ b/addons/plugin_outlook/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt_BR.po b/addons/plugin_outlook/i18n/pt_BR.po index d26fa67e492..179cabac9ab 100644 --- a/addons/plugin_outlook/i18n/pt_BR.po +++ b/addons/plugin_outlook/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ro.po b/addons/plugin_outlook/i18n/ro.po index e1b8ea15da6..a581bdcbf88 100644 --- a/addons/plugin_outlook/i18n/ro.po +++ b/addons/plugin_outlook/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ru.po b/addons/plugin_outlook/i18n/ru.po index 40c58ab994d..1ad85631103 100644 --- a/addons/plugin_outlook/i18n/ru.po +++ b/addons/plugin_outlook/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sl.po b/addons/plugin_outlook/i18n/sl.po index 30e3697c5a2..7404575f381 100644 --- a/addons/plugin_outlook/i18n/sl.po +++ b/addons/plugin_outlook/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sr@latin.po b/addons/plugin_outlook/i18n/sr@latin.po index f9b6fbad60e..9505105cdef 100644 --- a/addons/plugin_outlook/i18n/sr@latin.po +++ b/addons/plugin_outlook/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sv.po b/addons/plugin_outlook/i18n/sv.po index 1ac9b967fe2..94f141eb001 100644 --- a/addons/plugin_outlook/i18n/sv.po +++ b/addons/plugin_outlook/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/tr.po b/addons/plugin_outlook/i18n/tr.po index d9c4a63a8c6..3ef8ecc0904 100644 --- a/addons/plugin_outlook/i18n/tr.po +++ b/addons/plugin_outlook/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/zh_CN.po b/addons/plugin_outlook/i18n/zh_CN.po index 232ca83baf5..576c14535ba 100644 --- a/addons/plugin_outlook/i18n/zh_CN.po +++ b/addons/plugin_outlook/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_thunderbird/i18n/ar.po b/addons/plugin_thunderbird/i18n/ar.po index 4c269d0c258..aff5e1119b0 100644 --- a/addons/plugin_thunderbird/i18n/ar.po +++ b/addons/plugin_thunderbird/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/bg.po b/addons/plugin_thunderbird/i18n/bg.po index c2f7ea65844..b5a3cc67a56 100644 --- a/addons/plugin_thunderbird/i18n/bg.po +++ b/addons/plugin_thunderbird/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ca.po b/addons/plugin_thunderbird/i18n/ca.po index 4e6a353c2c4..80f274dfac4 100644 --- a/addons/plugin_thunderbird/i18n/ca.po +++ b/addons/plugin_thunderbird/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/cs.po b/addons/plugin_thunderbird/i18n/cs.po index a3c65894627..1c943a212c9 100644 --- a/addons/plugin_thunderbird/i18n/cs.po +++ b/addons/plugin_thunderbird/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/da.po b/addons/plugin_thunderbird/i18n/da.po index c3202104281..c1ec5a75813 100644 --- a/addons/plugin_thunderbird/i18n/da.po +++ b/addons/plugin_thunderbird/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/de.po b/addons/plugin_thunderbird/i18n/de.po index 1a94b59ce46..46f8913206b 100644 --- a/addons/plugin_thunderbird/i18n/de.po +++ b/addons/plugin_thunderbird/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_GB.po b/addons/plugin_thunderbird/i18n/en_GB.po index ceb21137d0e..31d8c938d60 100644 --- a/addons/plugin_thunderbird/i18n/en_GB.po +++ b/addons/plugin_thunderbird/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_US.po b/addons/plugin_thunderbird/i18n/en_US.po index f56ed5264db..6251ef7038a 100644 --- a/addons/plugin_thunderbird/i18n/en_US.po +++ b/addons/plugin_thunderbird/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es.po b/addons/plugin_thunderbird/i18n/es.po index 3603f90f075..3f0cb04fcc6 100644 --- a/addons/plugin_thunderbird/i18n/es.po +++ b/addons/plugin_thunderbird/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es_CR.po b/addons/plugin_thunderbird/i18n/es_CR.po index b6a72794903..3a014cac577 100644 --- a/addons/plugin_thunderbird/i18n/es_CR.po +++ b/addons/plugin_thunderbird/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/et.po b/addons/plugin_thunderbird/i18n/et.po index 37e1af4ae23..68e01ce902b 100644 --- a/addons/plugin_thunderbird/i18n/et.po +++ b/addons/plugin_thunderbird/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/eu.po b/addons/plugin_thunderbird/i18n/eu.po index 3c5bc9164e5..74febb99e6f 100644 --- a/addons/plugin_thunderbird/i18n/eu.po +++ b/addons/plugin_thunderbird/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fi.po b/addons/plugin_thunderbird/i18n/fi.po index f1ebbb3e1b2..09831e7f8dd 100644 --- a/addons/plugin_thunderbird/i18n/fi.po +++ b/addons/plugin_thunderbird/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fr.po b/addons/plugin_thunderbird/i18n/fr.po index 2fea5ab5289..5129deabafb 100644 --- a/addons/plugin_thunderbird/i18n/fr.po +++ b/addons/plugin_thunderbird/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/gl.po b/addons/plugin_thunderbird/i18n/gl.po index ef50cafef5c..f671e7cc336 100644 --- a/addons/plugin_thunderbird/i18n/gl.po +++ b/addons/plugin_thunderbird/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hr.po b/addons/plugin_thunderbird/i18n/hr.po index 8110273e532..644e04a3c95 100644 --- a/addons/plugin_thunderbird/i18n/hr.po +++ b/addons/plugin_thunderbird/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hu.po b/addons/plugin_thunderbird/i18n/hu.po index 92408230346..4899c477063 100644 --- a/addons/plugin_thunderbird/i18n/hu.po +++ b/addons/plugin_thunderbird/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/is.po b/addons/plugin_thunderbird/i18n/is.po index b9d31268a7f..0e819f9ec15 100644 --- a/addons/plugin_thunderbird/i18n/is.po +++ b/addons/plugin_thunderbird/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/it.po b/addons/plugin_thunderbird/i18n/it.po index dd29fe8634c..9522cce4330 100644 --- a/addons/plugin_thunderbird/i18n/it.po +++ b/addons/plugin_thunderbird/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ja.po b/addons/plugin_thunderbird/i18n/ja.po index 92bd9475199..247c9a07f4e 100644 --- a/addons/plugin_thunderbird/i18n/ja.po +++ b/addons/plugin_thunderbird/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/mn.po b/addons/plugin_thunderbird/i18n/mn.po index 7bbff8220fa..f1a54cd73fb 100644 --- a/addons/plugin_thunderbird/i18n/mn.po +++ b/addons/plugin_thunderbird/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nb.po b/addons/plugin_thunderbird/i18n/nb.po index 348f242820a..644d3e8fce3 100644 --- a/addons/plugin_thunderbird/i18n/nb.po +++ b/addons/plugin_thunderbird/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nl.po b/addons/plugin_thunderbird/i18n/nl.po index 0ea677e4de4..20f89405d1e 100644 --- a/addons/plugin_thunderbird/i18n/nl.po +++ b/addons/plugin_thunderbird/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pl.po b/addons/plugin_thunderbird/i18n/pl.po index 4bacb0cbbd1..77fa2557c87 100644 --- a/addons/plugin_thunderbird/i18n/pl.po +++ b/addons/plugin_thunderbird/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt.po b/addons/plugin_thunderbird/i18n/pt.po index 003e9faa516..b4a989b6e8a 100644 --- a/addons/plugin_thunderbird/i18n/pt.po +++ b/addons/plugin_thunderbird/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt_BR.po b/addons/plugin_thunderbird/i18n/pt_BR.po index 9cb3802a5a1..c4de2bdbc38 100644 --- a/addons/plugin_thunderbird/i18n/pt_BR.po +++ b/addons/plugin_thunderbird/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ro.po b/addons/plugin_thunderbird/i18n/ro.po index b2b8a691f50..cc2772694ab 100644 --- a/addons/plugin_thunderbird/i18n/ro.po +++ b/addons/plugin_thunderbird/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ru.po b/addons/plugin_thunderbird/i18n/ru.po index 9e128564faf..14c78935e08 100644 --- a/addons/plugin_thunderbird/i18n/ru.po +++ b/addons/plugin_thunderbird/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sk.po b/addons/plugin_thunderbird/i18n/sk.po index 056b356ebd0..36286247bc2 100644 --- a/addons/plugin_thunderbird/i18n/sk.po +++ b/addons/plugin_thunderbird/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sl.po b/addons/plugin_thunderbird/i18n/sl.po index 33846a397d3..9e0c88e479d 100644 --- a/addons/plugin_thunderbird/i18n/sl.po +++ b/addons/plugin_thunderbird/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr.po b/addons/plugin_thunderbird/i18n/sr.po index d44746548be..3128c798c60 100644 --- a/addons/plugin_thunderbird/i18n/sr.po +++ b/addons/plugin_thunderbird/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr@latin.po b/addons/plugin_thunderbird/i18n/sr@latin.po index 295fa5575b7..05b701fa587 100644 --- a/addons/plugin_thunderbird/i18n/sr@latin.po +++ b/addons/plugin_thunderbird/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sv.po b/addons/plugin_thunderbird/i18n/sv.po index 5fa1ba409af..39d00ab6d7b 100644 --- a/addons/plugin_thunderbird/i18n/sv.po +++ b/addons/plugin_thunderbird/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/tr.po b/addons/plugin_thunderbird/i18n/tr.po index c3ef3f5f480..d7a11e5e20d 100644 --- a/addons/plugin_thunderbird/i18n/tr.po +++ b/addons/plugin_thunderbird/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/zh_CN.po b/addons/plugin_thunderbird/i18n/zh_CN.po index eea33c479fd..026d8a7ff23 100644 --- a/addons/plugin_thunderbird/i18n/zh_CN.po +++ b/addons/plugin_thunderbird/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/point_of_sale/i18n/ar.po b/addons/point_of_sale/i18n/ar.po index 0b6d47e4178..78b9e27338d 100644 --- a/addons/point_of_sale/i18n/ar.po +++ b/addons/point_of_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bg.po b/addons/point_of_sale/i18n/bg.po index f3b77df43d8..27a177de171 100644 --- a/addons/point_of_sale/i18n/bg.po +++ b/addons/point_of_sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bs.po b/addons/point_of_sale/i18n/bs.po index 9b056d25eb8..a1ad9530306 100644 --- a/addons/point_of_sale/i18n/bs.po +++ b/addons/point_of_sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ca.po b/addons/point_of_sale/i18n/ca.po index c4182a3dd60..0a1054019bd 100644 --- a/addons/point_of_sale/i18n/ca.po +++ b/addons/point_of_sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/cs.po b/addons/point_of_sale/i18n/cs.po index 57407225983..bd8d0179a8e 100644 --- a/addons/point_of_sale/i18n/cs.po +++ b/addons/point_of_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Language: cs_CZ\n" "X-Source-Language: en\n" diff --git a/addons/point_of_sale/i18n/da.po b/addons/point_of_sale/i18n/da.po index c2bada76751..d2c670f4d0f 100644 --- a/addons/point_of_sale/i18n/da.po +++ b/addons/point_of_sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/de.po b/addons/point_of_sale/i18n/de.po index 2dca3e2e998..f528e8c05e5 100644 --- a/addons/point_of_sale/i18n/de.po +++ b/addons/point_of_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/el.po b/addons/point_of_sale/i18n/el.po index 1be4cf08e31..50ecf1dd4dd 100644 --- a/addons/point_of_sale/i18n/el.po +++ b/addons/point_of_sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index 9fd0f1501fc..6b1396a2935 100644 --- a/addons/point_of_sale/i18n/es.po +++ b/addons/point_of_sale/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 21ab12447c7..d4dc7cb9112 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_CR.po b/addons/point_of_sale/i18n/es_CR.po index 064a6336635..8f7e4ac8de9 100644 --- a/addons/point_of_sale/i18n/es_CR.po +++ b/addons/point_of_sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_EC.po b/addons/point_of_sale/i18n/es_EC.po index 1f2a8bac1ca..ca4e0af061f 100644 --- a/addons/point_of_sale/i18n/es_EC.po +++ b/addons/point_of_sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/et.po b/addons/point_of_sale/i18n/et.po index fad0eb6f696..cd1ddefd4c4 100644 --- a/addons/point_of_sale/i18n/et.po +++ b/addons/point_of_sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fi.po b/addons/point_of_sale/i18n/fi.po index 650646ac598..22759188aa4 100644 --- a/addons/point_of_sale/i18n/fi.po +++ b/addons/point_of_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index a1ab1343a1d..432f1157ee1 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/i18n/fr.po @@ -8,14 +8,14 @@ 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-01-12 08:16+0000\n" +"PO-Revision-Date: 2013-01-17 20:24+0000\n" "Last-Translator: WANTELLET Sylvain \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-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -872,7 +872,7 @@ msgstr "Solde final" #: code:addons/point_of_sale/wizard/pos_box_out.py:89 #, python-format msgid "please check that account is set to %s." -msgstr "" +msgstr "veuillez vérifier que le compte est défini à %s." #. module: point_of_sale #: help:pos.category,image:0 diff --git a/addons/point_of_sale/i18n/hi.po b/addons/point_of_sale/i18n/hi.po index e2a521c7a40..c9a4742a61d 100644 --- a/addons/point_of_sale/i18n/hi.po +++ b/addons/point_of_sale/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hr.po b/addons/point_of_sale/i18n/hr.po index 00fc44b1323..d04a5b15c8e 100644 --- a/addons/point_of_sale/i18n/hr.po +++ b/addons/point_of_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hu.po b/addons/point_of_sale/i18n/hu.po index 342804611fb..64ff6f3baef 100644 --- a/addons/point_of_sale/i18n/hu.po +++ b/addons/point_of_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/id.po b/addons/point_of_sale/i18n/id.po index c624c4aecb2..38729dc0f01 100644 --- a/addons/point_of_sale/i18n/id.po +++ b/addons/point_of_sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index 5c6d36091d3..e8c6d363944 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ja.po b/addons/point_of_sale/i18n/ja.po index 6a4bef4e5b3..b55c2c62ffb 100644 --- a/addons/point_of_sale/i18n/ja.po +++ b/addons/point_of_sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index 75771ec8d63..92380992e2b 100644 --- a/addons/point_of_sale/i18n/ko.po +++ b/addons/point_of_sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index 2d889f31fd7..39f4eb05ab6 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lv.po b/addons/point_of_sale/i18n/lv.po index 7ac062bdca8..4ffdb377748 100644 --- a/addons/point_of_sale/i18n/lv.po +++ b/addons/point_of_sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/mn.po b/addons/point_of_sale/i18n/mn.po index f7ee33d72e9..95cbdc6be19 100644 --- a/addons/point_of_sale/i18n/mn.po +++ b/addons/point_of_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nb.po b/addons/point_of_sale/i18n/nb.po index 880bf292cf2..481af10e79c 100644 --- a/addons/point_of_sale/i18n/nb.po +++ b/addons/point_of_sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl.po b/addons/point_of_sale/i18n/nl.po index 01057d392bc..82c345353c9 100644 --- a/addons/point_of_sale/i18n/nl.po +++ b/addons/point_of_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index a80a06b9eb1..e64d01c6de7 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pl.po b/addons/point_of_sale/i18n/pl.po index 9173d5cee3c..f2c15b173f5 100644 --- a/addons/point_of_sale/i18n/pl.po +++ b/addons/point_of_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index 7b05b3ca78c..890556c2009 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index f9944cf8e35..b6cb735d086 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ro.po b/addons/point_of_sale/i18n/ro.po index ac06b6ef974..9a75a5e5deb 100644 --- a/addons/point_of_sale/i18n/ro.po +++ b/addons/point_of_sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ru.po b/addons/point_of_sale/i18n/ru.po index 277a4865099..39f977a3fc7 100644 --- a/addons/point_of_sale/i18n/ru.po +++ b/addons/point_of_sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sl.po b/addons/point_of_sale/i18n/sl.po index e368b4401c5..c8be86f00d8 100644 --- a/addons/point_of_sale/i18n/sl.po +++ b/addons/point_of_sale/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-01 21:54+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sq.po b/addons/point_of_sale/i18n/sq.po index d02d64493f6..36063b3bcae 100644 --- a/addons/point_of_sale/i18n/sq.po +++ b/addons/point_of_sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:24+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:56+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr.po b/addons/point_of_sale/i18n/sr.po index 62e6f851288..a7aecf581eb 100644 --- a/addons/point_of_sale/i18n/sr.po +++ b/addons/point_of_sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr@latin.po b/addons/point_of_sale/i18n/sr@latin.po index ef336cd5e49..98b22b18b09 100644 --- a/addons/point_of_sale/i18n/sr@latin.po +++ b/addons/point_of_sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index ee00ece3277..b72b87142ca 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:25+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tlh.po b/addons/point_of_sale/i18n/tlh.po index 0bc89395c93..26d443e8703 100644 --- a/addons/point_of_sale/i18n/tlh.po +++ b/addons/point_of_sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index 41c2dfbd215..2e25bf21479 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/uk.po b/addons/point_of_sale/i18n/uk.po index 3dc310c2584..440909052bf 100644 --- a/addons/point_of_sale/i18n/uk.po +++ b/addons/point_of_sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/vi.po b/addons/point_of_sale/i18n/vi.po index ff3efc6331c..fc1ee3c8c2a 100644 --- a/addons/point_of_sale/i18n/vi.po +++ b/addons/point_of_sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index ffe51c99aed..1c918ad2e30 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_HK.po b/addons/point_of_sale/i18n/zh_HK.po index d27db76fbed..79dc247b26b 100644 --- a/addons/point_of_sale/i18n/zh_HK.po +++ b/addons/point_of_sale/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index 59ff7d2f82e..2b3d3446265 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/portal/i18n/ar.po b/addons/portal/i18n/ar.po index 77cf51de701..06a9f7e46bd 100644 --- a/addons/portal/i18n/ar.po +++ b/addons/portal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bg.po b/addons/portal/i18n/bg.po index 61115a577d4..c9da062969d 100644 --- a/addons/portal/i18n/bg.po +++ b/addons/portal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bs.po b/addons/portal/i18n/bs.po index 87e105f44b8..50e26d5b441 100644 --- a/addons/portal/i18n/bs.po +++ b/addons/portal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ca.po b/addons/portal/i18n/ca.po index 05042e4f9b7..e22faad95b5 100644 --- a/addons/portal/i18n/ca.po +++ b/addons/portal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/cs.po b/addons/portal/i18n/cs.po index c301d76d0c0..af1611c5fa5 100644 --- a/addons/portal/i18n/cs.po +++ b/addons/portal/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/da.po b/addons/portal/i18n/da.po index 138d70df097..d8142cf1834 100644 --- a/addons/portal/i18n/da.po +++ b/addons/portal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/de.po b/addons/portal/i18n/de.po index 150d842c508..f21e8e5f78a 100644 --- a/addons/portal/i18n/de.po +++ b/addons/portal/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/es.po b/addons/portal/i18n/es.po index c444e579ff0..64157d11640 100644 --- a/addons/portal/i18n/es.po +++ b/addons/portal/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 @@ -46,7 +46,7 @@ msgstr "" #. module: portal #: model:mail.group,name:portal.company_jobs msgid "Company Jobs" -msgstr "" +msgstr "Puestos en la compañía" #. module: portal #: view:portal.payment.acquirer:0 @@ -162,7 +162,7 @@ msgstr "Pague en línea de forma segura" #: code:addons/portal/acquirer.py:77 #, python-format msgid "No online payment acquirers configured" -msgstr "" +msgstr "No se ha configurado ningún método de pago" #. module: portal #: view:portal.payment.acquirer:0 @@ -223,7 +223,7 @@ msgstr "Su cuenta OpenERP en %(company)s" #. module: portal #: model:res.groups,name:portal.group_anonymous msgid "Anonymous" -msgstr "" +msgstr "Anónimo" #. module: portal #: field:portal.wizard.user,in_portal:0 @@ -342,6 +342,9 @@ msgid "" "restricted menus).\n" " They usually do not belong to the usual OpenERP groups." msgstr "" +"Los usuarios anónimos tienen permisos específicos (tales como reglas de " +"registro y menús restringidos). Normalmente no pertenecen a los grupos " +"usuales de OpenERP." #. module: portal #: model:ir.model,name:portal.model_portal_payment_acquirer @@ -351,7 +354,7 @@ msgstr "Método de pago en línea" #. module: portal #: model:mail.group,name:portal.company_news_feed msgid "Company News" -msgstr "" +msgstr "Noticias de la compañía" #. module: portal #: code:addons/portal/acquirer.py:76 @@ -359,6 +362,8 @@ msgstr "" msgid "" "You can finish the configuration in the Bank&Cash settings" msgstr "" +"Puede finalizar la configuración en Configuración de banco y " +"caja" #. module: portal #: view:portal.payment.acquirer:0 @@ -394,6 +399,8 @@ msgid "" "object: the document on which the payment form is rendered (usually an " "invoice or sales order record)" msgstr "" +"objeto: el documento en el que se muestra el formulario de pago (normalmente " +"una registro de factura o de pedido de venta)" #. module: portal #: help:portal.wizard,welcome_message:0 diff --git a/addons/portal/i18n/es_CR.po b/addons/portal/i18n/es_CR.po index a5dc0df5713..e01b936ce34 100644 --- a/addons/portal/i18n/es_CR.po +++ b/addons/portal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/et.po b/addons/portal/i18n/et.po index bc252f448d0..b2d09f84eb4 100644 --- a/addons/portal/i18n/et.po +++ b/addons/portal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fi.po b/addons/portal/i18n/fi.po index 789519151e7..fce565e2b5b 100644 --- a/addons/portal/i18n/fi.po +++ b/addons/portal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fr.po b/addons/portal/i18n/fr.po index d55bddb539e..aaaa8d5376b 100644 --- a/addons/portal/i18n/fr.po +++ b/addons/portal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:22+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hr.po b/addons/portal/i18n/hr.po index 466c89315fa..e9344e86ecb 100644 --- a/addons/portal/i18n/hr.po +++ b/addons/portal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hu.po b/addons/portal/i18n/hu.po index c7f73238b14..59de119a232 100644 --- a/addons/portal/i18n/hu.po +++ b/addons/portal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/id.po b/addons/portal/i18n/id.po index 158f5c63405..ed9b7061c57 100644 --- a/addons/portal/i18n/id.po +++ b/addons/portal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/it.po b/addons/portal/i18n/it.po index 5e50d0cccf1..f1716914730 100644 --- a/addons/portal/i18n/it.po +++ b/addons/portal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ja.po b/addons/portal/i18n/ja.po index 3d40ecd9352..c9ce2cb5af7 100644 --- a/addons/portal/i18n/ja.po +++ b/addons/portal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lo.po b/addons/portal/i18n/lo.po index ee1b290725d..cf9559b2f55 100644 --- a/addons/portal/i18n/lo.po +++ b/addons/portal/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lt.po b/addons/portal/i18n/lt.po index d956ada2175..6a16b97972a 100644 --- a/addons/portal/i18n/lt.po +++ b/addons/portal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/mn.po b/addons/portal/i18n/mn.po index 6dbb283e79a..ca0e06d09c3 100644 --- a/addons/portal/i18n/mn.po +++ b/addons/portal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/nl.po b/addons/portal/i18n/nl.po index 2d8452ac8c6..9137af46916 100644 --- a/addons/portal/i18n/nl.po +++ b/addons/portal/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pl.po b/addons/portal/i18n/pl.po index beeddc512d3..f7e53c96e2a 100644 --- a/addons/portal/i18n/pl.po +++ b/addons/portal/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pt.po b/addons/portal/i18n/pt.po index dfb88211b51..6294c13a497 100644 --- a/addons/portal/i18n/pt.po +++ b/addons/portal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pt_BR.po b/addons/portal/i18n/pt_BR.po index 63fa084323f..033808c78bd 100644 --- a/addons/portal/i18n/pt_BR.po +++ b/addons/portal/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ro.po b/addons/portal/i18n/ro.po index 346334869e3..5d4f5874b4d 100644 --- a/addons/portal/i18n/ro.po +++ b/addons/portal/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ru.po b/addons/portal/i18n/ru.po index 6000af17a8a..3c0720c026f 100644 --- a/addons/portal/i18n/ru.po +++ b/addons/portal/i18n/ru.po @@ -8,14 +8,14 @@ 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 09:10+0000\n" +"PO-Revision-Date: 2013-01-17 10:16+0000\n" "Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 @@ -27,6 +27,7 @@ msgstr "" #, python-format msgid "Please select at least one user to share with" msgstr "" +"Пожалуйста выберите как минимум одного пользователя, с кем поделиться" #. module: portal #: view:portal.wizard:0 @@ -37,32 +38,37 @@ msgid "" " If necessary, you can fix any contact's email " "address directly in the list." msgstr "" +"Выберите какие контакты должны принадлежать порталу в списке ниже.\n" +" Адрес эл. почты каждого выбранного контакта должен " +"быть действующим и уникальным.\n" +" Если необходимо, вы можете исправить некоторые " +"адреса эл. почты прямо в этом списке." #. module: portal #: model:mail.group,name:portal.company_jobs msgid "Company Jobs" -msgstr "" +msgstr "Вакансии компании" #. module: portal #: view:portal.payment.acquirer:0 msgid "amount: the total amount to pay, as a float" -msgstr "" +msgstr "сумма: общая сумма оплаты, число с плавающей точкой" #. module: portal #: view:portal.wizard.user:0 msgid "Contacts" -msgstr "" +msgstr "Контакты" #. module: portal #: view:share.wizard:0 #: field:share.wizard,group_ids:0 msgid "Existing groups" -msgstr "" +msgstr "Существующие группы" #. module: portal #: view:res.groups:0 msgid "Portal Groups" -msgstr "" +msgstr "Группы портала" #. module: portal #: field:portal.wizard,welcome_message:0 @@ -72,28 +78,28 @@ msgstr "Приглашение" #. module: portal #: view:res.groups:0 msgid "Non-Portal Groups" -msgstr "" +msgstr "Группы не связанные с порталом" #. module: portal #: code:addons/portal/wizard/share_wizard.py:54 #, python-format msgid "Please select at least one group to share with" -msgstr "" +msgstr "Пожалуйста выберите как минимум одну группу с которой поделиться" #. module: portal #: view:share.wizard:0 msgid "Details" -msgstr "" +msgstr "Подробности" #. module: portal #: model:ir.ui.menu,name:portal.portal_orders msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Заявки и заказы продаж" #. module: portal #: view:portal.payment.acquirer:0 msgid "reference: the reference number of the document to pay" -msgstr "" +msgstr "ссылка: ссылка на номер документа для оплаты" #. module: portal #: help:portal.payment.acquirer,visible:0 @@ -105,12 +111,12 @@ msgstr "" #. module: portal #: model:ir.model,name:portal.model_share_wizard msgid "Share Wizard" -msgstr "" +msgstr "Мастер совместного доступа" #. module: portal #: field:portal.wizard.user,email:0 msgid "Email" -msgstr "" +msgstr "Эл. почта" #. module: portal #: model:ir.actions.client,help:portal.action_news @@ -120,6 +126,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" У вас нет непрочитанных новостей компании.\n" +"

\n" +" " #. module: portal #: code:addons/portal/wizard/portal_wizard.py:194 @@ -134,18 +144,18 @@ msgstr "" #: model:ir.actions.client,name:portal.action_jobs #: model:ir.ui.menu,name:portal.portal_jobs msgid "Jobs" -msgstr "" +msgstr "Вакансии" #. module: portal #: field:portal.wizard,user_ids:0 msgid "Users" -msgstr "" +msgstr "Пользователи" #. module: portal #: code:addons/portal/acquirer.py:82 #, python-format msgid "Pay safely online" -msgstr "" +msgstr "Оплатить безопасно онлайн" #. module: portal #: code:addons/portal/acquirer.py:77 @@ -169,7 +179,7 @@ msgstr "" #: code:addons/portal/wizard/share_wizard.py:38 #, python-format msgid "Users you already shared with" -msgstr "" +msgstr "Пользователи с которыми вы уже поделились" #. module: portal #: model:ir.actions.client,help:portal.action_jobs @@ -193,7 +203,7 @@ msgstr "" #: field:res.groups,is_portal:0 #: model:res.groups,name:portal.group_portal msgid "Portal" -msgstr "" +msgstr "Портал" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:34 @@ -204,7 +214,7 @@ msgstr "" #. module: portal #: model:res.groups,name:portal.group_anonymous msgid "Anonymous" -msgstr "" +msgstr "Анонимно" #. module: portal #: field:portal.wizard.user,in_portal:0 @@ -215,12 +225,12 @@ msgstr "" #: model:ir.actions.client,name:portal.action_news #: model:ir.ui.menu,name:portal.portal_company_news msgid "News" -msgstr "" +msgstr "Новости" #. module: portal #: model:ir.ui.menu,name:portal.portal_after_sales msgid "After Sale Services" -msgstr "" +msgstr "Послепродажное обслуживание" #. module: portal #: model:res.groups,comment:portal.group_portal @@ -234,39 +244,39 @@ msgstr "" #: model:ir.actions.act_window,name:portal.action_acquirer_list #: view:portal.payment.acquirer:0 msgid "Payment Acquirers" -msgstr "" +msgstr "Получатели платежа" #. module: portal #: model:ir.ui.menu,name:portal.portal_projects msgid "Projects" -msgstr "" +msgstr "Проекты" #. module: portal #: model:ir.actions.client,name:portal.action_mail_inbox_feeds_portal #: model:ir.ui.menu,name:portal.portal_inbox msgid "Inbox" -msgstr "" +msgstr "Входящие" #. module: portal #: view:share.wizard:0 #: field:share.wizard,user_ids:0 msgid "Existing users" -msgstr "" +msgstr "Существующие пользователи" #. module: portal #: field:portal.wizard.user,wizard_id:0 msgid "Wizard" -msgstr "" +msgstr "Мастер" #. module: portal #: field:portal.payment.acquirer,name:0 msgid "Name" -msgstr "" +msgstr "Название" #. module: portal #: model:ir.model,name:portal.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Группы доступа" #. module: portal #: view:portal.payment.acquirer:0 @@ -283,33 +293,33 @@ msgstr "" #. module: portal #: help:res.groups,is_portal:0 msgid "If checked, this group is usable as a portal." -msgstr "" +msgstr "Если отмечено, эта группа может использоваться в портале." #. module: portal #: field:portal.payment.acquirer,form_template:0 msgid "Payment form template (HTML)" -msgstr "" +msgstr "Платеж из шаблона (HTML)" #. module: portal #: field:portal.wizard.user,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Контакт" #. module: portal #: model:ir.model,name:portal.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Исходящие письма" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:193 #, python-format msgid "Email required" -msgstr "" +msgstr "Требуется эл. почта" #. module: portal #: model:ir.ui.menu,name:portal.portal_messages msgid "Messaging" -msgstr "" +msgstr "Сообщения" #. module: portal #: model:res.groups,comment:portal.group_anonymous @@ -327,7 +337,7 @@ msgstr "" #. module: portal #: model:mail.group,name:portal.company_news_feed msgid "Company News" -msgstr "" +msgstr "Новости компании" #. module: portal #: code:addons/portal/acquirer.py:76 @@ -355,6 +365,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Поздравляем! Во входящих пусто.\n" +"

\n" +" Ваши входящие содержат личные сообщения или\n" +" эл. почту отправленную вам а также информацию по " +"документам\n" +" или людям которых вы отслеживаете.\n" +"

\n" +" " #. module: portal #: view:portal.payment.acquirer:0 @@ -367,11 +386,12 @@ msgstr "" #: help:portal.wizard,welcome_message:0 msgid "This text is included in the email sent to new users of the portal." msgstr "" +"Этот текст был включен в письмо, отправленное новому пользователю портала." #. module: portal #: model:ir.ui.menu,name:portal.portal_company msgid "About Us" -msgstr "" +msgstr "О нас" #. module: portal #: view:portal.payment.acquirer:0 @@ -410,7 +430,7 @@ msgstr "" #. module: portal #: view:portal.wizard:0 msgid "or" -msgstr "" +msgstr "или" #. module: portal #: model:portal.payment.acquirer,form_template:portal.paypal_acquirer @@ -437,7 +457,7 @@ msgstr "" #. module: portal #: model:ir.model,name:portal.model_portal_wizard_user msgid "Portal User Config" -msgstr "" +msgstr "Настройка пользователя портала" #. module: portal #: view:portal.payment.acquirer:0 @@ -449,23 +469,23 @@ msgstr "" #. module: portal #: field:portal.payment.acquirer,visible:0 msgid "Visible" -msgstr "" +msgstr "Видимый" #. module: portal #: code:addons/portal/wizard/share_wizard.py:39 #, python-format msgid "Existing Groups (e.g Portal Groups)" -msgstr "" +msgstr "Существующие группы (например группы портала)" #. module: portal #: view:portal.wizard:0 msgid "Cancel" -msgstr "" +msgstr "Отмена" #. module: portal #: view:portal.wizard:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sl.po b/addons/portal/i18n/sl.po index 2221262b4f0..f97397a1410 100644 --- a/addons/portal/i18n/sl.po +++ b/addons/portal/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sr.po b/addons/portal/i18n/sr.po index d54aae308c5..2c06d74a7b0 100644 --- a/addons/portal/i18n/sr.po +++ b/addons/portal/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sv.po b/addons/portal/i18n/sv.po index f2e708da9fe..dd4809cf7e3 100644 --- a/addons/portal/i18n/sv.po +++ b/addons/portal/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/tr.po b/addons/portal/i18n/tr.po index 094005dca84..9ca5be84fd9 100644 --- a/addons/portal/i18n/tr.po +++ b/addons/portal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/uk.po b/addons/portal/i18n/uk.po index b2ac715726c..eb3c83e9b66 100644 --- a/addons/portal/i18n/uk.po +++ b/addons/portal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_CN.po b/addons/portal/i18n/zh_CN.po index 253737f8864..a6524823944 100644 --- a/addons/portal/i18n/zh_CN.po +++ b/addons/portal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_TW.po b/addons/portal/i18n/zh_TW.po index 047ed7d3aad..9c6a9f70009 100644 --- a/addons/portal/i18n/zh_TW.po +++ b/addons/portal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal_anonymous/i18n/cs.po b/addons/portal_anonymous/i18n/cs.po index 09acc096df9..53b336bf4d3 100644 --- a/addons/portal_anonymous/i18n/cs.po +++ b/addons/portal_anonymous/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/es.po b/addons/portal_anonymous/i18n/es.po index 644f50180ec..f7cb285c82f 100644 --- a/addons/portal_anonymous/i18n/es.po +++ b/addons/portal_anonymous/i18n/es.po @@ -14,12 +14,12 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-25 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web #: code:addons/portal_anonymous/static/src/xml/portal_anonymous.xml:8 #, python-format msgid "Login" -msgstr "" +msgstr "Inicio de sesión" diff --git a/addons/portal_anonymous/i18n/fr.po b/addons/portal_anonymous/i18n/fr.po index 0912a394eed..ac73e861f69 100644 --- a/addons/portal_anonymous/i18n/fr.po +++ b/addons/portal_anonymous/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/nl.po b/addons/portal_anonymous/i18n/nl.po index c03b75a48eb..6bb9073ae55 100644 --- a/addons/portal_anonymous/i18n/nl.po +++ b/addons/portal_anonymous/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/pt_BR.po b/addons/portal_anonymous/i18n/pt_BR.po index fe863d0ad0f..4a38fb8699e 100644 --- a/addons/portal_anonymous/i18n/pt_BR.po +++ b/addons/portal_anonymous/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-03 05:39+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/ro.po b/addons/portal_anonymous/i18n/ro.po index e0e942425fa..9162cb7ad58 100644 --- a/addons/portal_anonymous/i18n/ro.po +++ b/addons/portal_anonymous/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_claim/i18n/cs.po b/addons/portal_claim/i18n/cs.po index 247db35da82..bf1adc13358 100644 --- a/addons/portal_claim/i18n/cs.po +++ b/addons/portal_claim/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/de.po b/addons/portal_claim/i18n/de.po index 8f40321d7a0..45561d8433f 100644 --- a/addons/portal_claim/i18n/de.po +++ b/addons/portal_claim/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/es.po b/addons/portal_claim/i18n/es.po index b29a53d3e76..5a0bccc140f 100644 --- a/addons/portal_claim/i18n/es.po +++ b/addons/portal_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/fr.po b/addons/portal_claim/i18n/fr.po index 44bdc022159..0f9613e0ea4 100644 --- a/addons/portal_claim/i18n/fr.po +++ b/addons/portal_claim/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/hr.po b/addons/portal_claim/i18n/hr.po index 3885237989a..183c9be9abc 100644 --- a/addons/portal_claim/i18n/hr.po +++ b/addons/portal_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/it.po b/addons/portal_claim/i18n/it.po index d1aef12e5e8..92a8ac3e8f4 100644 --- a/addons/portal_claim/i18n/it.po +++ b/addons/portal_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/nl.po b/addons/portal_claim/i18n/nl.po index 25038e5faee..362c750b633 100644 --- a/addons/portal_claim/i18n/nl.po +++ b/addons/portal_claim/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pl.po b/addons/portal_claim/i18n/pl.po index e6183f1e970..a2a6c767e93 100644 --- a/addons/portal_claim/i18n/pl.po +++ b/addons/portal_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt.po b/addons/portal_claim/i18n/pt.po index 98f843471fa..1ebe2dd91a1 100644 --- a/addons/portal_claim/i18n/pt.po +++ b/addons/portal_claim/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt_BR.po b/addons/portal_claim/i18n/pt_BR.po index f31976e1487..75d0504a323 100644 --- a/addons/portal_claim/i18n/pt_BR.po +++ b/addons/portal_claim/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/ro.po b/addons/portal_claim/i18n/ro.po index de15533f3d0..96eb57658bb 100644 --- a/addons/portal_claim/i18n/ro.po +++ b/addons/portal_claim/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/zh_CN.po b/addons/portal_claim/i18n/zh_CN.po index bc4d6b8f1df..3444222a708 100644 --- a/addons/portal_claim/i18n/zh_CN.po +++ b/addons/portal_claim/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_crm/i18n/de.po b/addons/portal_crm/i18n/de.po index f6a1a187dec..5ca0f8920d7 100644 --- a/addons/portal_crm/i18n/de.po +++ b/addons/portal_crm/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/es.po b/addons/portal_crm/i18n/es.po index 2e88fdf2d28..6a4fccf5ae4 100644 --- a/addons/portal_crm/i18n/es.po +++ b/addons/portal_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/hr.po b/addons/portal_crm/i18n/hr.po index 3a0a64ea546..f301b19918a 100644 --- a/addons/portal_crm/i18n/hr.po +++ b/addons/portal_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/nl.po b/addons/portal_crm/i18n/nl.po index 698d322450b..b6fcc6332f4 100644 --- a/addons/portal_crm/i18n/nl.po +++ b/addons/portal_crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pl.po b/addons/portal_crm/i18n/pl.po index 8c4e92602bc..3bb68af5671 100644 --- a/addons/portal_crm/i18n/pl.po +++ b/addons/portal_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt.po b/addons/portal_crm/i18n/pt.po index 23b4586126f..7ad64288f99 100644 --- a/addons/portal_crm/i18n/pt.po +++ b/addons/portal_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt_BR.po b/addons/portal_crm/i18n/pt_BR.po index a6bf5ae7494..03483715f4d 100644 --- a/addons/portal_crm/i18n/pt_BR.po +++ b/addons/portal_crm/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/zh_CN.po b/addons/portal_crm/i18n/zh_CN.po index b3e89841cfd..589ac0d8bd2 100644 --- a/addons/portal_crm/i18n/zh_CN.po +++ b/addons/portal_crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_event/i18n/cs.po b/addons/portal_event/i18n/cs.po index 1be1ddfef34..f5f36650518 100644 --- a/addons/portal_event/i18n/cs.po +++ b/addons/portal_event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/de.po b/addons/portal_event/i18n/de.po index 1b79097e6ba..b446d622c19 100644 --- a/addons/portal_event/i18n/de.po +++ b/addons/portal_event/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/es.po b/addons/portal_event/i18n/es.po index c28583db1ed..a96c5a7e2bd 100644 --- a/addons/portal_event/i18n/es.po +++ b/addons/portal_event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/hr.po b/addons/portal_event/i18n/hr.po index 1d69045267a..729d3bc1f20 100644 --- a/addons/portal_event/i18n/hr.po +++ b/addons/portal_event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/nl.po b/addons/portal_event/i18n/nl.po index 2eb2a2206f6..16a70804c00 100644 --- a/addons/portal_event/i18n/nl.po +++ b/addons/portal_event/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt.po b/addons/portal_event/i18n/pt.po index 86bf5c52135..ce85c9e3d2f 100644 --- a/addons/portal_event/i18n/pt.po +++ b/addons/portal_event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt_BR.po b/addons/portal_event/i18n/pt_BR.po index f41c8ff9296..2ceeb7b4d50 100644 --- a/addons/portal_event/i18n/pt_BR.po +++ b/addons/portal_event/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/ro.po b/addons/portal_event/i18n/ro.po index 7fab03e6a3b..c4b903b5ddb 100644 --- a/addons/portal_event/i18n/ro.po +++ b/addons/portal_event/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/zh_CN.po b/addons/portal_event/i18n/zh_CN.po index 512a5aa1175..b263ee00e5e 100644 --- a/addons/portal_event/i18n/zh_CN.po +++ b/addons/portal_event/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_hr_employees/i18n/de.po b/addons/portal_hr_employees/i18n/de.po index 0ada357171c..bfc065fe755 100644 --- a/addons/portal_hr_employees/i18n/de.po +++ b/addons/portal_hr_employees/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/es.po b/addons/portal_hr_employees/i18n/es.po index 835d7a2cbfb..6228383a6bb 100644 --- a/addons/portal_hr_employees/i18n/es.po +++ b/addons/portal_hr_employees/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 @@ -26,7 +26,7 @@ msgstr "Monitor" #: model:ir.actions.act_window,name:portal_hr_employees.action_team #: view:portal_crm.crm_contact_us:0 msgid "Our Team" -msgstr "" +msgstr "Nuestro equipo" #. module: portal_hr_employees #: view:hr.employee:0 @@ -76,7 +76,7 @@ msgstr "Visibilidad" #. module: portal_hr_employees #: field:hr.employee,public_info:0 msgid "Public Info" -msgstr "" +msgstr "Información pública" #. module: portal_hr_employees #: model:ir.model,name:portal_hr_employees.model_portal_crm_crm_contact_us diff --git a/addons/portal_hr_employees/i18n/hr.po b/addons/portal_hr_employees/i18n/hr.po index f062576c0c5..001aefb2cdc 100644 --- a/addons/portal_hr_employees/i18n/hr.po +++ b/addons/portal_hr_employees/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/nl.po b/addons/portal_hr_employees/i18n/nl.po index 683b1c2feb2..6b490b55e74 100644 --- a/addons/portal_hr_employees/i18n/nl.po +++ b/addons/portal_hr_employees/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pl.po b/addons/portal_hr_employees/i18n/pl.po index abb63c9d47a..01b161f3b9a 100644 --- a/addons/portal_hr_employees/i18n/pl.po +++ b/addons/portal_hr_employees/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt.po b/addons/portal_hr_employees/i18n/pt.po index 7ad17d53a23..dc0fab5b753 100644 --- a/addons/portal_hr_employees/i18n/pt.po +++ b/addons/portal_hr_employees/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt_BR.po b/addons/portal_hr_employees/i18n/pt_BR.po index 54e1e2cebc6..c8fc1541cc4 100644 --- a/addons/portal_hr_employees/i18n/pt_BR.po +++ b/addons/portal_hr_employees/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/ro.po b/addons/portal_hr_employees/i18n/ro.po index 0ff71310b78..62d89839205 100644 --- a/addons/portal_hr_employees/i18n/ro.po +++ b/addons/portal_hr_employees/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/zh_CN.po b/addons/portal_hr_employees/i18n/zh_CN.po index 6ce890ceb80..30a477bee6f 100644 --- a/addons/portal_hr_employees/i18n/zh_CN.po +++ b/addons/portal_hr_employees/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_project/i18n/cs.po b/addons/portal_project/i18n/cs.po index fd440a2e615..49cf5f3e082 100644 --- a/addons/portal_project/i18n/cs.po +++ b/addons/portal_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/de.po b/addons/portal_project/i18n/de.po index 625e7f8679b..5582c7e6f7d 100644 --- a/addons/portal_project/i18n/de.po +++ b/addons/portal_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/es.po b/addons/portal_project/i18n/es.po index 33ddafc52c1..deb286536bc 100644 --- a/addons/portal_project/i18n/es.po +++ b/addons/portal_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/fr.po b/addons/portal_project/i18n/fr.po index d660bb5ffb2..51d59d4dac5 100644 --- a/addons/portal_project/i18n/fr.po +++ b/addons/portal_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:27+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/hr.po b/addons/portal_project/i18n/hr.po index e5de585afcd..71fd6564e10 100644 --- a/addons/portal_project/i18n/hr.po +++ b/addons/portal_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/it.po b/addons/portal_project/i18n/it.po index c66bee09112..52e90117e35 100644 --- a/addons/portal_project/i18n/it.po +++ b/addons/portal_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/nl.po b/addons/portal_project/i18n/nl.po index 3d29065b21f..9604f173a27 100644 --- a/addons/portal_project/i18n/nl.po +++ b/addons/portal_project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pl.po b/addons/portal_project/i18n/pl.po index 8b8b9f5170e..c9c1170f1ba 100644 --- a/addons/portal_project/i18n/pl.po +++ b/addons/portal_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pt.po b/addons/portal_project/i18n/pt.po index 7c826a7b5ef..9caa2fceca7 100644 --- a/addons/portal_project/i18n/pt.po +++ b/addons/portal_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pt_BR.po b/addons/portal_project/i18n/pt_BR.po index 85298b11915..5118e25851f 100644 --- a/addons/portal_project/i18n/pt_BR.po +++ b/addons/portal_project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/ro.po b/addons/portal_project/i18n/ro.po index 342133e8d1f..1482a877740 100644 --- a/addons/portal_project/i18n/ro.po +++ b/addons/portal_project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/sv.po b/addons/portal_project/i18n/sv.po index 06dfc7616d9..098ea9cb15b 100644 --- a/addons/portal_project/i18n/sv.po +++ b/addons/portal_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/zh_CN.po b/addons/portal_project/i18n/zh_CN.po index 4669ec9fe28..4cba44ba97d 100644 --- a/addons/portal_project/i18n/zh_CN.po +++ b/addons/portal_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project_issue/i18n/cs.po b/addons/portal_project_issue/i18n/cs.po index 4d12205caf8..6ea826b63a6 100644 --- a/addons/portal_project_issue/i18n/cs.po +++ b/addons/portal_project_issue/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/de.po b/addons/portal_project_issue/i18n/de.po index 116d22da35b..4194a625a86 100644 --- a/addons/portal_project_issue/i18n/de.po +++ b/addons/portal_project_issue/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/es.po b/addons/portal_project_issue/i18n/es.po index 814f8595061..c1ce959d876 100644 --- a/addons/portal_project_issue/i18n/es.po +++ b/addons/portal_project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/hr.po b/addons/portal_project_issue/i18n/hr.po index af5da280e8a..f4e174811f0 100644 --- a/addons/portal_project_issue/i18n/hr.po +++ b/addons/portal_project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/it.po b/addons/portal_project_issue/i18n/it.po index b2709464447..ad7c6de29c0 100644 --- a/addons/portal_project_issue/i18n/it.po +++ b/addons/portal_project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/nl.po b/addons/portal_project_issue/i18n/nl.po index 2c963ea92c8..71f8de5e30a 100644 --- a/addons/portal_project_issue/i18n/nl.po +++ b/addons/portal_project_issue/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pl.po b/addons/portal_project_issue/i18n/pl.po index 491d17b760c..7d444aa2a7c 100644 --- a/addons/portal_project_issue/i18n/pl.po +++ b/addons/portal_project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pt_BR.po b/addons/portal_project_issue/i18n/pt_BR.po index e09437987c3..48e5257ca91 100644 --- a/addons/portal_project_issue/i18n/pt_BR.po +++ b/addons/portal_project_issue/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/ro.po b/addons/portal_project_issue/i18n/ro.po index 8d664f60c56..916910968bd 100644 --- a/addons/portal_project_issue/i18n/ro.po +++ b/addons/portal_project_issue/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/zh_CN.po b/addons/portal_project_issue/i18n/zh_CN.po index 89321db13ee..1485be30197 100644 --- a/addons/portal_project_issue/i18n/zh_CN.po +++ b/addons/portal_project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_sale/i18n/cs.po b/addons/portal_sale/i18n/cs.po index a876c0ca4cf..7dbf939fc6a 100644 --- a/addons/portal_sale/i18n/cs.po +++ b/addons/portal_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/de.po b/addons/portal_sale/i18n/de.po index 873be1fbbb3..1350378c2b1 100644 --- a/addons/portal_sale/i18n/de.po +++ b/addons/portal_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/es.po b/addons/portal_sale/i18n/es.po index 5231ed70e42..2b0bec7bde9 100644 --- a/addons/portal_sale/i18n/es.po +++ b/addons/portal_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings @@ -181,6 +181,107 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hola ${object.partner_id.name},

\n" +" \n" +"

Aquí está su ${object.state in ('draft', 'sent') and 'presupuesto' or " +"'confirmación de pedido'} from ${object.company_id.name}:

\n" +"\n" +"

\n" +"   REFERENCIAS
\n" +"   Nº de pedido: ${object.name}
\n" +"   Total del pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Fecha del pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referencia del pedido: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Su referencia: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Su contacto: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Puede acceder a este documento y pagar en línea vía nuestro portal de " +"cliente:\n" +"

\n" +" Ver ${object.state in ('draft', 'sent') " +"and 'presupuesto' or 'pedido'}\n" +" % endif\n" +"\n" +" % if object.paypal_url:\n" +"
\n" +"

También es posible pagarlo directamente con Paypal:

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

Si tiene alguna pregunta, no dude en contactarnos.

\n" +"

Gracias por elegir ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:email.template,report_name:portal_sale.email_template_edi_invoice @@ -339,11 +440,107 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hola ${object.partner_id.name},

\n" +"\n" +"

Tiene una nueva factura disponible:

\n" +" \n" +"

\n" +"   REFERENCIAS
\n" +"   Nº de factura: ${object.number}
\n" +"   Total de la factura: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Fecha de factura: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Referencia del pedido: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Su contacto: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Puede acceder a la misma y pagarla en línea vía nuestro portal de " +"cliente:\n" +"

\n" +" View Invoice\n" +" % endif\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

También es posible pagarla directamente con Paypal:

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

Si tiene alguna pregunta, no dude en contactar con nosotros.

\n" +"

Gracias por elegir ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:ir.actions.act_window,help:portal_sale.action_orders_portal msgid "We haven't sent you any sales order." -msgstr "" +msgstr "No le hemos enviado ningún pedido de venta." #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_invoice diff --git a/addons/portal_sale/i18n/fi.po b/addons/portal_sale/i18n/fi.po index c67333f8109..95ef94d332c 100644 --- a/addons/portal_sale/i18n/fi.po +++ b/addons/portal_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/fr.po b/addons/portal_sale/i18n/fr.po index 371f3f9f4a4..af4c44c7085 100644 --- a/addons/portal_sale/i18n/fr.po +++ b/addons/portal_sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/hr.po b/addons/portal_sale/i18n/hr.po index 84cc48340e3..e9b455d76bf 100644 --- a/addons/portal_sale/i18n/hr.po +++ b/addons/portal_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/nl.po b/addons/portal_sale/i18n/nl.po index b15a4acd628..2d53dbc1ef4 100644 --- a/addons/portal_sale/i18n/nl.po +++ b/addons/portal_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:50+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pl.po b/addons/portal_sale/i18n/pl.po index a1c410333ca..fbb37ce6c05 100644 --- a/addons/portal_sale/i18n/pl.po +++ b/addons/portal_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt.po b/addons/portal_sale/i18n/pt.po index f9b6418cd5f..5c713f3b569 100644 --- a/addons/portal_sale/i18n/pt.po +++ b/addons/portal_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt_BR.po b/addons/portal_sale/i18n/pt_BR.po index a64c8bb652f..0fa0315047b 100644 --- a/addons/portal_sale/i18n/pt_BR.po +++ b/addons/portal_sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings @@ -182,6 +182,107 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Olá ${object.partner_id.name},

\n" +" \n" +"

Aqui está o seu ${object.state in ('draft', 'sent') and 'quotation' " +"or 'order confirmation'} from ${object.company_id.name}:

\n" +"\n" +"

\n" +"   REFERENCIAS
\n" +"   Número do pedido: ${object.name}
\n" +"   Total do pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Data do pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referência do pedido: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Sua referência: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Seu contato: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Você pode acessar este documento e pagar online através de nosso Portal " +"do Cliente:\n" +"

\n" +" View ${object.state in ('draft', 'sent') " +"and 'Quotation' or 'Order'}\n" +" % endif\n" +"\n" +" % if object.paypal_url:\n" +"
\n" +"

Também é possível pagar diretamente pelo Paypal:

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

Se você tiver alguma dúvida, entre em contato conosco.

\n" +"

Obrigado por escolher ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:email.template,report_name:portal_sale.email_template_edi_invoice @@ -340,6 +441,103 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Olá ${object.partner_id.name},

\n" +"\n" +"

Uma nova fatura está disponível para você:

\n" +" \n" +"

\n" +"   REFERENCIAS
\n" +"   Número da fatura: ${object.number}
\n" +"   Total da fatura: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Data da fatura: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Referência do pedido: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Seu contato: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Você pode acessar a fatura e efetuar o pagamento online ou através do " +"nosso Portal de Clientes:\n" +"

\n" +" Ver Fatura\n" +" % endif\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

Também é possível pagar diretamente pelo Paypal:

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

Se você tiver alguma dúvida, entre em contato conosco.

\n" +"

Obrigado por escolher ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:ir.actions.act_window,help:portal_sale.action_orders_portal diff --git a/addons/portal_sale/i18n/ro.po b/addons/portal_sale/i18n/ro.po index d743f74ab3e..df9765fad6b 100644 --- a/addons/portal_sale/i18n/ro.po +++ b/addons/portal_sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:22+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/sv.po b/addons/portal_sale/i18n/sv.po index 9a77b720f48..98894510e40 100644 --- a/addons/portal_sale/i18n/sv.po +++ b/addons/portal_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/zh_CN.po b/addons/portal_sale/i18n/zh_CN.po index b98be2f25ef..3d17c8858b1 100644 --- a/addons/portal_sale/i18n/zh_CN.po +++ b/addons/portal_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/process/i18n/ar.po b/addons/process/i18n/ar.po index 7902ca51975..dd4220e234c 100644 --- a/addons/process/i18n/ar.po +++ b/addons/process/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bg.po b/addons/process/i18n/bg.po index e5b2e54bbcc..7e3377a5fbc 100644 --- a/addons/process/i18n/bg.po +++ b/addons/process/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bs.po b/addons/process/i18n/bs.po index 220edb04b37..a1641e1ee63 100644 --- a/addons/process/i18n/bs.po +++ b/addons/process/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ca.po b/addons/process/i18n/ca.po index fcf13927c30..602ea2c7d9e 100644 --- a/addons/process/i18n/ca.po +++ b/addons/process/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/cs.po b/addons/process/i18n/cs.po index bea27e8cbf1..d3b2571c21d 100644 --- a/addons/process/i18n/cs.po +++ b/addons/process/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/da.po b/addons/process/i18n/da.po index a5f175e0c6b..15475163ad3 100644 --- a/addons/process/i18n/da.po +++ b/addons/process/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/de.po b/addons/process/i18n/de.po index b014bb346a7..72aad2ddc81 100644 --- a/addons/process/i18n/de.po +++ b/addons/process/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/el.po b/addons/process/i18n/el.po index 2bcfdc3fdb8..a9e71b16bcb 100644 --- a/addons/process/i18n/el.po +++ b/addons/process/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es.po b/addons/process/i18n/es.po index d93d01222fe..afc419ccb6c 100644 --- a/addons/process/i18n/es.po +++ b/addons/process/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index f8563d38bff..1ca4bad7717 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CL.po b/addons/process/i18n/es_CL.po index e6885cac76d..b1e93c01797 100644 --- a/addons/process/i18n/es_CL.po +++ b/addons/process/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CR.po b/addons/process/i18n/es_CR.po index 3512c31021d..46e45a537d0 100644 --- a/addons/process/i18n/es_CR.po +++ b/addons/process/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/et.po b/addons/process/i18n/et.po index 5f95e53ae04..1cd09a1eada 100644 --- a/addons/process/i18n/et.po +++ b/addons/process/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/fi.po b/addons/process/i18n/fi.po index 2dfcf591c5c..c73f7c46dc8 100644 --- a/addons/process/i18n/fi.po +++ b/addons/process/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/fr.po b/addons/process/i18n/fr.po index 74ecb9cdc9b..b7d57019e00 100644 --- a/addons/process/i18n/fr.po +++ b/addons/process/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/gl.po b/addons/process/i18n/gl.po index 28f6d84b217..8b090c77255 100644 --- a/addons/process/i18n/gl.po +++ b/addons/process/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hi.po b/addons/process/i18n/hi.po index 746a24d8d91..9758f7c0b5e 100644 --- a/addons/process/i18n/hi.po +++ b/addons/process/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hr.po b/addons/process/i18n/hr.po index 49146973ff7..fc67f026fe2 100644 --- a/addons/process/i18n/hr.po +++ b/addons/process/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hu.po b/addons/process/i18n/hu.po index a361c62213a..c669a6f7cc0 100644 --- a/addons/process/i18n/hu.po +++ b/addons/process/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/id.po b/addons/process/i18n/id.po index b13baeed9c4..c923836248f 100644 --- a/addons/process/i18n/id.po +++ b/addons/process/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/it.po b/addons/process/i18n/it.po index 96fb58fe65f..e69cd366bc3 100644 --- a/addons/process/i18n/it.po +++ b/addons/process/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ja.po b/addons/process/i18n/ja.po index 3020e1613ae..d27a5b248a0 100644 --- a/addons/process/i18n/ja.po +++ b/addons/process/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ko.po b/addons/process/i18n/ko.po index a3b06ac08cf..3d87f45cf91 100644 --- a/addons/process/i18n/ko.po +++ b/addons/process/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/lt.po b/addons/process/i18n/lt.po index 0797e19e7c5..50830a1f683 100644 --- a/addons/process/i18n/lt.po +++ b/addons/process/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/mn.po b/addons/process/i18n/mn.po index 46a3d6261fd..94c6cf4ecd0 100644 --- a/addons/process/i18n/mn.po +++ b/addons/process/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl.po b/addons/process/i18n/nl.po index 76e6f9ded56..be29cba319e 100644 --- a/addons/process/i18n/nl.po +++ b/addons/process/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index de635fb9e30..5632a2b5297 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pl.po b/addons/process/i18n/pl.po index 65a9c64806c..58f8cbfec48 100644 --- a/addons/process/i18n/pl.po +++ b/addons/process/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt.po b/addons/process/i18n/pt.po index c6ffaab1074..da216534e5a 100644 --- a/addons/process/i18n/pt.po +++ b/addons/process/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index f53b89e5caf..b13414594c0 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ro.po b/addons/process/i18n/ro.po index c259a854407..06e2b8f8726 100644 --- a/addons/process/i18n/ro.po +++ b/addons/process/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ru.po b/addons/process/i18n/ru.po index e8ae334eb81..7700a6242cc 100644 --- a/addons/process/i18n/ru.po +++ b/addons/process/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sk.po b/addons/process/i18n/sk.po index 5ea6988960e..481d345b0c6 100644 --- a/addons/process/i18n/sk.po +++ b/addons/process/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sl.po b/addons/process/i18n/sl.po index 542f75475d0..2e499f41924 100644 --- a/addons/process/i18n/sl.po +++ b/addons/process/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2013-01-01 22:23+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sq.po b/addons/process/i18n/sq.po index 260227dd9e6..050cd8408c4 100644 --- a/addons/process/i18n/sq.po +++ b/addons/process/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr.po b/addons/process/i18n/sr.po index da6125ea4d4..765edbada0f 100644 --- a/addons/process/i18n/sr.po +++ b/addons/process/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr@latin.po b/addons/process/i18n/sr@latin.po index e5679386944..e8cbe797101 100644 --- a/addons/process/i18n/sr@latin.po +++ b/addons/process/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sv.po b/addons/process/i18n/sv.po index 13d8a5b36d0..436927dc9fa 100644 --- a/addons/process/i18n/sv.po +++ b/addons/process/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tlh.po b/addons/process/i18n/tlh.po index a5bf32a10f0..8bcce98f346 100644 --- a/addons/process/i18n/tlh.po +++ b/addons/process/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tr.po b/addons/process/i18n/tr.po index 79087dc6000..4afee7eafec 100644 --- a/addons/process/i18n/tr.po +++ b/addons/process/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/uk.po b/addons/process/i18n/uk.po index 1cb48ed8db9..2297cab423f 100644 --- a/addons/process/i18n/uk.po +++ b/addons/process/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/vi.po b/addons/process/i18n/vi.po index cf45724ab28..466abce200c 100644 --- a/addons/process/i18n/vi.po +++ b/addons/process/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index 33f2a0209a4..9a7099c5efd 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index 2b5debaf378..bc7aabb55b3 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/procurement/i18n/ar.po b/addons/procurement/i18n/ar.po index a5c596f67f8..55fa5d2fcbe 100644 --- a/addons/procurement/i18n/ar.po +++ b/addons/procurement/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/bg.po b/addons/procurement/i18n/bg.po index f274c23fd4f..fcb301fdac1 100644 --- a/addons/procurement/i18n/bg.po +++ b/addons/procurement/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ca.po b/addons/procurement/i18n/ca.po index a1098f28dec..f9a5c7a281c 100644 --- a/addons/procurement/i18n/ca.po +++ b/addons/procurement/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/cs.po b/addons/procurement/i18n/cs.po index be4fd4140a4..ec11c3b6f12 100644 --- a/addons/procurement/i18n/cs.po +++ b/addons/procurement/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/da.po b/addons/procurement/i18n/da.po index 5e41fc7d20c..5207dfc12e5 100644 --- a/addons/procurement/i18n/da.po +++ b/addons/procurement/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/de.po b/addons/procurement/i18n/de.po index 3db354faf68..04099685433 100644 --- a/addons/procurement/i18n/de.po +++ b/addons/procurement/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es.po b/addons/procurement/i18n/es.po index ba520eebd63..f2df3dc8cf8 100644 --- a/addons/procurement/i18n/es.po +++ b/addons/procurement/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CL.po b/addons/procurement/i18n/es_CL.po index 1c1f8e953c2..0154f0667ca 100644 --- a/addons/procurement/i18n/es_CL.po +++ b/addons/procurement/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CR.po b/addons/procurement/i18n/es_CR.po index 35b603144a1..8a5ed20a84f 100644 --- a/addons/procurement/i18n/es_CR.po +++ b/addons/procurement/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_EC.po b/addons/procurement/i18n/es_EC.po index b37ba350f70..711fb50abd2 100644 --- a/addons/procurement/i18n/es_EC.po +++ b/addons/procurement/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/et.po b/addons/procurement/i18n/et.po index cc45b4e0f55..4bff207e10f 100644 --- a/addons/procurement/i18n/et.po +++ b/addons/procurement/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fi.po b/addons/procurement/i18n/fi.po index 4aeda4ffcf0..1eeb0304bf9 100644 --- a/addons/procurement/i18n/fi.po +++ b/addons/procurement/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fr.po b/addons/procurement/i18n/fr.po index e39ae1a4982..09c67fcfb59 100644 --- a/addons/procurement/i18n/fr.po +++ b/addons/procurement/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/gl.po b/addons/procurement/i18n/gl.po index dcc3509d8df..565b06536ed 100644 --- a/addons/procurement/i18n/gl.po +++ b/addons/procurement/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/hr.po b/addons/procurement/i18n/hr.po index 795cf49bc92..26ed8bd7281 100644 --- a/addons/procurement/i18n/hr.po +++ b/addons/procurement/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/hu.po b/addons/procurement/i18n/hu.po index 23390c2609f..91fa798070d 100644 --- a/addons/procurement/i18n/hu.po +++ b/addons/procurement/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/id.po b/addons/procurement/i18n/id.po index 5e5eabc3edc..903d16a69ca 100644 --- a/addons/procurement/i18n/id.po +++ b/addons/procurement/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/it.po b/addons/procurement/i18n/it.po index b1e41986701..907669aacdc 100644 --- a/addons/procurement/i18n/it.po +++ b/addons/procurement/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ja.po b/addons/procurement/i18n/ja.po index 39e61a122e2..f23ffa3e671 100644 --- a/addons/procurement/i18n/ja.po +++ b/addons/procurement/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/mn.po b/addons/procurement/i18n/mn.po index f0e125b9e11..f5f1625a81d 100644 --- a/addons/procurement/i18n/mn.po +++ b/addons/procurement/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nb.po b/addons/procurement/i18n/nb.po index 81c3ebb4af1..c1b10a2c1e0 100644 --- a/addons/procurement/i18n/nb.po +++ b/addons/procurement/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nl.po b/addons/procurement/i18n/nl.po index f0649c254a9..225ed716096 100644 --- a/addons/procurement/i18n/nl.po +++ b/addons/procurement/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched @@ -99,7 +99,7 @@ msgstr "Bedrijf" #. module: procurement #: field:procurement.order,product_uos_qty:0 msgid "UoS Quantity" -msgstr "VE aantal" +msgstr "Hoeveelheid (VE)" #. module: procurement #: view:procurement.order:0 @@ -367,7 +367,7 @@ msgstr "Groepeer op" #: field:make.procurement,qty:0 #: field:procurement.order,product_qty:0 msgid "Quantity" -msgstr "Aantal" +msgstr "Hoeveelheid" #. module: procurement #: code:addons/procurement/procurement.py:364 @@ -763,7 +763,7 @@ msgstr "Verwerving uitvoeren" #. module: procurement #: selection:procurement.order,state:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: procurement #: view:make.procurement:0 @@ -945,7 +945,7 @@ msgstr "" #. module: procurement #: field:procurement.order,product_uos:0 msgid "Product UoS" -msgstr "Verkoopeenheid" +msgstr "Product verkoopeenheid" #. module: procurement #: model:ir.model,name:procurement.model_product_template diff --git a/addons/procurement/i18n/pl.po b/addons/procurement/i18n/pl.po index 9c1d2595c2b..bc3f6c309ad 100644 --- a/addons/procurement/i18n/pl.po +++ b/addons/procurement/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt.po b/addons/procurement/i18n/pt.po index 538c06de892..a1bd60b4956 100644 --- a/addons/procurement/i18n/pt.po +++ b/addons/procurement/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt_BR.po b/addons/procurement/i18n/pt_BR.po index 2402e6333d9..b4a1a362889 100644 --- a/addons/procurement/i18n/pt_BR.po +++ b/addons/procurement/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ro.po b/addons/procurement/i18n/ro.po index 416d92f1029..fcd1610bdfc 100644 --- a/addons/procurement/i18n/ro.po +++ b/addons/procurement/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ru.po b/addons/procurement/i18n/ru.po index ec19c4d8400..35686e6b40b 100644 --- a/addons/procurement/i18n/ru.po +++ b/addons/procurement/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched @@ -54,6 +54,8 @@ msgid "" "required quantities are always\n" " available" msgstr "" +"требуемые количества всегда\n" +" доступны" #. module: procurement #: view:product.product:0 @@ -73,7 +75,7 @@ msgstr "Метод снабжения" #. module: procurement #: selection:product.template,supply_method:0 msgid "Manufacture" -msgstr "" +msgstr "Изготовление" #. module: procurement #: model:process.process,name:procurement.process_process_serviceproductprocess0 @@ -88,7 +90,7 @@ msgstr "Правила вычисления минимального запас #. module: procurement #: view:stock.warehouse.orderpoint:0 msgid "Rules" -msgstr "" +msgstr "Правила" #. module: procurement #: field:procurement.order,company_id:0 @@ -119,7 +121,7 @@ msgstr "Последняя ошибка" #. module: procurement #: field:stock.warehouse.orderpoint,product_min_qty:0 msgid "Minimum Quantity" -msgstr "" +msgstr "Минимальное количество" #. module: procurement #: help:mrp.property,composition:0 @@ -151,7 +153,7 @@ msgstr "" #. module: procurement #: field:procurement.order,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: procurement #: help:procurement.order,message:0 @@ -161,12 +163,12 @@ msgstr "Исключительная ситуация во время вычис #. module: procurement #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "Продукция" #. module: procurement #: selection:procurement.order,state:0 msgid "Cancelled" -msgstr "" +msgstr "Отменен" #. module: procurement #: view:procurement.order:0 @@ -176,7 +178,7 @@ msgstr "Постоянные проблемы снабжения" #. module: procurement #: help:procurement.order,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: procurement #: view:procurement.order.compute.all:0 @@ -191,13 +193,13 @@ msgstr "Движение ТМЦ" #. module: procurement #: view:product.product:0 msgid "Stockable products" -msgstr "" +msgstr "Складируемая продукция" #. module: procurement #: code:addons/procurement/procurement.py:137 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Неверное действие!" #. module: procurement #: help:procurement.order,message_summary:0 @@ -205,6 +207,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 "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: procurement #: selection:procurement.order,state:0 @@ -303,7 +307,7 @@ msgstr "В ожидании" #. module: procurement #: field:procurement.order,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Подписчики" #. module: procurement #: field:procurement.order,location_id:0 @@ -382,7 +386,7 @@ msgstr "Единица измерения" #: selection:procurement.order,procure_method:0 #: selection:product.template,procure_method:0 msgid "Make to Stock" -msgstr "" +msgstr "Изготовить на склад" #. module: procurement #: model:ir.actions.act_window,help:procurement.procurement_action @@ -477,7 +481,7 @@ msgstr "Связанные заказы снабжения" #. module: procurement #: field:procurement.order,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные" #. module: procurement #: selection:mrp.property,composition:0 @@ -525,7 +529,7 @@ msgstr "Если остатки ТМЦ меньше 0, это будет дей #: field:procurement.order,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Ед. изм. продукции" #. module: procurement #: constraint:stock.warehouse.orderpoint:0 @@ -569,7 +573,7 @@ msgstr "Черновик" #: model:ir.ui.menu,name:procurement.menu_stock_proc_schedulers #: view:procurement.order.compute.all:0 msgid "Run Schedulers" -msgstr "" +msgstr "Запустить планировщики" #. module: procurement #: view:procurement.order.compute:0 @@ -585,12 +589,12 @@ msgstr "Статус" #. module: procurement #: selection:product.template,supply_method:0 msgid "Buy" -msgstr "" +msgstr "Покупка" #. module: procurement #: view:product.product:0 msgid "for the delivery order." -msgstr "" +msgstr "для заказа доставки." #. module: procurement #: selection:procurement.order,priority:0 @@ -608,12 +612,12 @@ msgstr "" #. module: procurement #: field:stock.warehouse.orderpoint,product_max_qty:0 msgid "Maximum Quantity" -msgstr "" +msgstr "Максимальное количество" #. module: procurement #: field:procurement.order,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Подписан" #. module: procurement #: code:addons/procurement/procurement.py:366 @@ -690,7 +694,7 @@ msgstr "Доп. информация" #. module: procurement #: field:procurement.order,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Описание" #. module: procurement #: sql_constraint:stock.warehouse.orderpoint:0 @@ -710,7 +714,7 @@ msgstr "Дата закрытия" #. module: procurement #: view:res.company:0 msgid "Logistics" -msgstr "" +msgstr "Логистика" #. module: procurement #: help:product.template,procure_method:0 @@ -786,7 +790,7 @@ msgstr "Не срочно" #: model:ir.actions.act_window,name:procurement.product_open_orderpoint #: view:product.product:0 msgid "Orderpoints" -msgstr "" +msgstr "Точки заказа" #. module: procurement #: help:stock.warehouse.orderpoint,product_max_qty:0 @@ -887,7 +891,7 @@ msgstr "Изготовить на заказ" #. module: procurement #: field:product.template,supply_method:0 msgid "Supply Method" -msgstr "" +msgstr "Метод поставки" #. module: procurement #: field:procurement.order,move_id:0 @@ -902,7 +906,7 @@ msgstr "Способ снабжения зависит от вида ТМЦ." #. module: procurement #: view:product.product:0 msgid "When you sell this product, OpenERP will" -msgstr "" +msgstr "При продаже этого товара, OpenERP будет" #. module: procurement #: view:procurement.order:0 @@ -943,7 +947,7 @@ msgstr "Ед.продажи товара" #. module: procurement #: model:ir.model,name:procurement.model_product_template msgid "Product Template" -msgstr "" +msgstr "Шаблон товара" #. module: procurement #: view:procurement.orderpoint.compute:0 @@ -980,7 +984,7 @@ msgstr "Авто точка заказа" #. module: procurement #: help:procurement.order,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: procurement #: view:procurement.order:0 @@ -998,7 +1002,7 @@ msgstr "мин." #: view:procurement.order.compute.all:0 #: view:procurement.orderpoint.compute:0 msgid "or" -msgstr "" +msgstr "или" #. module: procurement #: code:addons/procurement/schedulers.py:134 @@ -1009,7 +1013,7 @@ msgstr "ПЛАНИРОВЩИК" #. module: procurement #: view:product.product:0 msgid "Request Procurement" -msgstr "" +msgstr "Запрос снабжения" #. module: procurement #: code:addons/procurement/schedulers.py:87 @@ -1021,4 +1025,4 @@ msgstr "СНАБ %d: по заказу - %3.2f %-5s - %s" #: code:addons/procurement/procurement.py:338 #, python-format msgid "Products reserved from stock." -msgstr "" +msgstr "Продукция зарезервирована из запасов" diff --git a/addons/procurement/i18n/sl.po b/addons/procurement/i18n/sl.po index 93f4d1be789..e95d9b2d618 100644 --- a/addons/procurement/i18n/sl.po +++ b/addons/procurement/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:32+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr.po b/addons/procurement/i18n/sr.po index 4df8e1d2f9b..6a852ffeb9e 100644 --- a/addons/procurement/i18n/sr.po +++ b/addons/procurement/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr@latin.po b/addons/procurement/i18n/sr@latin.po index ad3aa678e41..5081ffe505b 100644 --- a/addons/procurement/i18n/sr@latin.po +++ b/addons/procurement/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sv.po b/addons/procurement/i18n/sv.po index 1e8daf7348c..46263427e88 100644 --- a/addons/procurement/i18n/sv.po +++ b/addons/procurement/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/tr.po b/addons/procurement/i18n/tr.po index 64193c5585e..7f2386d1801 100644 --- a/addons/procurement/i18n/tr.po +++ b/addons/procurement/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/vi.po b/addons/procurement/i18n/vi.po index 82334e597e4..e7a344f9820 100644 --- a/addons/procurement/i18n/vi.po +++ b/addons/procurement/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/zh_CN.po b/addons/procurement/i18n/zh_CN.po index 30f105f037f..1ad4cb4a25c 100644 --- a/addons/procurement/i18n/zh_CN.po +++ b/addons/procurement/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/product/i18n/ar.po b/addons/product/i18n/ar.po index 20b26ff92df..5dd5c17434d 100644 --- a/addons/product/i18n/ar.po +++ b/addons/product/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bg.po b/addons/product/i18n/bg.po index 367a96cddeb..57c13ed3fde 100644 --- a/addons/product/i18n/bg.po +++ b/addons/product/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bs.po b/addons/product/i18n/bs.po index 53cea8b60e3..9a74a916d19 100644 --- a/addons/product/i18n/bs.po +++ b/addons/product/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ca.po b/addons/product/i18n/ca.po index 03fc86cc302..6accf24a190 100644 --- a/addons/product/i18n/ca.po +++ b/addons/product/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/cs.po b/addons/product/i18n/cs.po index c1c927d02d7..2b414c2296e 100644 --- a/addons/product/i18n/cs.po +++ b/addons/product/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/da.po b/addons/product/i18n/da.po index 479d0e4d251..f836bd32f48 100644 --- a/addons/product/i18n/da.po +++ b/addons/product/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index 07beaeab53f..d165cd8cc0a 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/el.po b/addons/product/i18n/el.po index cf057c3a23d..e1b10e979f7 100644 --- a/addons/product/i18n/el.po +++ b/addons/product/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index 3dc6d91f953..3aad7c9c508 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 @@ -544,7 +544,7 @@ msgstr "Auriculares estándar" #. module: product #: model:product.uom,name:product.product_uom_day msgid "Day(s)" -msgstr "" +msgstr "Día(s)" #. module: product #: help:product.product,incoming_qty:0 @@ -846,7 +846,7 @@ msgstr "Fecha final" #. module: product #: model:product.uom,name:product.product_uom_litre msgid "Liter(s)" -msgstr "" +msgstr "Litro(s)" #. module: product #: view:product.price_list:0 @@ -889,7 +889,7 @@ msgstr "Tarifa" #. module: product #: model:product.uom,name:product.product_uom_hour msgid "Hour(s)" -msgstr "" +msgstr "Hora(s)" #. module: product #: selection:product.template,state:0 @@ -1175,7 +1175,7 @@ msgstr "Padre derecho" #. module: product #: field:product.product,price:0 msgid "Price" -msgstr "" +msgstr "Precio" #. module: product #: field:product.pricelist.item,price_surcharge:0 @@ -1256,7 +1256,7 @@ msgstr "" #. module: product #: model:product.uom,name:product.product_uom_dozen msgid "Dozen(s)" -msgstr "" +msgstr "Docena(s)" #. module: product #: field:product.uom,factor:0 @@ -1993,7 +1993,7 @@ msgstr "Mensajes" #. module: product #: model:product.uom,name:product.product_uom_unit msgid "Unit(s)" -msgstr "" +msgstr "Unidad(es)" #. module: product #: code:addons/product/product.py:176 diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index ee807564b67..6199a8280e5 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CL.po b/addons/product/i18n/es_CL.po index 5d90f06213a..43073b1ac53 100644 --- a/addons/product/i18n/es_CL.po +++ b/addons/product/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CR.po b/addons/product/i18n/es_CR.po index e1d1584a01c..9ee477d4ec8 100644 --- a/addons/product/i18n/es_CR.po +++ b/addons/product/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_EC.po b/addons/product/i18n/es_EC.po index d907a8d6258..54d57372932 100644 --- a/addons/product/i18n/es_EC.po +++ b/addons/product/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_PY.po b/addons/product/i18n/es_PY.po index 551f502c470..8315d4879db 100644 --- a/addons/product/i18n/es_PY.po +++ b/addons/product/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/et.po b/addons/product/i18n/et.po index 3846b580c51..0584dbacd6b 100644 --- a/addons/product/i18n/et.po +++ b/addons/product/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/eu.po b/addons/product/i18n/eu.po index 830f495f28d..a361a2338e2 100644 --- a/addons/product/i18n/eu.po +++ b/addons/product/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index b3d76e7c6c9..ca4369fbcce 100644 --- a/addons/product/i18n/fi.po +++ b/addons/product/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index 20073e7fb01..78d2d7385c2 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/gl.po b/addons/product/i18n/gl.po index 46ac33bfab9..cca55923c55 100644 --- a/addons/product/i18n/gl.po +++ b/addons/product/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hr.po b/addons/product/i18n/hr.po index 1abb9e843f2..40e86141615 100644 --- a/addons/product/i18n/hr.po +++ b/addons/product/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index b9a04c9df59..fa0e053f87b 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/id.po b/addons/product/i18n/id.po index 24bbc954461..e862711604d 100644 --- a/addons/product/i18n/id.po +++ b/addons/product/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/it.po b/addons/product/i18n/it.po index 1db6511d3c0..7de504d21f6 100644 --- a/addons/product/i18n/it.po +++ b/addons/product/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ja.po b/addons/product/i18n/ja.po index 88b82cfd092..68a70671ba0 100644 --- a/addons/product/i18n/ja.po +++ b/addons/product/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ko.po b/addons/product/i18n/ko.po index 71cb70fddf3..71029d9c0f7 100644 --- a/addons/product/i18n/ko.po +++ b/addons/product/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index 5ac40fd6c69..681a7ec5d8d 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lv.po b/addons/product/i18n/lv.po index 1333b95202a..400cd33551b 100644 --- a/addons/product/i18n/lv.po +++ b/addons/product/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index e9e540680f8..cd146983fa1 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:22+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nb.po b/addons/product/i18n/nb.po index 9e0e1c33fcb..211883d4c5c 100644 --- a/addons/product/i18n/nb.po +++ b/addons/product/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nl.po b/addons/product/i18n/nl.po index 4923029e23d..8e3994a7f3c 100644 --- a/addons/product/i18n/nl.po +++ b/addons/product/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 @@ -64,7 +64,7 @@ msgstr "" #. module: product #: field:product.product,seller_qty:0 msgid "Supplier Quantity" -msgstr "Leverancier aantal" +msgstr "Leverancier hoeveelheid" #. module: product #: selection:product.template,mes_type:0 @@ -299,7 +299,7 @@ msgstr "Pen drive, SP-4" #. module: product #: field:product.packaging,qty:0 msgid "Quantity by Package" -msgstr "Aantal per verpakking" +msgstr "Hoeveelheid per verpakking" #. module: product #: model:product.template,name:product.product_product_29_product_template @@ -332,7 +332,7 @@ msgstr "Verkoopprijs" #. module: product #: field:product.price_list,qty5:0 msgid "Quantity-5" -msgstr "Aantal-5" +msgstr "Hoeveelheid-5" #. module: product #: model:ir.actions.act_window,help:product.product_ul_form_action @@ -459,22 +459,22 @@ msgstr "pricelist.partnerinfo" #. module: product #: field:product.price_list,qty2:0 msgid "Quantity-2" -msgstr "Aantal-2" +msgstr "Hoeveelheid-2" #. module: product #: field:product.price_list,qty3:0 msgid "Quantity-3" -msgstr "Aantal-3" +msgstr "Hoeveelheid-3" #. module: product #: field:product.price_list,qty1:0 msgid "Quantity-1" -msgstr "Aantal-1" +msgstr "Hoeveelheid-1" #. module: product #: field:product.price_list,qty4:0 msgid "Quantity-4" -msgstr "Aantal-4" +msgstr "Hoeveelheid-4" #. module: product #: view:res.partner:0 diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index aad294be34b..896d98d4ffb 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pl.po b/addons/product/i18n/pl.po index 9219fe52830..1cc35ff6b77 100644 --- a/addons/product/i18n/pl.po +++ b/addons/product/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index 29fedb8af46..135f06df1ec 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index 7d4f14422cb..3a01efab1fc 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ro.po b/addons/product/i18n/ro.po index d04db64cca1..eabc3406a90 100644 --- a/addons/product/i18n/ro.po +++ b/addons/product/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ru.po b/addons/product/i18n/ru.po index 4e43b04886c..4c1e91eea75 100644 --- a/addons/product/i18n/ru.po +++ b/addons/product/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 @@ -404,6 +404,8 @@ msgid "" "Specify a product if this rule only applies to one product. Keep empty " "otherwise." msgstr "" +"Укажите товар, если это правило применимо только к одному товару. Иначе " +"оставьте пустым." #. module: product #: model:product.uom.categ,name:product.product_uom_categ_kgm @@ -505,7 +507,7 @@ msgstr "Наушники стандартные" #. module: product #: model:product.uom,name:product.product_uom_day msgid "Day(s)" -msgstr "" +msgstr "Дней" #. module: product #: help:product.product,incoming_qty:0 @@ -527,6 +529,8 @@ msgid "" "Error: The default Unit of Measure and the purchase Unit of Measure must be " "in the same category." msgstr "" +"Ошибка: Единицы измерения по умолчанию и единицы измерения покупки должны " +"быть в одной категории." #. module: product #: model:ir.model,name:product.model_product_uom_categ @@ -614,6 +618,8 @@ msgid "" "Error! You cannot assign the Main Pricelist as Other Pricelist in PriceList " "Item!" msgstr "" +"Error! Нельзя определить основной прайс-лист как дополнительный прайс-лист в " +"пункте прайс-листа!" #. module: product #: view:product.price_list:0 @@ -694,6 +700,9 @@ msgid "" "period (usually every year). \n" "Average Price: The cost price is recomputed at each incoming shipment." msgstr "" +"Стандартная цена: себестоимость обновляется вручную в конце периода (обычно " +"каждый год). \n" +"Средняя цена: себестоимость пересчитывается при каждом поступлении продукта." #. module: product #: field:product.product,qty_available:0 @@ -775,6 +784,8 @@ msgid "" "Cost price of the product used for standard stock valuation in accounting " "and used as a base price on purchase orders." msgstr "" +"Себестоимость товара используется для стандартной оценки запасов в учете и " +"используется как базовая цена в заказах закупки." #. module: product #: field:product.category,child_id:0 @@ -789,7 +800,7 @@ msgstr "Дата окончания" #. module: product #: model:product.uom,name:product.product_uom_litre msgid "Liter(s)" -msgstr "" +msgstr "Литр(ов)" #. module: product #: view:product.price_list:0 @@ -832,7 +843,7 @@ msgstr "Прайс-лист" #. module: product #: model:product.uom,name:product.product_uom_hour msgid "Hour(s)" -msgstr "" +msgstr "Час(ов)" #. module: product #: selection:product.template,state:0 @@ -966,6 +977,8 @@ msgid "" "Specify the minimum quantity that needs to be bought/sold for the rule to " "apply." msgstr "" +"Укажите минимальное количество которое должно быть куплено/продано чтобы " +"правило сработало." #. module: product #: help:product.pricelist.version,date_start:0 @@ -1092,7 +1105,7 @@ msgstr "Правый источник" #. module: product #: field:product.product,price:0 msgid "Price" -msgstr "" +msgstr "Цена" #. module: product #: field:product.pricelist.item,price_surcharge:0 @@ -1232,7 +1245,7 @@ msgstr "Услуги" #. module: product #: help:product.product,ean13:0 msgid "International Article Number used for product identification." -msgstr "" +msgstr "Международный номер товара используется для идентификации товара." #. module: product #: model:ir.actions.act_window,help:product.product_category_action @@ -1301,6 +1314,8 @@ msgid "" "This field holds the image used as image for the product, limited to " "1024x1024px." msgstr "" +"Это поле содержит изображение, используемое в качестве изображения товара, " +"ограничивается 1024x1024px ." #. module: product #: help:product.pricelist.item,categ_id:0 @@ -1426,6 +1441,8 @@ msgid "" "This price will be considered as a price for the supplier Unit of Measure if " "any or the default Unit of Measure of the product otherwise" msgstr "" +"Эта цена - цена за единицу измерения поставщика, если задана. Иначе цена за " +"единицу измерения по умолчанию." #. module: product #: field:product.template,uom_po_id:0 @@ -1525,7 +1542,7 @@ msgstr "" #: model:product.template,description:product.product_product_1_product_template #: model:product.template,description_sale:product.product_product_1_product_template msgid "This type of service include basic monitoring of products." -msgstr "" +msgstr "Этот вид услуг включает базовый мониторинг товаров." #. module: product #: help:product.pricelist.version,date_end:0 @@ -1661,6 +1678,7 @@ msgstr "Код ТМЦ поставщика" msgid "" "If unchecked, it will allow you to hide the pricelist without removing it." msgstr "" +"Если не отмечено, это позволит вам скрыть прайс-лист без его удаления." #. module: product #: selection:product.ul,type:0 @@ -1790,6 +1808,9 @@ msgid "" "Sepcify a unit of measure here if invoicing is made in another unit of " "measure than inventory. Keep empty to use the default unit of measure." msgstr "" +"Укажите единицу измерения здесь, если счет выставляется в других единицах " +"измерения, отличных от единиц измерения в которых хранятся остатки. Оставьте " +"пустым чтобы использовать единицу измерения по умолчанию." #. module: product #: code:addons/product/product.py:208 @@ -1856,7 +1877,7 @@ msgstr "Сообщения" #. module: product #: model:product.uom,name:product.product_uom_unit msgid "Unit(s)" -msgstr "" +msgstr "Штук" #. module: product #: code:addons/product/product.py:176 @@ -2045,6 +2066,7 @@ msgid "" "Specify the fixed amount to add or substract(if negative) to the amount " "calculated with the discount." msgstr "" +"Укажите сумму , чтобы добавить или вычесть к сумме вычисленной с дисконтом." #. module: product #: help:product.product,qty_available:0 @@ -2384,7 +2406,7 @@ msgstr "Вариант ТМЦ" #. module: product #: model:product.template,name:product.product_product_6_product_template msgid "15” LCD Monitor" -msgstr "" +msgstr "15” LCD Монитор" #. module: product #: code:addons/product/pricelist.py:376 @@ -2413,6 +2435,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Щелкните, чтобы создать прайс-лист.\n" +"

\n" +" Прайс-лист содержит правила, которые должны оцениваться для " +"того, чтобы вычислить\n" +"                цену продукции для продажи.\n" +"

\n" +" Прайс-листы могут иметь несколько версий (2010, 2011, \n" +"                 Февраль 2010 года, и т.д.) и каждая версия может иметь " +"несколько правил.\n" +" (например, цена товара будет основываться на\n" +"                цене поставщика умноженной на 1,80).\n" +"

\n" +" " #. module: product #: model:ir.model,name:product.model_product_template @@ -2503,6 +2539,10 @@ msgid "" "128x128px image, with aspect ratio preserved, only when the image exceeds " "one of those sizes. Use this field in form views or some kanban views." msgstr "" +"Средне-размерное изображение товара. Оно автоматически изменяется до " +"128x128px, с таким же соотношением сторон, только тогда, когда изображение " +"превышает один из размеров. Используйте это поле в форме просмотра или " +"некоторых видах канбан." #. module: product #: view:product.uom:0 diff --git a/addons/product/i18n/sk.po b/addons/product/i18n/sk.po index bc1c4ab66cf..f7a47291c9d 100644 --- a/addons/product/i18n/sk.po +++ b/addons/product/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index 3760364fc06..88492546f42 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sq.po b/addons/product/i18n/sq.po index 2b78c827bdb..8a29f37178a 100644 --- a/addons/product/i18n/sq.po +++ b/addons/product/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 85cddcaa871..d1dccaf9fc9 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:27+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr@latin.po b/addons/product/i18n/sr@latin.po index e3476d49a6a..5405574fb8f 100644 --- a/addons/product/i18n/sr@latin.po +++ b/addons/product/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sv.po b/addons/product/i18n/sv.po index a340a7ddc84..fbcd4a630d1 100644 --- a/addons/product/i18n/sv.po +++ b/addons/product/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/th.po b/addons/product/i18n/th.po index 8b2be0b02e6..9405ae07baa 100644 --- a/addons/product/i18n/th.po +++ b/addons/product/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tlh.po b/addons/product/i18n/tlh.po index 729d4d4fc6d..07b8649d08a 100644 --- a/addons/product/i18n/tlh.po +++ b/addons/product/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index ba58a1ee49c..ed912bd2674 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/uk.po b/addons/product/i18n/uk.po index d0ecb9bccb8..a8ca785357b 100644 --- a/addons/product/i18n/uk.po +++ b/addons/product/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/vi.po b/addons/product/i18n/vi.po index d3298ce2d63..e416788c2a4 100644 --- a/addons/product/i18n/vi.po +++ b/addons/product/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 06:59+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index b860dcb66ea..1cac0e399c4 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index a06593f9b15..ea73dc4fc1e 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product_expiry/i18n/ar.po b/addons/product_expiry/i18n/ar.po index 95fb0925b36..b452121bd29 100644 --- a/addons/product_expiry/i18n/ar.po +++ b/addons/product_expiry/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ca.po b/addons/product_expiry/i18n/ca.po index 5c3ac2b6a8c..d2c2152bdfe 100644 --- a/addons/product_expiry/i18n/ca.po +++ b/addons/product_expiry/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/cs.po b/addons/product_expiry/i18n/cs.po index bbe1e78563f..9587cc74a95 100644 --- a/addons/product_expiry/i18n/cs.po +++ b/addons/product_expiry/i18n/cs.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-30 22:46+0000\n" -"Last-Translator: Jan Grmela \n" +"Last-Translator: Jan Grmela \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-31 05:16+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/da.po b/addons/product_expiry/i18n/da.po index 0fbfe645d24..454c287d8f7 100644 --- a/addons/product_expiry/i18n/da.po +++ b/addons/product_expiry/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/de.po b/addons/product_expiry/i18n/de.po index 7e158bc7940..2ba12aa07f8 100644 --- a/addons/product_expiry/i18n/de.po +++ b/addons/product_expiry/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/el.po b/addons/product_expiry/i18n/el.po index 0508cc4db23..71de8a5f332 100644 --- a/addons/product_expiry/i18n/el.po +++ b/addons/product_expiry/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es.po b/addons/product_expiry/i18n/es.po index ea89c4af2ff..41de31a0e1d 100644 --- a/addons/product_expiry/i18n/es.po +++ b/addons/product_expiry/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_CR.po b/addons/product_expiry/i18n/es_CR.po index 7d39631d6dc..263d529904e 100644 --- a/addons/product_expiry/i18n/es_CR.po +++ b/addons/product_expiry/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_EC.po b/addons/product_expiry/i18n/es_EC.po index 866dddfde77..d60e17acc36 100644 --- a/addons/product_expiry/i18n/es_EC.po +++ b/addons/product_expiry/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/et.po b/addons/product_expiry/i18n/et.po index 15e476c91c1..04950b75bef 100644 --- a/addons/product_expiry/i18n/et.po +++ b/addons/product_expiry/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fi.po b/addons/product_expiry/i18n/fi.po index 92269404d70..6dafa8b2241 100644 --- a/addons/product_expiry/i18n/fi.po +++ b/addons/product_expiry/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fr.po b/addons/product_expiry/i18n/fr.po index 9cfe640af22..f59dfcc5818 100644 --- a/addons/product_expiry/i18n/fr.po +++ b/addons/product_expiry/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/gl.po b/addons/product_expiry/i18n/gl.po index 3506de3f42e..8c707a99467 100644 --- a/addons/product_expiry/i18n/gl.po +++ b/addons/product_expiry/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hr.po b/addons/product_expiry/i18n/hr.po index 38309ad191e..5765410247f 100644 --- a/addons/product_expiry/i18n/hr.po +++ b/addons/product_expiry/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hu.po b/addons/product_expiry/i18n/hu.po index 852fc87369a..f0b9f3acbcd 100644 --- a/addons/product_expiry/i18n/hu.po +++ b/addons/product_expiry/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/it.po b/addons/product_expiry/i18n/it.po index 08ebcb26b1b..50113605aa8 100644 --- a/addons/product_expiry/i18n/it.po +++ b/addons/product_expiry/i18n/it.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ja.po b/addons/product_expiry/i18n/ja.po index 7be0b14389e..5255d0cf532 100644 --- a/addons/product_expiry/i18n/ja.po +++ b/addons/product_expiry/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/mn.po b/addons/product_expiry/i18n/mn.po index c3ecef17227..7a69887b28b 100644 --- a/addons/product_expiry/i18n/mn.po +++ b/addons/product_expiry/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/nl.po b/addons/product_expiry/i18n/nl.po index f62938c6b23..f6115295588 100644 --- a/addons/product_expiry/i18n/nl.po +++ b/addons/product_expiry/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pl.po b/addons/product_expiry/i18n/pl.po index 86211747270..9f9639abb93 100644 --- a/addons/product_expiry/i18n/pl.po +++ b/addons/product_expiry/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt.po b/addons/product_expiry/i18n/pt.po index 5cebfc3099f..cc5091c5a4c 100644 --- a/addons/product_expiry/i18n/pt.po +++ b/addons/product_expiry/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt_BR.po b/addons/product_expiry/i18n/pt_BR.po index f980b1166d8..c1c67bd2034 100644 --- a/addons/product_expiry/i18n/pt_BR.po +++ b/addons/product_expiry/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ro.po b/addons/product_expiry/i18n/ro.po index 2bc6627ddfd..0895be2c8dc 100644 --- a/addons/product_expiry/i18n/ro.po +++ b/addons/product_expiry/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ru.po b/addons/product_expiry/i18n/ru.po index e5e25a17655..7fd9925cd47 100644 --- a/addons/product_expiry/i18n/ru.po +++ b/addons/product_expiry/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template @@ -38,6 +38,8 @@ msgid "" "This is the date on which the goods with this Serial Number should be " "removed from the stock." msgstr "" +"Это дата, на которую товары с этим серийным номером должны быть удалены из " +"запаса." #. module: product_expiry #: help:product.product,removal_time:0 @@ -45,6 +47,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods should be removed from the stock." msgstr "" +"При присвоении нового серийного номера, это количество дней до того, как " +"товары должны быть удалены из запаса." #. module: product_expiry #: field:product.product,use_time:0 @@ -62,6 +66,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods starts deteriorating, without being dangerous yet." msgstr "" +"При присвоении нового серийного номера, это количество дней, прежде чем " +"товар начинает ухудшаться, еще не будучи опасным." #. module: product_expiry #: field:product.product,removal_time:0 @@ -74,11 +80,12 @@ msgid "" "This is the date on which an alert should be notified about the goods with " "this Serial Number." msgstr "" +"Это дата, на которую посылается оповещение о товаре с этим серийным номером." #. module: product_expiry #: model:ir.model,name:product_expiry.model_stock_production_lot msgid "Serial Number" -msgstr "" +msgstr "Серийный номер" #. module: product_expiry #: help:product.product,alert_time:0 @@ -86,6 +93,7 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before an " "alert should be notified." msgstr "" +"При присвоении нового серийного номера, это количество дней до оповещения." #. module: product_expiry #: field:stock.production.lot,removal_date:0 @@ -123,6 +131,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods may become dangerous and must not be consumed." msgstr "" +"При присвоении нового серийного номера, это количество дней , прежде чем " +"товар может стать опасным и не должен потребляться." #. module: product_expiry #: field:stock.production.lot,alert_date:0 @@ -135,6 +145,8 @@ msgid "" "This is the date on which the goods with this Serial Number start " "deteriorating, without being dangerous yet." msgstr "" +"Это дата, на которую товар с этим серийным номером начинается ухудшаться, " +"еще не будучи опасным." #. module: product_expiry #: help:stock.production.lot,life_date:0 @@ -142,6 +154,8 @@ msgid "" "This is the date on which the goods with this Serial Number may become " "dangerous and must not be consumed." msgstr "" +"Это дата, на которую товар с этим серийным номером может стать опасным и не " +"должен потребляться." #. module: product_expiry #: field:product.product,alert_time:0 diff --git a/addons/product_expiry/i18n/sl.po b/addons/product_expiry/i18n/sl.po index 4133c3b22cf..e2ffc0d8a18 100644 --- a/addons/product_expiry/i18n/sl.po +++ b/addons/product_expiry/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr.po b/addons/product_expiry/i18n/sr.po index 63ffcf833e1..46765fdbe74 100644 --- a/addons/product_expiry/i18n/sr.po +++ b/addons/product_expiry/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr@latin.po b/addons/product_expiry/i18n/sr@latin.po index e62ad5cabbc..4dcf36d089e 100644 --- a/addons/product_expiry/i18n/sr@latin.po +++ b/addons/product_expiry/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sv.po b/addons/product_expiry/i18n/sv.po index e6139d1d30e..1375d2b233e 100644 --- a/addons/product_expiry/i18n/sv.po +++ b/addons/product_expiry/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/tr.po b/addons/product_expiry/i18n/tr.po index 623f7aa2514..5530d20ac25 100644 --- a/addons/product_expiry/i18n/tr.po +++ b/addons/product_expiry/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/vi.po b/addons/product_expiry/i18n/vi.po index c956ee5487a..4b760e37bb5 100644 --- a/addons/product_expiry/i18n/vi.po +++ b/addons/product_expiry/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/zh_CN.po b/addons/product_expiry/i18n/zh_CN.po index b124fc5eda1..339f6c78919 100644 --- a/addons/product_expiry/i18n/zh_CN.po +++ b/addons/product_expiry/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_manufacturer/i18n/ar.po b/addons/product_manufacturer/i18n/ar.po index 590cdfb2fed..a9b05eada9e 100644 --- a/addons/product_manufacturer/i18n/ar.po +++ b/addons/product_manufacturer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/bg.po b/addons/product_manufacturer/i18n/bg.po index e767978a81f..51b566a433e 100644 --- a/addons/product_manufacturer/i18n/bg.po +++ b/addons/product_manufacturer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ca.po b/addons/product_manufacturer/i18n/ca.po index 3902e3fdd56..c6bd5fe3019 100644 --- a/addons/product_manufacturer/i18n/ca.po +++ b/addons/product_manufacturer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/cs.po b/addons/product_manufacturer/i18n/cs.po index 8e372eb9293..0e6627ac3f7 100644 --- a/addons/product_manufacturer/i18n/cs.po +++ b/addons/product_manufacturer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/da.po b/addons/product_manufacturer/i18n/da.po index 3838bfbe60d..68451dde5ba 100644 --- a/addons/product_manufacturer/i18n/da.po +++ b/addons/product_manufacturer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/de.po b/addons/product_manufacturer/i18n/de.po index 604ccd71d76..e1dca6dc27e 100644 --- a/addons/product_manufacturer/i18n/de.po +++ b/addons/product_manufacturer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/el.po b/addons/product_manufacturer/i18n/el.po index 0dd866f6858..85be7b97904 100644 --- a/addons/product_manufacturer/i18n/el.po +++ b/addons/product_manufacturer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es.po b/addons/product_manufacturer/i18n/es.po index 7200c585a5e..a372aace55f 100644 --- a/addons/product_manufacturer/i18n/es.po +++ b/addons/product_manufacturer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_CR.po b/addons/product_manufacturer/i18n/es_CR.po index 247c351fc4c..ad08f79d993 100644 --- a/addons/product_manufacturer/i18n/es_CR.po +++ b/addons/product_manufacturer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_EC.po b/addons/product_manufacturer/i18n/es_EC.po index 2f6a1f3450d..ad191c03a87 100644 --- a/addons/product_manufacturer/i18n/es_EC.po +++ b/addons/product_manufacturer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/et.po b/addons/product_manufacturer/i18n/et.po index 1ebf5ef302a..56f78ce5717 100644 --- a/addons/product_manufacturer/i18n/et.po +++ b/addons/product_manufacturer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fi.po b/addons/product_manufacturer/i18n/fi.po index ab69a218069..27b5efe66d3 100644 --- a/addons/product_manufacturer/i18n/fi.po +++ b/addons/product_manufacturer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fr.po b/addons/product_manufacturer/i18n/fr.po index 21b907ca4a6..dcacbe1a17c 100644 --- a/addons/product_manufacturer/i18n/fr.po +++ b/addons/product_manufacturer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/gl.po b/addons/product_manufacturer/i18n/gl.po index 05d1c93eaee..b680935ae4a 100644 --- a/addons/product_manufacturer/i18n/gl.po +++ b/addons/product_manufacturer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hr.po b/addons/product_manufacturer/i18n/hr.po index 030ea23b698..617108dc271 100644 --- a/addons/product_manufacturer/i18n/hr.po +++ b/addons/product_manufacturer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hu.po b/addons/product_manufacturer/i18n/hu.po index ae9f137d56f..c66f8ec7e51 100644 --- a/addons/product_manufacturer/i18n/hu.po +++ b/addons/product_manufacturer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/it.po b/addons/product_manufacturer/i18n/it.po index 3557e39385d..44271603373 100644 --- a/addons/product_manufacturer/i18n/it.po +++ b/addons/product_manufacturer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ja.po b/addons/product_manufacturer/i18n/ja.po index 2c5bc286a2c..b3abc16a141 100644 --- a/addons/product_manufacturer/i18n/ja.po +++ b/addons/product_manufacturer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/mn.po b/addons/product_manufacturer/i18n/mn.po index 58995126e66..0936d8e05cd 100644 --- a/addons/product_manufacturer/i18n/mn.po +++ b/addons/product_manufacturer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nb.po b/addons/product_manufacturer/i18n/nb.po index 48ef4a00c41..96c2cdaee8e 100644 --- a/addons/product_manufacturer/i18n/nb.po +++ b/addons/product_manufacturer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nl.po b/addons/product_manufacturer/i18n/nl.po index a9b4ca8a681..3e9d55c3c1a 100644 --- a/addons/product_manufacturer/i18n/nl.po +++ b/addons/product_manufacturer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pl.po b/addons/product_manufacturer/i18n/pl.po index 2f1acfe9595..d2ebede4447 100644 --- a/addons/product_manufacturer/i18n/pl.po +++ b/addons/product_manufacturer/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt.po b/addons/product_manufacturer/i18n/pt.po index fa1729ca670..638439a4591 100644 --- a/addons/product_manufacturer/i18n/pt.po +++ b/addons/product_manufacturer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt_BR.po b/addons/product_manufacturer/i18n/pt_BR.po index ddc3bddcc5c..1d314dc4647 100644 --- a/addons/product_manufacturer/i18n/pt_BR.po +++ b/addons/product_manufacturer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ro.po b/addons/product_manufacturer/i18n/ro.po index f517f60563d..aa7c7449083 100644 --- a/addons/product_manufacturer/i18n/ro.po +++ b/addons/product_manufacturer/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ru.po b/addons/product_manufacturer/i18n/ru.po index 40b0a986698..4b91d9ef892 100644 --- a/addons/product_manufacturer/i18n/ru.po +++ b/addons/product_manufacturer/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sl.po b/addons/product_manufacturer/i18n/sl.po index 4ec56a33bf5..818cd2d605c 100644 --- a/addons/product_manufacturer/i18n/sl.po +++ b/addons/product_manufacturer/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr.po b/addons/product_manufacturer/i18n/sr.po index 57cc9551a07..f82466880d1 100644 --- a/addons/product_manufacturer/i18n/sr.po +++ b/addons/product_manufacturer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr@latin.po b/addons/product_manufacturer/i18n/sr@latin.po index 9b1195b0996..8baf566ebee 100644 --- a/addons/product_manufacturer/i18n/sr@latin.po +++ b/addons/product_manufacturer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sv.po b/addons/product_manufacturer/i18n/sv.po index e230e2134aa..3ce1fc7bd95 100644 --- a/addons/product_manufacturer/i18n/sv.po +++ b/addons/product_manufacturer/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/tr.po b/addons/product_manufacturer/i18n/tr.po index 2b5d22bed2b..92348c0ad52 100644 --- a/addons/product_manufacturer/i18n/tr.po +++ b/addons/product_manufacturer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/zh_CN.po b/addons/product_manufacturer/i18n/zh_CN.po index e1eb0790d0f..28ddc6bdfa2 100644 --- a/addons/product_manufacturer/i18n/zh_CN.po +++ b/addons/product_manufacturer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_margin/i18n/ar.po b/addons/product_margin/i18n/ar.po index c28de832cd0..37313a8d92d 100644 --- a/addons/product_margin/i18n/ar.po +++ b/addons/product_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bg.po b/addons/product_margin/i18n/bg.po index c6d5d4368d9..45d473e68bc 100644 --- a/addons/product_margin/i18n/bg.po +++ b/addons/product_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bs.po b/addons/product_margin/i18n/bs.po index e409ddef30e..34d3619079c 100644 --- a/addons/product_margin/i18n/bs.po +++ b/addons/product_margin/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ca.po b/addons/product_margin/i18n/ca.po index e8e8471f5bd..ff6bc420577 100644 --- a/addons/product_margin/i18n/ca.po +++ b/addons/product_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/cs.po b/addons/product_margin/i18n/cs.po index d25a8beccef..b8512d49949 100644 --- a/addons/product_margin/i18n/cs.po +++ b/addons/product_margin/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/da.po b/addons/product_margin/i18n/da.po index f2d60d18cd2..722386376b6 100644 --- a/addons/product_margin/i18n/da.po +++ b/addons/product_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/de.po b/addons/product_margin/i18n/de.po index 5d306d28139..67576b72942 100644 --- a/addons/product_margin/i18n/de.po +++ b/addons/product_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/el.po b/addons/product_margin/i18n/el.po index d3afc8cbd61..c15aa28e885 100644 --- a/addons/product_margin/i18n/el.po +++ b/addons/product_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es.po b/addons/product_margin/i18n/es.po index 61681f13889..e7dcec83370 100644 --- a/addons/product_margin/i18n/es.po +++ b/addons/product_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 @@ -54,7 +54,7 @@ msgstr "Volumen de negocio - Precio estándar" #. module: product_margin #: field:product.product,total_margin_rate:0 msgid "Total Margin Rate(%)" -msgstr "" +msgstr "Tasa de margen total (%)" #. module: product_margin #: selection:product.margin,invoice_state:0 @@ -80,7 +80,7 @@ msgstr "Precio unidad promedio" #. module: product_margin #: field:product.product,sale_num_invoiced:0 msgid "# Invoiced in Sale" -msgstr "" +msgstr "Nº facturado en venta" #. module: product_margin #: view:product.product:0 @@ -122,7 +122,7 @@ msgstr "Suma de cantidad en facturas proveedor" #. module: product_margin #: field:product.product,date_to:0 msgid "Margin Date To" -msgstr "" +msgstr "Fecha hasta del margen" #. module: product_margin #: view:product.product:0 @@ -193,7 +193,7 @@ msgstr "Margen total" #. module: product_margin #: field:product.product,date_from:0 msgid "Margin Date From" -msgstr "" +msgstr "Fecha desde del margen" #. module: product_margin #: help:product.product,turnover:0 @@ -216,7 +216,7 @@ msgstr "Compras" #. module: product_margin #: field:product.product,purchase_num_invoiced:0 msgid "# Invoiced in Purchase" -msgstr "" +msgstr "Nº facturado en compra" #. module: product_margin #: help:product.product,expected_margin:0 diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index ba7c1776523..20e502a1333 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_CR.po b/addons/product_margin/i18n/es_CR.po index 4cd5b3df144..f3a2be6fbd4 100644 --- a/addons/product_margin/i18n/es_CR.po +++ b/addons/product_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_EC.po b/addons/product_margin/i18n/es_EC.po index 2efc41cbd38..e9212d8c856 100644 --- a/addons/product_margin/i18n/es_EC.po +++ b/addons/product_margin/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/et.po b/addons/product_margin/i18n/et.po index 55fb606d08e..69f01124bf3 100644 --- a/addons/product_margin/i18n/et.po +++ b/addons/product_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fi.po b/addons/product_margin/i18n/fi.po index 5804f1eba58..735bc9183b6 100644 --- a/addons/product_margin/i18n/fi.po +++ b/addons/product_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fr.po b/addons/product_margin/i18n/fr.po index 498cdd33e17..b01f484a02f 100644 --- a/addons/product_margin/i18n/fr.po +++ b/addons/product_margin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gl.po b/addons/product_margin/i18n/gl.po index 8832022e04c..44ffd868031 100644 --- a/addons/product_margin/i18n/gl.po +++ b/addons/product_margin/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gu.po b/addons/product_margin/i18n/gu.po index 8e8b0b5cafe..3f898c5b057 100644 --- a/addons/product_margin/i18n/gu.po +++ b/addons/product_margin/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hr.po b/addons/product_margin/i18n/hr.po index 936f0d20a20..932e5268072 100644 --- a/addons/product_margin/i18n/hr.po +++ b/addons/product_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hu.po b/addons/product_margin/i18n/hu.po index 6a9e766342a..95d6d20daf3 100644 --- a/addons/product_margin/i18n/hu.po +++ b/addons/product_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/id.po b/addons/product_margin/i18n/id.po index 72e13efe08d..552ce2bc8c6 100644 --- a/addons/product_margin/i18n/id.po +++ b/addons/product_margin/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/it.po b/addons/product_margin/i18n/it.po index cb589f0c37e..c78d336bb12 100644 --- a/addons/product_margin/i18n/it.po +++ b/addons/product_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ja.po b/addons/product_margin/i18n/ja.po index 6d0400343d2..eb519c6150a 100644 --- a/addons/product_margin/i18n/ja.po +++ b/addons/product_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ko.po b/addons/product_margin/i18n/ko.po index 69c15fe602c..15c2fd5c46f 100644 --- a/addons/product_margin/i18n/ko.po +++ b/addons/product_margin/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/lt.po b/addons/product_margin/i18n/lt.po index 8d6b0ff9959..64bb8e000e1 100644 --- a/addons/product_margin/i18n/lt.po +++ b/addons/product_margin/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/nl.po b/addons/product_margin/i18n/nl.po index a27981b3b85..396409a535b 100644 --- a/addons/product_margin/i18n/nl.po +++ b/addons/product_margin/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index 6881ae1c405..cf6ed9068f9 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pl.po b/addons/product_margin/i18n/pl.po index 6d1cd08bee9..1212a3a2194 100644 --- a/addons/product_margin/i18n/pl.po +++ b/addons/product_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt.po b/addons/product_margin/i18n/pt.po index c8ed695f359..588e57c3591 100644 --- a/addons/product_margin/i18n/pt.po +++ b/addons/product_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index a30307268b0..718e89fbf81 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ro.po b/addons/product_margin/i18n/ro.po index da12cd12acf..d3b1e3be0a6 100644 --- a/addons/product_margin/i18n/ro.po +++ b/addons/product_margin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ru.po b/addons/product_margin/i18n/ru.po index 1d4933e9028..7c02dc18b83 100644 --- a/addons/product_margin/i18n/ru.po +++ b/addons/product_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sl.po b/addons/product_margin/i18n/sl.po index f512c8298cf..f2f27442afd 100644 --- a/addons/product_margin/i18n/sl.po +++ b/addons/product_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sq.po b/addons/product_margin/i18n/sq.po index 8ca60d839e3..5f5ecac1c6d 100644 --- a/addons/product_margin/i18n/sq.po +++ b/addons/product_margin/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr.po b/addons/product_margin/i18n/sr.po index 6fa5b8798af..bda628dd655 100644 --- a/addons/product_margin/i18n/sr.po +++ b/addons/product_margin/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr@latin.po b/addons/product_margin/i18n/sr@latin.po index d4f4e56ee1f..c201978ae35 100644 --- a/addons/product_margin/i18n/sr@latin.po +++ b/addons/product_margin/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sv.po b/addons/product_margin/i18n/sv.po index 905dd6bfe0e..9ee15def59e 100644 --- a/addons/product_margin/i18n/sv.po +++ b/addons/product_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tlh.po b/addons/product_margin/i18n/tlh.po index 8b3cdd72513..b40f99b6710 100644 --- a/addons/product_margin/i18n/tlh.po +++ b/addons/product_margin/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tr.po b/addons/product_margin/i18n/tr.po index aeaff4b060f..a9d72898499 100644 --- a/addons/product_margin/i18n/tr.po +++ b/addons/product_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/uk.po b/addons/product_margin/i18n/uk.po index 629b13f34a8..b28a61f70a8 100644 --- a/addons/product_margin/i18n/uk.po +++ b/addons/product_margin/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/vi.po b/addons/product_margin/i18n/vi.po index a16cfce98d2..468986a2fe1 100644 --- a/addons/product_margin/i18n/vi.po +++ b/addons/product_margin/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index 68d60716ac5..b9b9a83318e 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index d886e9cf703..c1ed39e3acd 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_visible_discount/i18n/ar.po b/addons/product_visible_discount/i18n/ar.po index 6ff959d22c1..b21b9d425de 100644 --- a/addons/product_visible_discount/i18n/ar.po +++ b/addons/product_visible_discount/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/bg.po b/addons/product_visible_discount/i18n/bg.po index 686ec79ea42..6f6d65160c7 100644 --- a/addons/product_visible_discount/i18n/bg.po +++ b/addons/product_visible_discount/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ca.po b/addons/product_visible_discount/i18n/ca.po index bd4cc57bf06..5d47451d979 100644 --- a/addons/product_visible_discount/i18n/ca.po +++ b/addons/product_visible_discount/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/cs.po b/addons/product_visible_discount/i18n/cs.po index a5a08c98927..29fcfd00dbd 100644 --- a/addons/product_visible_discount/i18n/cs.po +++ b/addons/product_visible_discount/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/da.po b/addons/product_visible_discount/i18n/da.po index 3da357c31cd..7012743c6c7 100644 --- a/addons/product_visible_discount/i18n/da.po +++ b/addons/product_visible_discount/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/de.po b/addons/product_visible_discount/i18n/de.po index 8e0f780547e..87986bb93e2 100644 --- a/addons/product_visible_discount/i18n/de.po +++ b/addons/product_visible_discount/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/el.po b/addons/product_visible_discount/i18n/el.po index 6dd906586ad..08a814780b5 100644 --- a/addons/product_visible_discount/i18n/el.po +++ b/addons/product_visible_discount/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es.po b/addons/product_visible_discount/i18n/es.po index 889400431b1..8bcace1a1ac 100644 --- a/addons/product_visible_discount/i18n/es.po +++ b/addons/product_visible_discount/i18n/es.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_CR.po b/addons/product_visible_discount/i18n/es_CR.po index 91e72bacacd..366dcafedaa 100644 --- a/addons/product_visible_discount/i18n/es_CR.po +++ b/addons/product_visible_discount/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_EC.po b/addons/product_visible_discount/i18n/es_EC.po index 3000c3d81f6..c359e61dea6 100644 --- a/addons/product_visible_discount/i18n/es_EC.po +++ b/addons/product_visible_discount/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/et.po b/addons/product_visible_discount/i18n/et.po index d32a3dac25f..323d5d9e899 100644 --- a/addons/product_visible_discount/i18n/et.po +++ b/addons/product_visible_discount/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fi.po b/addons/product_visible_discount/i18n/fi.po index dfb5d24b83b..4460a2e9776 100644 --- a/addons/product_visible_discount/i18n/fi.po +++ b/addons/product_visible_discount/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fr.po b/addons/product_visible_discount/i18n/fr.po index 168097fd6c8..c9917519481 100644 --- a/addons/product_visible_discount/i18n/fr.po +++ b/addons/product_visible_discount/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/gl.po b/addons/product_visible_discount/i18n/gl.po index d50dbb5b3d6..69462d223a9 100644 --- a/addons/product_visible_discount/i18n/gl.po +++ b/addons/product_visible_discount/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hr.po b/addons/product_visible_discount/i18n/hr.po index 51625dcddf3..13d48248f63 100644 --- a/addons/product_visible_discount/i18n/hr.po +++ b/addons/product_visible_discount/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hu.po b/addons/product_visible_discount/i18n/hu.po index ee2a040ec73..8417af5fe67 100644 --- a/addons/product_visible_discount/i18n/hu.po +++ b/addons/product_visible_discount/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/it.po b/addons/product_visible_discount/i18n/it.po index d47f169615b..270c5f41736 100644 --- a/addons/product_visible_discount/i18n/it.po +++ b/addons/product_visible_discount/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ja.po b/addons/product_visible_discount/i18n/ja.po index 40e2dfbf0ff..5f55a1dbc98 100644 --- a/addons/product_visible_discount/i18n/ja.po +++ b/addons/product_visible_discount/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/lt.po b/addons/product_visible_discount/i18n/lt.po index 063e5b3cb9f..604ec9d201e 100644 --- a/addons/product_visible_discount/i18n/lt.po +++ b/addons/product_visible_discount/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/mn.po b/addons/product_visible_discount/i18n/mn.po index 173d56bda1d..579c6feb65e 100644 --- a/addons/product_visible_discount/i18n/mn.po +++ b/addons/product_visible_discount/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/nl.po b/addons/product_visible_discount/i18n/nl.po index eaee88497dc..07ab808c1f1 100644 --- a/addons/product_visible_discount/i18n/nl.po +++ b/addons/product_visible_discount/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pl.po b/addons/product_visible_discount/i18n/pl.po index 36183f2a8f6..95518e14526 100644 --- a/addons/product_visible_discount/i18n/pl.po +++ b/addons/product_visible_discount/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt.po b/addons/product_visible_discount/i18n/pt.po index 8a9dc63e55f..685f5eae093 100644 --- a/addons/product_visible_discount/i18n/pt.po +++ b/addons/product_visible_discount/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt_BR.po b/addons/product_visible_discount/i18n/pt_BR.po index ce4f0862766..4b14c35f716 100644 --- a/addons/product_visible_discount/i18n/pt_BR.po +++ b/addons/product_visible_discount/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ro.po b/addons/product_visible_discount/i18n/ro.po index 246015846d5..f0b56f87ad5 100644 --- a/addons/product_visible_discount/i18n/ro.po +++ b/addons/product_visible_discount/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ru.po b/addons/product_visible_discount/i18n/ru.po index 8fe503b8078..c6ea3f2152e 100644 --- a/addons/product_visible_discount/i18n/ru.po +++ b/addons/product_visible_discount/i18n/ru.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 #, python-format msgid "No Sale Pricelist Found!" -msgstr "" +msgstr "Не найден прайс-лист продаж!" #. module: product_visible_discount #: field:product.pricelist,visible_discount:0 @@ -32,7 +32,7 @@ msgstr "Видимая скидка" #: code:addons/product_visible_discount/product_visible_discount.py:141 #, python-format msgid "No Purchase Pricelist Found!" -msgstr "" +msgstr "Не найден прайс-лист закупок!" #. module: product_visible_discount #: model:ir.model,name:product_visible_discount.model_account_invoice_line @@ -48,7 +48,7 @@ msgstr "Прайс-лист" #: code:addons/product_visible_discount/product_visible_discount.py:141 #, python-format msgid "You must first define a pricelist on the supplier form!" -msgstr "" +msgstr "Сначала нужно определить прайс-лист в форме ввода поставщика!" #. module: product_visible_discount #: model:ir.model,name:product_visible_discount.model_sale_order_line @@ -59,4 +59,4 @@ msgstr "Позиция заказа на продажу" #: code:addons/product_visible_discount/product_visible_discount.py:149 #, python-format msgid "You must first define a pricelist on the customer form!" -msgstr "" +msgstr "Сначала нужно определить прайс-лист в форме ввода заказчика!" diff --git a/addons/product_visible_discount/i18n/sl.po b/addons/product_visible_discount/i18n/sl.po index f72ce158ebe..74568df70be 100644 --- a/addons/product_visible_discount/i18n/sl.po +++ b/addons/product_visible_discount/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2013-01-01 22:06+0000\n" -"Last-Translator: Dusan Laznik (Mentis) \n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr.po b/addons/product_visible_discount/i18n/sr.po index 5e4f007a225..aca61c6e171 100644 --- a/addons/product_visible_discount/i18n/sr.po +++ b/addons/product_visible_discount/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr@latin.po b/addons/product_visible_discount/i18n/sr@latin.po index 35541524629..a0e13c90e40 100644 --- a/addons/product_visible_discount/i18n/sr@latin.po +++ b/addons/product_visible_discount/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sv.po b/addons/product_visible_discount/i18n/sv.po index 3c59636464e..c16f4a83b86 100644 --- a/addons/product_visible_discount/i18n/sv.po +++ b/addons/product_visible_discount/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/tr.po b/addons/product_visible_discount/i18n/tr.po index 1c27ef753b3..a21a5655949 100644 --- a/addons/product_visible_discount/i18n/tr.po +++ b/addons/product_visible_discount/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/vi.po b/addons/product_visible_discount/i18n/vi.po index 1867f967d37..4f3ab35451f 100644 --- a/addons/product_visible_discount/i18n/vi.po +++ b/addons/product_visible_discount/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/zh_CN.po b/addons/product_visible_discount/i18n/zh_CN.po index f5ffab718f5..78630df3a45 100644 --- a/addons/product_visible_discount/i18n/zh_CN.po +++ b/addons/product_visible_discount/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/project/i18n/ar.po b/addons/project/i18n/ar.po index e45596640aa..a8ce23f200d 100644 --- a/addons/project/i18n/ar.po +++ b/addons/project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bg.po b/addons/project/i18n/bg.po index de68c3cd0ec..905bb637ae9 100644 --- a/addons/project/i18n/bg.po +++ b/addons/project/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bs.po b/addons/project/i18n/bs.po index 07f9e50c248..7df0ab67234 100644 --- a/addons/project/i18n/bs.po +++ b/addons/project/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ca.po b/addons/project/i18n/ca.po index 0e2abfb67b6..5f2c2ad42ba 100644 --- a/addons/project/i18n/ca.po +++ b/addons/project/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/cs.po b/addons/project/i18n/cs.po index 8d640aed659..ebf575c3cfa 100644 --- a/addons/project/i18n/cs.po +++ b/addons/project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/da.po b/addons/project/i18n/da.po index a3d3142416b..f5bb7679b25 100644 --- a/addons/project/i18n/da.po +++ b/addons/project/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/de.po b/addons/project/i18n/de.po index 38eeb93b9ea..bd81b6383cf 100644 --- a/addons/project/i18n/de.po +++ b/addons/project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/el.po b/addons/project/i18n/el.po index df25a95f6e6..d3d8f410ed8 100644 --- a/addons/project/i18n/el.po +++ b/addons/project/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/project/i18n/es.po b/addons/project/i18n/es.po index f1e4bf70687..b82c79396a1 100644 --- a/addons/project/i18n/es.po +++ b/addons/project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 @@ -56,7 +56,7 @@ msgstr "Tareas del proyecto" #. module: project #: field:project.task.type,name:0 msgid "Stage Name" -msgstr "Nombre etapa" +msgstr "Nombre de la etapa" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -233,7 +233,7 @@ msgstr "Asignado a" #: model:mail.message.subtype,name:project.mt_project_task_closed #: model:mail.message.subtype,name:project.mt_task_closed msgid "Task Done" -msgstr "" +msgstr "Tarea realizada" #. module: project #: view:project.project:0 @@ -274,7 +274,7 @@ msgstr "Delegar tarea de proyecto" #: model:mail.message.subtype,name:project.mt_project_task_started #: model:mail.message.subtype,name:project.mt_task_started msgid "Task Started" -msgstr "" +msgstr "Tarea iniciada" #. module: project #: view:project.task:0 @@ -450,7 +450,7 @@ msgstr "Usar el pad integrado de notas colaborativas para las tareas" #: model:mail.message.subtype,name:project.mt_project_task_blocked #: model:mail.message.subtype,name:project.mt_task_blocked msgid "Task Blocked" -msgstr "" +msgstr "Tarea bloqueada" #. module: project #: model:process.node,note:project.process_node_opentask0 @@ -470,7 +470,7 @@ msgstr "oe_kanban_text_red" #. module: project #: model:mail.message.subtype,description:project.mt_task_blocked msgid "Task blocked" -msgstr "" +msgstr "Tarea bloqueada" #. module: project #: view:project.task:0 @@ -900,7 +900,7 @@ msgstr "Compañías" #. module: project #: field:project.task.type,fold:0 msgid "Folded by Default" -msgstr "" +msgstr "Replegado por defecto" #. module: project #: field:project.task.history,date:0 @@ -992,6 +992,8 @@ msgid "" "Follow this project to automatically track the events associated to tasks " "and issues of this project." msgstr "" +"Seguir este proyecto para rastrear automáticamente los eventos asociados a " +"las tareas y a las incidencias del mismo." #. module: project #: view:project.task:0 @@ -1033,7 +1035,7 @@ msgstr "Re-evaluar tarea" #: model:ir.model,name:project.model_project_task_type #: view:project.task.type:0 msgid "Task Stage" -msgstr "Etapa tarea" +msgstr "Etapa de la tarea" #. module: project #: view:project.task.type:0 @@ -1267,7 +1269,7 @@ msgstr "%s (copia)" #. module: project #: model:mail.message.subtype,name:project.mt_project_task_stage msgid "Task Stage Changed" -msgstr "" +msgstr "Etapa de tarea cambiada" #. module: project #: view:project.task:0 @@ -1519,7 +1521,7 @@ msgstr "Horas restantes" #. module: project #: model:mail.message.subtype,description:project.mt_task_stage msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: project #: constraint:project.task:0 @@ -1635,7 +1637,7 @@ msgstr "Delegar su tarea a otro usuario" #. module: project #: model:mail.message.subtype,description:project.mt_task_started msgid "Task started" -msgstr "" +msgstr "Tarea iniciada" #. module: project #: help:project.task.reevaluate,remaining_hours:0 @@ -1810,7 +1812,7 @@ msgstr "Documentos" #. module: project #: model:mail.message.subtype,description:project.mt_task_new msgid "Task created" -msgstr "" +msgstr "Tarea creada" #. module: project #: view:report.project.task.user:0 @@ -2084,7 +2086,7 @@ msgstr "Por favor, elimine primero el proyecto relacionado con esta cuenta." #: model:mail.message.subtype,name:project.mt_project_task_new #: model:mail.message.subtype,name:project.mt_task_new msgid "Task Created" -msgstr "" +msgstr "Tarea creada" #. module: project #: view:report.project.task.user:0 @@ -2107,7 +2109,7 @@ msgstr "Lista para la siguiente etapa" #. module: project #: field:project.task.type,case_default:0 msgid "Default for New Projects" -msgstr "" +msgstr "Predeterminado para nuevos proyectos" #. module: project #: view:project.task:0 @@ -2154,7 +2156,7 @@ msgstr "" #. 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 diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index 285177c9387..aefb477f194 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_CR.po b/addons/project/i18n/es_CR.po index c8249cd4ad5..6bc47b3e849 100644 --- a/addons/project/i18n/es_CR.po +++ b/addons/project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_EC.po b/addons/project/i18n/es_EC.po index 4befd7a0af7..5d33a6f69a3 100644 --- a/addons/project/i18n/es_EC.po +++ b/addons/project/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_MX.po b/addons/project/i18n/es_MX.po index c5db06cff39..cedfa1fb07a 100644 --- a/addons/project/i18n/es_MX.po +++ b/addons/project/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_PY.po b/addons/project/i18n/es_PY.po index 2fa33833fb0..7a45b47f86a 100644 --- a/addons/project/i18n/es_PY.po +++ b/addons/project/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/et.po b/addons/project/i18n/et.po index 333b54f61fc..00044a26dbe 100644 --- a/addons/project/i18n/et.po +++ b/addons/project/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/eu.po b/addons/project/i18n/eu.po index 772ef4d8999..edc12446f92 100644 --- a/addons/project/i18n/eu.po +++ b/addons/project/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/fi.po b/addons/project/i18n/fi.po index b1706142c64..91a3691504c 100644 --- a/addons/project/i18n/fi.po +++ b/addons/project/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/fr.po b/addons/project/i18n/fr.po index e93c80a77bb..a5ee6fc1842 100644 --- a/addons/project/i18n/fr.po +++ b/addons/project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gl.po b/addons/project/i18n/gl.po index eacd9ba5fa0..833f3d87b9e 100644 --- a/addons/project/i18n/gl.po +++ b/addons/project/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gu.po b/addons/project/i18n/gu.po index ebcc4fe5e72..9ac0f6eec85 100644 --- a/addons/project/i18n/gu.po +++ b/addons/project/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hr.po b/addons/project/i18n/hr.po index 13f00f8a443..ce8d185a782 100644 --- a/addons/project/i18n/hr.po +++ b/addons/project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hu.po b/addons/project/i18n/hu.po index df0d7d62278..d5b0a9d0fc4 100644 --- a/addons/project/i18n/hu.po +++ b/addons/project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/id.po b/addons/project/i18n/id.po index c4d8a33f787..82bc1343571 100644 --- a/addons/project/i18n/id.po +++ b/addons/project/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/it.po b/addons/project/i18n/it.po index aa339e5133b..dbff414f8fa 100644 --- a/addons/project/i18n/it.po +++ b/addons/project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ja.po b/addons/project/i18n/ja.po index a600b7080a4..b01cbcbcfe4 100644 --- a/addons/project/i18n/ja.po +++ b/addons/project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ko.po b/addons/project/i18n/ko.po index 7f557cf449e..eb96f915c17 100644 --- a/addons/project/i18n/ko.po +++ b/addons/project/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lt.po b/addons/project/i18n/lt.po index eac1569f2d6..bf7eed11a8b 100644 --- a/addons/project/i18n/lt.po +++ b/addons/project/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lv.po b/addons/project/i18n/lv.po index 1d3099d57c1..ab898ef9922 100644 --- a/addons/project/i18n/lv.po +++ b/addons/project/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/mn.po b/addons/project/i18n/mn.po index a17b27a5d6a..a99473f187b 100644 --- a/addons/project/i18n/mn.po +++ b/addons/project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-11 05:22+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nb.po b/addons/project/i18n/nb.po index c01017521c2..68ac727add6 100644 --- a/addons/project/i18n/nb.po +++ b/addons/project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl.po b/addons/project/i18n/nl.po index 3ed35b62d04..37a21471e7a 100644 --- a/addons/project/i18n/nl.po +++ b/addons/project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index 6abbeb755a1..0cec88d889e 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pl.po b/addons/project/i18n/pl.po index 522e412ef19..581f102963e 100644 --- a/addons/project/i18n/pl.po +++ b/addons/project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pt.po b/addons/project/i18n/pt.po index 8345a06294d..e426938080f 100644 --- a/addons/project/i18n/pt.po +++ b/addons/project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index e470b2f5381..198d0a1509b 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 @@ -29,7 +29,7 @@ msgid "" "be able to manage tasks or track issues" msgstr "" "Se marcado, este contrato estará disponível no menu do projeto e você poderá " -"gerenciar tarefas e monitorar problemas" +"gerenciar tarefas e monitorar questões" #. module: project #: field:project.project,progress_rate:0 @@ -46,7 +46,7 @@ msgstr "Tarefas por responsáveis" #. module: project #: view:project.project:0 msgid "Parent" -msgstr "Pai" +msgstr "Superior" #. module: project #: model:ir.actions.act_window,name:project.dblc_proj @@ -94,7 +94,7 @@ msgstr "Aviso!" #: help:project.project,message_unread:0 #: help:project.task,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Se marcado novas mensagens requerem sua atenção" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: project #: model:process.node,name:project.process_node_donetask0 @@ -234,7 +234,7 @@ msgstr "Atribuído a" #: model:mail.message.subtype,name:project.mt_project_task_closed #: model:mail.message.subtype,name:project.mt_task_closed msgid "Task Done" -msgstr "" +msgstr "Tarefa Concluída" #. module: project #: view:project.project:0 @@ -263,7 +263,7 @@ msgstr "Contrato/Analítico" #. module: project #: view:project.config.settings:0 msgid "Project Management" -msgstr "Gerenciamento de Projetos" +msgstr "Gestão de Projetos" #. module: project #: model:ir.actions.act_window,name:project.action_project_task_delegate @@ -275,7 +275,7 @@ msgstr "Atribuíção de Tarefas de Projeto" #: model:mail.message.subtype,name:project.mt_project_task_started #: model:mail.message.subtype,name:project.mt_task_started msgid "Task Started" -msgstr "" +msgstr "Tarefa Iniciada" #. module: project #: view:project.task:0 @@ -319,7 +319,7 @@ msgstr "Gerente do Projeto" #: field:project.task.history.cumulative,state:0 #: field:report.project.task.user,state:0 msgid "Status" -msgstr "Estado" +msgstr "Situação" #. module: project #: selection:report.project.task.user,month:0 @@ -381,7 +381,7 @@ msgstr "" #: view:project.task:0 #: view:project.task.history.cumulative:0 msgid "In Progress Tasks" -msgstr "Tarefas em Progresso" +msgstr "Tarefas em Andamento" #. module: project #: help:res.company,project_time_mode_id:0 @@ -421,7 +421,7 @@ msgstr "Gerente do(s) Projeto(s)" #: selection:project.task.type,state:0 #: selection:report.project.task.user,state:0 msgid "In Progress" -msgstr "Em Progresso" +msgstr "Em Andamento" #. module: project #: view:project.task:0 @@ -431,7 +431,7 @@ msgstr "Reativar" #. module: project #: field:project.project,resource_calendar_id:0 msgid "Working Time" -msgstr "Tempo de trabalho" +msgstr "Tempo de Trabalho" #. module: project #: model:ir.actions.act_window,name:project.action_project_task_reevaluate @@ -446,13 +446,13 @@ msgstr "Validar tempo planejado" #. module: project #: field:project.config.settings,module_pad:0 msgid "Use integrated collaborative note pads on task" -msgstr "Utilizar as notas colaborativas pads nas tarefas" +msgstr "Usar o Bloco de Notas colaborativo nas tarefas" #. module: project #: model:mail.message.subtype,name:project.mt_project_task_blocked #: model:mail.message.subtype,name:project.mt_task_blocked msgid "Task Blocked" -msgstr "" +msgstr "Tarefa Bloqueada" #. module: project #: model:process.node,note:project.process_node_opentask0 @@ -472,7 +472,7 @@ msgstr "oe_kanban_text_red" #. module: project #: model:mail.message.subtype,description:project.mt_task_blocked msgid "Task blocked" -msgstr "" +msgstr "Tarefa bloqueada" #. module: project #: view:project.task:0 @@ -530,8 +530,8 @@ msgid "" "Total remaining time, can be re-estimated periodically by the assignee of " "the task." msgstr "" -"O tempo restante total, pode re-ser estimado periodicamente pelo cessionário " -"da tarefa." +"Tempo total restante, pode ser re-estimado periodicamente pelo executor da " +"tarefa" #. module: project #: selection:report.project.task.user,month:0 @@ -570,7 +570,7 @@ msgstr "Dias para Abrir" #. module: project #: selection:report.project.task.user,priority:0 msgid "Very urgent" -msgstr "Muito Urgente" +msgstr "Urgentíssimo" #. module: project #: help:project.task.delegate,project_id:0 @@ -694,7 +694,7 @@ msgstr "Pronto" #. module: project #: view:project.task:0 msgid "New Tasks" -msgstr "Nova Tarefa" +msgstr "Novas Tarefas" #. module: project #: field:project.config.settings,module_project_issue_sheet:0 @@ -717,7 +717,7 @@ msgstr "Especificação" #. module: project #: model:process.transition,note:project.process_transition_draftopentask0 msgid "From draft state, it will come into the open state." -msgstr "Do estado Rascunho, mudará para o estado Aberto." +msgstr "Do estado Provisório, mudará para o estado Aberto." #. module: project #: view:project.task.history.cumulative:0 @@ -733,7 +733,7 @@ msgstr "Descrição de Nova Tarefa" #. module: project #: field:report.project.task.user,delay_endings_days:0 msgid "Overpassed Deadline" -msgstr "Prazo Superado" +msgstr "Prazo Ultrapassado" #. module: project #: view:report.project.task.user:0 @@ -754,7 +754,7 @@ msgstr "Tempo total" #. module: project #: view:report.project.task.user:0 msgid "Creation Date" -msgstr "Data da criação" +msgstr "Data de Criação" #. module: project #: view:project.project:0 @@ -772,7 +772,7 @@ msgstr "Estágio" #. module: project #: model:process.transition,name:project.process_transition_draftopentask0 msgid "Draft Open task" -msgstr "Tarefa Rascunho Aberta" +msgstr "Tarefa Provisória Aberta" #. module: project #: field:project.project,alias_model:0 @@ -893,8 +893,8 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" -"A situação é definida como 'Rascunho' quando o caso é criado. Se o caso está " -"em progresso, a situação muda para 'Aberto'. Quando o caso termina, a " +"A situação é definida como 'Provisória' quando o caso é criado. Se o caso " +"está em progresso, a situação muda para 'Aberto'. Quando o caso termina, a " "situação é definida como 'Concluído'. Se o caso precisa ser revisado, a " "situação é definida como 'Pendente'." @@ -906,7 +906,7 @@ msgstr "Empresas" #. module: project #: field:project.task.type,fold:0 msgid "Folded by Default" -msgstr "" +msgstr "Dobrado por Padrão" #. module: project #: field:project.task.history,date:0 @@ -951,9 +951,9 @@ msgid "" "projects. It enables you to connect projects with budgets, planning, cost " "and revenue analysis, timesheets on projects, etc." msgstr "" -"Associe este projeto a uma conta analítica se precisar gerencia financeira " -"nos projetos com análise de orçamentos, planejamento, custo e retorno, " -"planilha de tempo em projetos, etc." +"Associe este projeto a uma conta analítica se precisar gestão financeira nos " +"projetos com análise de orçamentos, planejamento, custo e retorno, planilha " +"de tempo em projetos, etc." #. module: project #: model:process.transition.action,name:project.process_transition_action_draftcanceltask0 @@ -996,6 +996,8 @@ msgid "" "Follow this project to automatically track the events associated to tasks " "and issues of this project." msgstr "" +"Siga este projeto para acompanhar automaticamente os eventos associados as " +"tarefas e questões deste projeto." #. module: project #: view:project.task:0 @@ -1067,14 +1069,14 @@ msgstr "Estado de validação" #. module: project #: field:project.task.work,name:0 msgid "Work summary" -msgstr "Sumário do trabalho" +msgstr "Resumo do trabalho" #. module: project #: view:project.project:0 #: view:project.task:0 #: view:report.project.task.user:0 msgid "Group By..." -msgstr "Agrupado Por..." +msgstr "Agrupar Por..." #. module: project #: view:project.project:0 @@ -1134,7 +1136,7 @@ msgstr "Estágios comuns para todos os projetos" #. module: project #: model:process.node,name:project.process_node_drafttask0 msgid "Draft task" -msgstr "Tarefa em Rascunho" +msgstr "Tarefas Provisórias" #. module: project #: field:project.task,notes:0 @@ -1246,10 +1248,10 @@ msgstr "" "

\n" " Clique para adicionar um estágio às tarefas.\n" "

\n" -" Define os passos que serão utilizados no projeto da criação\n" -" da tarefa, até o fechamento da mesma ou do incidente.\n" -" Estes estágios serão usados para monitorar o progresso em\n" -" resolver uma tarefa ou um incidente.\n" +" Define os passos que serão utilizados no projeto na criação\n" +" da tarefa, até o fechamento da mesma ou da questão.\n" +" Estes estágios serão usados para monitorar o progresso na\n" +" resolução de uma tarefa ou questão.\n" "

\n" " " @@ -1269,7 +1271,7 @@ msgstr "%s (cópia)" #. module: project #: model:mail.message.subtype,name:project.mt_project_task_stage msgid "Task Stage Changed" -msgstr "" +msgstr "Estágio da Tarefa Alterado" #. module: project #: view:project.task:0 @@ -1322,7 +1324,7 @@ msgstr "Mês" #. module: project #: model:project.task.type,name:project.project_tt_design msgid "Design" -msgstr "Desenho" +msgstr "Design" #. module: project #: view:project.task:0 @@ -1409,7 +1411,7 @@ msgid "" "New state of your own task. Pending will be reopened automatically when the " "delegated task is closed" msgstr "" -"Novo status da sua tarefa. Pendente irá reabrir automaticamente quando a " +"Nova situação da sua tarefa. Pendente irá reabrir automaticamente quando a " "tarefa atribuída for concluída" #. module: project @@ -1462,8 +1464,8 @@ msgid "" "Estimated time to do the task, usually set by the project manager when the " "task is in draft state." msgstr "" -"Tempo estimado para efetuar a tarefa, usualmente ajustado pelo Gerente do " -"Projeto quando a tarefa está no estado de Rascunho." +"Tempo estimado para efetuar a tarefa, geralmente ajustado pelo Gerente do " +"Projeto quando a tarefa está no estado Provisório." #. module: project #: code:addons/project/project.py:220 @@ -1519,12 +1521,12 @@ msgstr "Horas Restantes" #. module: project #: model:mail.message.subtype,description:project.mt_task_stage msgid "Stage changed" -msgstr "" +msgstr "Estágio alterado" #. module: project #: constraint:project.task:0 msgid "Error ! Task end-date must be greater then task start-date" -msgstr "Erro ! A data final deve ser maior do que a data inicial" +msgstr "Erro! A data final deve ser maior do que a data inicial" #. module: project #: field:project.task.history,user_id:0 @@ -1636,7 +1638,7 @@ msgstr "Delegar sua tarefa para outro usuário" #. module: project #: model:mail.message.subtype,description:project.mt_task_started msgid "Task started" -msgstr "" +msgstr "Tarefa Iniciada" #. module: project #: help:project.task.reevaluate,remaining_hours:0 @@ -1731,7 +1733,7 @@ msgstr "Estágios da Tarefa" #. module: project #: model:process.node,note:project.process_node_drafttask0 msgid "Define the Requirements and Set Planned Hours." -msgstr "Defina as exigências e ajuste horas de planejamento." +msgstr "Defina as exigências e defina as horas de planejadas." #. module: project #: field:project.project,message_ids:0 @@ -1815,7 +1817,7 @@ msgstr "Documentos" #. module: project #: model:mail.message.subtype,description:project.mt_task_new msgid "Task created" -msgstr "" +msgstr "Tarefa criada" #. module: project #: view:report.project.task.user:0 @@ -1885,7 +1887,7 @@ msgstr "" #. module: project #: view:res.partner:0 msgid "For changing to done state" -msgstr "Para mudar o estado para feito" +msgstr "Para mudar o estado para Concluído" #. module: project #: view:report.project.task.user:0 @@ -1984,7 +1986,7 @@ msgstr "" "um pedido de venda.\n" " Mais precisamente, tarefas são criadas para linhas de " "obtenção com o produto do tipo 'Serviço',\n" -" método de obtenção 'Fazer pedido' e método de fornecimento " +" método de aquisição 'No pedido' e método de fornecimento " "'Fabricação'.\n" " O módulo project_mrp será instalado." @@ -2002,7 +2004,7 @@ msgstr "Experimento" #: model:process.transition.action,name:project.process_transition_action_opendrafttask0 #: selection:report.project.task.user,state:0 msgid "Draft" -msgstr "Rascunho" +msgstr "Provisório" #. module: project #: field:project.task,kanban_state:0 @@ -2014,7 +2016,7 @@ msgstr "Situação Kanban" #. module: project #: field:project.config.settings,module_project_timesheet:0 msgid "Record timesheet lines per tasks" -msgstr "Registrar planinha de tempo por tarefa" +msgstr "Registrar planilha de tempo por tarefa" #. module: project #: model:ir.model,name:project.model_report_project_task_user @@ -2084,13 +2086,13 @@ msgstr "Tarefa de Reavaliação" #: code:addons/project/project.py:1305 #, python-format msgid "Please delete the project linked with this account first." -msgstr "Por favor apague o projeto ligado a esta conta primeiro." +msgstr "Por favor exclua o projeto associado a esta conta primeiro." #. module: project #: model:mail.message.subtype,name:project.mt_project_task_new #: model:mail.message.subtype,name:project.mt_task_new msgid "Task Created" -msgstr "" +msgstr "Tarefa Criada" #. module: project #: view:report.project.task.user:0 @@ -2113,7 +2115,7 @@ msgstr "Pronto para o próximo estágio" #. module: project #: field:project.task.type,case_default:0 msgid "Default for New Projects" -msgstr "" +msgstr "Padrão para Novos Projetos" #. module: project #: view:project.task:0 @@ -2160,7 +2162,7 @@ msgstr "" #. module: project #: model:mail.message.subtype,description:project.mt_task_closed msgid "Task closed" -msgstr "" +msgstr "Tarefa fechada" #. module: project #: selection:report.project.task.user,month:0 diff --git a/addons/project/i18n/ro.po b/addons/project/i18n/ro.po index 14b12d23d78..562f9970c2b 100644 --- a/addons/project/i18n/ro.po +++ b/addons/project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index f1c52c3abbe..f52d0591b65 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sk.po b/addons/project/i18n/sk.po index 44f73873c9a..63a0d6826f9 100644 --- a/addons/project/i18n/sk.po +++ b/addons/project/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sl.po b/addons/project/i18n/sl.po index dc11c932761..d42b89c6b9d 100644 --- a/addons/project/i18n/sl.po +++ b/addons/project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sq.po b/addons/project/i18n/sq.po index fe4ffb3c6a3..1c127670354 100644 --- a/addons/project/i18n/sq.po +++ b/addons/project/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:28+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sv.po b/addons/project/i18n/sv.po index 08499b2220e..df9e3fd7892 100644 --- a/addons/project/i18n/sv.po +++ b/addons/project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tlh.po b/addons/project/i18n/tlh.po index 65ef6c345b2..8d9757119da 100644 --- a/addons/project/i18n/tlh.po +++ b/addons/project/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index d6b0611519a..a4647559d0e 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/uk.po b/addons/project/i18n/uk.po index f26cf326c19..b8841907ed8 100644 --- a/addons/project/i18n/uk.po +++ b/addons/project/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/vi.po b/addons/project/i18n/vi.po index acc47ac75df..12f0d613a0c 100644 --- a/addons/project/i18n/vi.po +++ b/addons/project/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index 96883ae7fd3..5686f7cc3e4 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index 576cc979154..91826e5ed95 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project #: view:project.project:0 diff --git a/addons/project_gtd/i18n/ar.po b/addons/project_gtd/i18n/ar.po index 6427406c3e5..b29c163989f 100644 --- a/addons/project_gtd/i18n/ar.po +++ b/addons/project_gtd/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bg.po b/addons/project_gtd/i18n/bg.po index 474a3a57324..4858c75cc12 100644 --- a/addons/project_gtd/i18n/bg.po +++ b/addons/project_gtd/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bs.po b/addons/project_gtd/i18n/bs.po index f2c24471e47..2a8d5b8b12c 100644 --- a/addons/project_gtd/i18n/bs.po +++ b/addons/project_gtd/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ca.po b/addons/project_gtd/i18n/ca.po index b3fdeaa73d0..d9c17ddd72f 100644 --- a/addons/project_gtd/i18n/ca.po +++ b/addons/project_gtd/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/cs.po b/addons/project_gtd/i18n/cs.po index 700f5a2085f..616b5d4d5fb 100644 --- a/addons/project_gtd/i18n/cs.po +++ b/addons/project_gtd/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/da.po b/addons/project_gtd/i18n/da.po index 221110f689c..5586f7636d3 100644 --- a/addons/project_gtd/i18n/da.po +++ b/addons/project_gtd/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index cb466ce675e..342332adde9 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/el.po b/addons/project_gtd/i18n/el.po index 71aedb70360..4e2b03a1e89 100644 --- a/addons/project_gtd/i18n/el.po +++ b/addons/project_gtd/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es.po b/addons/project_gtd/i18n/es.po index 37357ab2b0e..7c19d2a3c38 100644 --- a/addons/project_gtd/i18n/es.po +++ b/addons/project_gtd/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 3a353bd6f8f..a85e38437f2 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_CR.po b/addons/project_gtd/i18n/es_CR.po index 9559e832450..333b2842afa 100644 --- a/addons/project_gtd/i18n/es_CR.po +++ b/addons/project_gtd/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_EC.po b/addons/project_gtd/i18n/es_EC.po index 161f2a65f49..bb8ff47db79 100644 --- a/addons/project_gtd/i18n/es_EC.po +++ b/addons/project_gtd/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/et.po b/addons/project_gtd/i18n/et.po index e8441017d5c..a925b0a3825 100644 --- a/addons/project_gtd/i18n/et.po +++ b/addons/project_gtd/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fi.po b/addons/project_gtd/i18n/fi.po index 511d62433fa..672a8992455 100644 --- a/addons/project_gtd/i18n/fi.po +++ b/addons/project_gtd/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index d76e0422dfd..9adb0749ed5 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/gl.po b/addons/project_gtd/i18n/gl.po index c38857eb94e..cc546ce1a1d 100644 --- a/addons/project_gtd/i18n/gl.po +++ b/addons/project_gtd/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hr.po b/addons/project_gtd/i18n/hr.po index 466adf5c345..a30038091e2 100644 --- a/addons/project_gtd/i18n/hr.po +++ b/addons/project_gtd/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hu.po b/addons/project_gtd/i18n/hu.po index c9459b9ff68..cf77a378d85 100644 --- a/addons/project_gtd/i18n/hu.po +++ b/addons/project_gtd/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/id.po b/addons/project_gtd/i18n/id.po index bb18d608428..a6d92256758 100644 --- a/addons/project_gtd/i18n/id.po +++ b/addons/project_gtd/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/it.po b/addons/project_gtd/i18n/it.po index 9ed62cb392e..37215d2099f 100644 --- a/addons/project_gtd/i18n/it.po +++ b/addons/project_gtd/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ja.po b/addons/project_gtd/i18n/ja.po index df9f9198f02..c8926486d64 100644 --- a/addons/project_gtd/i18n/ja.po +++ b/addons/project_gtd/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ko.po b/addons/project_gtd/i18n/ko.po index 0358d401446..981965e31ef 100644 --- a/addons/project_gtd/i18n/ko.po +++ b/addons/project_gtd/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lt.po b/addons/project_gtd/i18n/lt.po index acb5bf79ac6..3bcf783136f 100644 --- a/addons/project_gtd/i18n/lt.po +++ b/addons/project_gtd/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po index 6c5b61224d7..f1d284f3219 100644 --- a/addons/project_gtd/i18n/lv.po +++ b/addons/project_gtd/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/mn.po b/addons/project_gtd/i18n/mn.po index 3cc5c79a52d..a83d48f38fb 100644 --- a/addons/project_gtd/i18n/mn.po +++ b/addons/project_gtd/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl.po b/addons/project_gtd/i18n/nl.po index cfb5bb94843..b9342b7f996 100644 --- a/addons/project_gtd/i18n/nl.po +++ b/addons/project_gtd/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index e188b60d45c..3f199f27b0a 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pl.po b/addons/project_gtd/i18n/pl.po index 952bf802250..78d577d2a9d 100644 --- a/addons/project_gtd/i18n/pl.po +++ b/addons/project_gtd/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:32+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index 977da626094..b1d8252afa7 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index a8063c5e4e8..a9e7be927cc 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 msgid "In Progress" -msgstr "Em Progresso" +msgstr "Em Andamento" #. module: project_gtd #: view:project.task:0 @@ -127,7 +127,7 @@ msgstr "Local aonde o usuário deve executar a tarefa" #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_empty #: view:project.timebox.empty:0 msgid "Empty Timebox" -msgstr "Período vazio" +msgstr "Timebox Vazia" #. module: project_gtd #: view:project.task:0 @@ -157,7 +157,7 @@ msgstr "Tarefa" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "Add to Timebox" -msgstr "Adicionar ao período" +msgstr "Adicionar ao Timebox" #. module: project_gtd #: field:project.timebox.empty,name:0 @@ -184,7 +184,7 @@ msgstr "Mostrar Contexto" #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill #: view:project.timebox.fill.plan:0 msgid "Plannify Timebox" -msgstr "Período planejado" +msgstr "Planejar Timebox" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_timebox @@ -202,7 +202,7 @@ msgstr "Erro!" #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes #: view:project.gtd.timebox:0 msgid "Timeboxes" -msgstr "Período de tempo" +msgstr "Timeboxes" #. module: project_gtd #: view:project.task:0 @@ -236,7 +236,7 @@ msgstr "Escritório" #: field:project.gtd.context,sequence:0 #: field:project.gtd.timebox,sequence:0 msgid "Sequence" -msgstr "Sequencia" +msgstr "Seqüência" #. module: project_gtd #: view:project.task:0 @@ -246,7 +246,7 @@ msgstr "Mostrar o campo de contexto" #. module: project_gtd #: help:project.gtd.context,sequence:0 msgid "Gives the sequence order when displaying a list of contexts." -msgstr "Fornece a sequencia de ordem quando exibe uma lista de contextos." +msgstr "Fornece a ordem da sequência ao exibir uma lista de contextos." #. module: project_gtd #: view:project.task:0 @@ -256,7 +256,7 @@ msgstr "Mostrar Prazos Finais" #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Timebox Definition" -msgstr "Definição do período" +msgstr "Definição do Timebox" #. module: project_gtd #: view:project.task:0 @@ -266,7 +266,7 @@ msgstr "Caixa de Entrada" #. module: project_gtd #: field:project.timebox.fill.plan,timebox_id:0 msgid "Get from Timebox" -msgstr "Pegando do período" +msgstr "Obter do Timebox" #. module: project_gtd #: view:project.timebox.fill.plan:0 diff --git a/addons/project_gtd/i18n/ro.po b/addons/project_gtd/i18n/ro.po index 78667f591a4..2a81785ac87 100644 --- a/addons/project_gtd/i18n/ro.po +++ b/addons/project_gtd/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ru.po b/addons/project_gtd/i18n/ru.po index c8fe5a772d2..eaff9507b20 100644 --- a/addons/project_gtd/i18n/ru.po +++ b/addons/project_gtd/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sl.po b/addons/project_gtd/i18n/sl.po index 2f406cbbfe5..2620919c64e 100644 --- a/addons/project_gtd/i18n/sl.po +++ b/addons/project_gtd/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sq.po b/addons/project_gtd/i18n/sq.po index 0575ae84e65..58918ec80b1 100644 --- a/addons/project_gtd/i18n/sq.po +++ b/addons/project_gtd/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sv.po b/addons/project_gtd/i18n/sv.po index c4453774626..903813715e5 100644 --- a/addons/project_gtd/i18n/sv.po +++ b/addons/project_gtd/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tlh.po b/addons/project_gtd/i18n/tlh.po index bd22b510d12..35beff5a5ba 100644 --- a/addons/project_gtd/i18n/tlh.po +++ b/addons/project_gtd/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index affed81f131..99f7c5f6f55 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/uk.po b/addons/project_gtd/i18n/uk.po index a5b4ca7dad9..584fa0e2efc 100644 --- a/addons/project_gtd/i18n/uk.po +++ b/addons/project_gtd/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/vi.po b/addons/project_gtd/i18n/vi.po index e0532509614..f71166b2939 100644 --- a/addons/project_gtd/i18n/vi.po +++ b/addons/project_gtd/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index cce6dc6390e..24a8adae86b 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index d2775961dfb..e9a04be4beb 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_issue/i18n/ar.po b/addons/project_issue/i18n/ar.po index a79fa98f9f7..2afba2d2ada 100644 --- a/addons/project_issue/i18n/ar.po +++ b/addons/project_issue/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ca.po b/addons/project_issue/i18n/ca.po index 6b80b5e3c61..1fff69bbedb 100644 --- a/addons/project_issue/i18n/ca.po +++ b/addons/project_issue/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/da.po b/addons/project_issue/i18n/da.po index 80a4ab0e2d3..797cdad1e2f 100644 --- a/addons/project_issue/i18n/da.po +++ b/addons/project_issue/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index 743c47735dd..f55fdc711aa 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index 2cbceaaedfd..d7f910e4d2c 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -50,7 +50,7 @@ msgstr "Horas de trabajo para abrir la incidencia" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started msgid "Issue started" -msgstr "" +msgstr "Incidencia iniciada" #. module: project_issue #: field:project.issue,date_open:0 @@ -99,6 +99,12 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Un estado de kanban de las incidencias indica situaciones especiales que las " +"afectan:\n" +"* 'Normal' es la situación por defecto.\n" +"* 'Bloqueada' indica que algo impide el progreso de la incidencia.\n" +"* 'Lista para la siguiente etapa' indica que la incidencia está lista para " +"ser llevada a la siguiente etapa." #. module: project_issue #: help:project.issue,message_unread:0 @@ -162,7 +168,7 @@ msgstr "Tarea" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_project_issue_stage msgid "Issue Stage Changed" -msgstr "" +msgstr "Estapa de incidencia cambiada" #. module: project_issue #: field:project.issue,message_ids:0 @@ -297,7 +303,7 @@ msgstr "Estadísticas" #. module: project_issue #: field:project.issue,kanban_state:0 msgid "Kanban State" -msgstr "" +msgstr "Estado de kanban" #. module: project_issue #: code:addons/project_issue/project_issue.py:360 @@ -520,7 +526,7 @@ msgstr "Próxima acción" #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Blocked" -msgstr "" +msgstr "Bloqueada" #. module: project_issue #: field:project.issue,user_email:0 @@ -727,7 +733,7 @@ msgstr "Configurar" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_closed msgid "Issue closed" -msgstr "" +msgstr "Incidencia cerrada" #. module: project_issue #: view:project.issue:0 @@ -797,7 +803,7 @@ msgstr "Calculado como: Tiempo dedicado / Tiempo total." #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" -msgstr "" +msgstr "Lista para la siguiente etapa" #. module: project_issue #: view:project.issue.report:0 @@ -853,7 +859,7 @@ msgstr "Parámetros de configuración de proyectos" #: model:mail.message.subtype,name:project_issue.mt_issue_closed #: model:mail.message.subtype,name:project_issue.mt_project_issue_closed msgid "Issue Closed" -msgstr "" +msgstr "Incidencia cerrada" #. module: project_issue #: view:project.issue.report:0 @@ -865,13 +871,13 @@ msgstr "Nº de emails" #: model:mail.message.subtype,name:project_issue.mt_issue_new #: model:mail.message.subtype,name:project_issue.mt_project_issue_new msgid "Issue Created" -msgstr "" +msgstr "Incidencia creada" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_blocked #: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked msgid "Issue Blocked" -msgstr "" +msgstr "Incidencia bloqueada" #. module: project_issue #: selection:project.issue.report,month:0 @@ -882,7 +888,7 @@ msgstr "Febrero" #: model:mail.message.subtype,description:project_issue.mt_issue_stage #: model:mail.message.subtype,description:project_issue.mt_project_issue_stage msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: project_issue #: view:project.issue:0 @@ -951,7 +957,7 @@ msgstr "Referencias" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" -msgstr "" +msgstr "Incidencia creada" #. module: project_issue #: field:project.issue,working_hours_close:0 @@ -966,7 +972,7 @@ msgstr "ID" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_blocked msgid "Issue blocked" -msgstr "" +msgstr "Incidencia bloqueada" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report @@ -986,7 +992,7 @@ msgstr "Horas de trabajo prom. para cerrar" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_stage msgid "Stage Changed" -msgstr "" +msgstr "Etapa cambiada" #. module: project_issue #: selection:project.issue,priority:0 @@ -1019,4 +1025,4 @@ msgstr "Duración" #: model:mail.message.subtype,name:project_issue.mt_issue_started #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" -msgstr "" +msgstr "Incidencia iniciada" diff --git a/addons/project_issue/i18n/es_CR.po b/addons/project_issue/i18n/es_CR.po index 746ce5d72bb..fb579b4c7ba 100644 --- a/addons/project_issue/i18n/es_CR.po +++ b/addons/project_issue/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index c13c24d9ff6..442ef2031f4 100644 --- a/addons/project_issue/i18n/fi.po +++ b/addons/project_issue/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index c01251e4eaa..04b68708f2d 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hr.po b/addons/project_issue/i18n/hr.po index 430a3c8ca5b..d8f6be9dab3 100644 --- a/addons/project_issue/i18n/hr.po +++ b/addons/project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hu.po b/addons/project_issue/i18n/hu.po index 7d41a1e888b..e9c9f8e5bd2 100644 --- a/addons/project_issue/i18n/hu.po +++ b/addons/project_issue/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/it.po b/addons/project_issue/i18n/it.po index 56ba12b94ba..a7f7ba28a63 100644 --- a/addons/project_issue/i18n/it.po +++ b/addons/project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ja.po b/addons/project_issue/i18n/ja.po index de1ace3806a..2dc9198a033 100644 --- a/addons/project_issue/i18n/ja.po +++ b/addons/project_issue/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lt.po b/addons/project_issue/i18n/lt.po index 0e863139355..bcbe7958a4d 100644 --- a/addons/project_issue/i18n/lt.po +++ b/addons/project_issue/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 4ef198a3e4a..3635629bb01 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/mn.po b/addons/project_issue/i18n/mn.po index dacb8814dfc..5c3ca180e8c 100644 --- a/addons/project_issue/i18n/mn.po +++ b/addons/project_issue/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nb.po b/addons/project_issue/i18n/nb.po index 41e8558606b..cdbcbd08888 100644 --- a/addons/project_issue/i18n/nb.po +++ b/addons/project_issue/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nl.po b/addons/project_issue/i18n/nl.po index 5a87e6eee7c..c1a07f22e6b 100644 --- a/addons/project_issue/i18n/nl.po +++ b/addons/project_issue/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:29+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -388,7 +388,7 @@ msgstr "" #: selection:project.issue,state:0 #: view:project.issue.report:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: project_issue #: selection:project.issue.report,month:0 diff --git a/addons/project_issue/i18n/nl_BE.po b/addons/project_issue/i18n/nl_BE.po index c64b6629691..b5fc01e6d08 100644 --- a/addons/project_issue/i18n/nl_BE.po +++ b/addons/project_issue/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pl.po b/addons/project_issue/i18n/pl.po index e5cba8c1627..500b2d82096 100644 --- a/addons/project_issue/i18n/pl.po +++ b/addons/project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt.po b/addons/project_issue/i18n/pt.po index 16f3e56e629..7602b0a906c 100644 --- a/addons/project_issue/i18n/pt.po +++ b/addons/project_issue/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt_BR.po b/addons/project_issue/i18n/pt_BR.po index f799934f91b..a806f2c7cee 100644 --- a/addons/project_issue/i18n/pt_BR.po +++ b/addons/project_issue/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -50,7 +50,7 @@ msgstr "Horas Trabalhadas para Abrir o Incidente" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started msgid "Issue started" -msgstr "" +msgstr "Incidente iniciado" #. module: project_issue #: field:project.issue,date_open:0 @@ -70,7 +70,7 @@ msgstr "Março" #. module: project_issue #: field:project.issue,progress:0 msgid "Progress (%)" -msgstr "Progresso" +msgstr "Progresso (%)" #. module: project_issue #: view:project.issue:0 @@ -99,6 +99,10 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Um painel kanban de incidentes indica situações especiais que a afetam:\n" +"  * Normal é a situação de padrão\n" +"  * Bloqueado indica que algo está impedindo o progresso deste incidente\n" +"  * Pronto indica que o incidente está pronto para ir para a próxima fase" #. module: project_issue #: help:project.issue,message_unread:0 @@ -162,7 +166,7 @@ msgstr "Tarefa" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_project_issue_stage msgid "Issue Stage Changed" -msgstr "" +msgstr "Estágio do Incidente Alterado" #. module: project_issue #: field:project.issue,message_ids:0 @@ -299,7 +303,7 @@ msgstr "Estatísticas" #. module: project_issue #: field:project.issue,kanban_state:0 msgid "Kanban State" -msgstr "" +msgstr "Situação Kanban" #. module: project_issue #: code:addons/project_issue/project_issue.py:360 @@ -373,7 +377,7 @@ msgstr "Incidentes não atribuídos" #: view:project.issue.report:0 #: field:project.issue.report,creation_date:0 msgid "Creation Date" -msgstr "Dt. Criação" +msgstr "Data de Criação" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.project_issue_version_action @@ -394,7 +398,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 msgid "Create issues from an incoming email account " -msgstr "Criar incidentes a partir de uma conta de recebimento de e-mails " +msgstr "Criar incidentes a partir do recebimento de e-mails " #. module: project_issue #: view:project.issue:0 @@ -419,7 +423,7 @@ msgstr "Categorias" #: view:project.issue.report:0 #: field:project.issue.report,stage_id:0 msgid "Stage" -msgstr "Fase" +msgstr "Estágio" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.action_project_issue_report @@ -522,7 +526,7 @@ msgstr "Próxima Ação" #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Blocked" -msgstr "" +msgstr "Bloqueado" #. module: project_issue #: field:project.issue,user_email:0 @@ -589,7 +593,7 @@ msgstr "Pendente" #: field:project.issue,state:0 #: field:project.issue.report,state:0 msgid "Status" -msgstr "Status" +msgstr "Situação" #. module: project_issue #: view:project.issue.report:0 @@ -652,8 +656,8 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" -"A situação é definida como 'Rascunho' quando o caso é criado. Se o caso está " -"em progresso, a situação muda para 'Aberto'. Quando o caso termina, a " +"A situação é definida como 'Provisória' quando o caso é criado. Se o caso " +"está em progresso, a situação muda para 'Aberto'. Quando o caso termina, a " "situação é definida como 'Concluído'. Se o caso precisa ser revisado, a " "situação é definida como 'Pendente'." @@ -729,7 +733,7 @@ msgstr "Configurar" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_closed msgid "Issue closed" -msgstr "" +msgstr "Incidente fechado" #. module: project_issue #: view:project.issue:0 @@ -799,7 +803,7 @@ msgstr "Calculado como: Tempo Gasto / Tempo Total." #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" -msgstr "" +msgstr "Pronto para o próximo estágio" #. module: project_issue #: view:project.issue.report:0 @@ -855,7 +859,7 @@ msgstr "project.config.settings" #: model:mail.message.subtype,name:project_issue.mt_issue_closed #: model:mail.message.subtype,name:project_issue.mt_project_issue_closed msgid "Issue Closed" -msgstr "" +msgstr "Incidente Fechado" #. module: project_issue #: view:project.issue.report:0 @@ -867,13 +871,13 @@ msgstr "Nº de Emails" #: model:mail.message.subtype,name:project_issue.mt_issue_new #: model:mail.message.subtype,name:project_issue.mt_project_issue_new msgid "Issue Created" -msgstr "" +msgstr "Incidente Criado" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_blocked #: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked msgid "Issue Blocked" -msgstr "" +msgstr "Incidente Bloqueado" #. module: project_issue #: selection:project.issue.report,month:0 @@ -884,7 +888,7 @@ msgstr "Fevereiro" #: model:mail.message.subtype,description:project_issue.mt_issue_stage #: model:mail.message.subtype,description:project_issue.mt_project_issue_stage msgid "Stage changed" -msgstr "" +msgstr "Estágio alterado" #. module: project_issue #: view:project.issue:0 @@ -953,7 +957,7 @@ msgstr "Referências" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" -msgstr "" +msgstr "Incidente criado" #. module: project_issue #: field:project.issue,working_hours_close:0 @@ -968,7 +972,7 @@ msgstr "ID" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_blocked msgid "Issue blocked" -msgstr "" +msgstr "Incidente bloqueado" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report @@ -988,7 +992,7 @@ msgstr "Média de Horas Trabalhadas para Fechar" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_stage msgid "Stage Changed" -msgstr "" +msgstr "Estágio Alterado" #. module: project_issue #: selection:project.issue,priority:0 @@ -1021,4 +1025,4 @@ msgstr "Duração" #: model:mail.message.subtype,name:project_issue.mt_issue_started #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" -msgstr "" +msgstr "Incidente Iniciado" diff --git a/addons/project_issue/i18n/ro.po b/addons/project_issue/i18n/ro.po index 855832271e3..59910a53b92 100644 --- a/addons/project_issue/i18n/ro.po +++ b/addons/project_issue/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ru.po b/addons/project_issue/i18n/ru.po index 0b24a452861..373e4ea465e 100644 --- a/addons/project_issue/i18n/ru.po +++ b/addons/project_issue/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index 4e71595be88..dd6974ec308 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-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/sv.po b/addons/project_issue/i18n/sv.po index 37e842bf864..9690e5f9f30 100644 --- a/addons/project_issue/i18n/sv.po +++ b/addons/project_issue/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index 70c3956166a..2c0f56bb70e 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/zh_CN.po b/addons/project_issue/i18n/zh_CN.po index 8d5341ca05c..a2ae3b5b483 100644 --- a/addons/project_issue/i18n/zh_CN.po +++ b/addons/project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue_sheet/i18n/ar.po b/addons/project_issue_sheet/i18n/ar.po index 954fe2ae11e..b507abe84ab 100644 --- a/addons/project_issue_sheet/i18n/ar.po +++ b/addons/project_issue_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ca.po b/addons/project_issue_sheet/i18n/ca.po index 6227b820340..62cb807860f 100644 --- a/addons/project_issue_sheet/i18n/ca.po +++ b/addons/project_issue_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/da.po b/addons/project_issue_sheet/i18n/da.po index 847ed1b51a2..6c89ea886cc 100644 --- a/addons/project_issue_sheet/i18n/da.po +++ b/addons/project_issue_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/de.po b/addons/project_issue_sheet/i18n/de.po index ef6f3e6d17d..95a53a832e2 100644 --- a/addons/project_issue_sheet/i18n/de.po +++ b/addons/project_issue_sheet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es.po b/addons/project_issue_sheet/i18n/es.po index 77c997a6538..3291fa2ef57 100644 --- a/addons/project_issue_sheet/i18n/es.po +++ b/addons/project_issue_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es_CR.po b/addons/project_issue_sheet/i18n/es_CR.po index 3c4bf4bc07f..311b0c114b9 100644 --- a/addons/project_issue_sheet/i18n/es_CR.po +++ b/addons/project_issue_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fi.po b/addons/project_issue_sheet/i18n/fi.po index 8b8f8c6b341..1e2d7d3a848 100644 --- a/addons/project_issue_sheet/i18n/fi.po +++ b/addons/project_issue_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 27ac9015291..e78564610db 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/gl.po b/addons/project_issue_sheet/i18n/gl.po index e81199fad92..b49fe6ce1bc 100644 --- a/addons/project_issue_sheet/i18n/gl.po +++ b/addons/project_issue_sheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hr.po b/addons/project_issue_sheet/i18n/hr.po index c07935de24d..6c27bd856d1 100644 --- a/addons/project_issue_sheet/i18n/hr.po +++ b/addons/project_issue_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hu.po b/addons/project_issue_sheet/i18n/hu.po index 48c8ba6c4a1..3386dd2d58a 100644 --- a/addons/project_issue_sheet/i18n/hu.po +++ b/addons/project_issue_sheet/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/it.po b/addons/project_issue_sheet/i18n/it.po index a8cccf0bc96..46cd0e181e2 100644 --- a/addons/project_issue_sheet/i18n/it.po +++ b/addons/project_issue_sheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ja.po b/addons/project_issue_sheet/i18n/ja.po index 5da9592a15c..efc1d85517e 100644 --- a/addons/project_issue_sheet/i18n/ja.po +++ b/addons/project_issue_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/lv.po b/addons/project_issue_sheet/i18n/lv.po index 05ac5dfd157..6b9961f3d8d 100644 --- a/addons/project_issue_sheet/i18n/lv.po +++ b/addons/project_issue_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/mn.po b/addons/project_issue_sheet/i18n/mn.po index 041ff5e2fcf..90999b3a577 100644 --- a/addons/project_issue_sheet/i18n/mn.po +++ b/addons/project_issue_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/nl.po b/addons/project_issue_sheet/i18n/nl.po index 795acbf1b8e..f60974c8dd3 100644 --- a/addons/project_issue_sheet/i18n/nl.po +++ b/addons/project_issue_sheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pl.po b/addons/project_issue_sheet/i18n/pl.po index 3ed9748ba44..3a9e18cc32b 100644 --- a/addons/project_issue_sheet/i18n/pl.po +++ b/addons/project_issue_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt.po b/addons/project_issue_sheet/i18n/pt.po index 09f2377c693..910997109b9 100644 --- a/addons/project_issue_sheet/i18n/pt.po +++ b/addons/project_issue_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt_BR.po b/addons/project_issue_sheet/i18n/pt_BR.po index f7f53f369ca..f22e942dbf9 100644 --- a/addons/project_issue_sheet/i18n/pt_BR.po +++ b/addons/project_issue_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 @@ -31,12 +31,12 @@ msgstr "Linha Analítica" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_project_issue msgid "Project Issue" -msgstr "Questões do Projeto" +msgstr "Incidente do Projeto" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Linha da Planilhao de Horas" +msgstr "Linha da Planilha de Horas" #. module: project_issue_sheet #: view:project.issue:0 @@ -48,7 +48,7 @@ msgstr "on_change_project(project_id)" #: field:project.issue,analytic_account_id:0 #, python-format msgid "Analytic Account" -msgstr "Conta analítica" +msgstr "Conta Analítica" #. module: project_issue_sheet #: view:project.issue:0 @@ -69,4 +69,4 @@ msgstr "Planilhas de Horas" #. module: project_issue_sheet #: field:hr.analytic.timesheet,issue_id:0 msgid "Issue" -msgstr "Problema" +msgstr "Incidente" diff --git a/addons/project_issue_sheet/i18n/ro.po b/addons/project_issue_sheet/i18n/ro.po index 4a5286324b5..15fc9d70079 100644 --- a/addons/project_issue_sheet/i18n/ro.po +++ b/addons/project_issue_sheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ru.po b/addons/project_issue_sheet/i18n/ru.po index b5b76fca9ed..77414e36022 100644 --- a/addons/project_issue_sheet/i18n/ru.po +++ b/addons/project_issue_sheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/sv.po b/addons/project_issue_sheet/i18n/sv.po index 672c88c44a4..d45e0df7b55 100644 --- a/addons/project_issue_sheet/i18n/sv.po +++ b/addons/project_issue_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/tr.po b/addons/project_issue_sheet/i18n/tr.po index f73460a7eda..c57d24d5b58 100644 --- a/addons/project_issue_sheet/i18n/tr.po +++ b/addons/project_issue_sheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/zh_CN.po b/addons/project_issue_sheet/i18n/zh_CN.po index 705e0391f1a..1377af52273 100644 --- a/addons/project_issue_sheet/i18n/zh_CN.po +++ b/addons/project_issue_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_long_term/i18n/ar.po b/addons/project_long_term/i18n/ar.po index 37844d72163..20e4e88240f 100644 --- a/addons/project_long_term/i18n/ar.po +++ b/addons/project_long_term/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ca.po b/addons/project_long_term/i18n/ca.po index 43b824ca0cb..c19d3e9e332 100644 --- a/addons/project_long_term/i18n/ca.po +++ b/addons/project_long_term/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/da.po b/addons/project_long_term/i18n/da.po index 2e2c52ea96a..84cc0c0da88 100644 --- a/addons/project_long_term/i18n/da.po +++ b/addons/project_long_term/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index 6ba7250b64a..a4c918648e7 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 8cfc82ab666..2dc0ace9df6 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 @@ -41,7 +41,7 @@ msgstr "Fases" #: view:project.phase:0 #: view:project.user.allocation:0 msgid "Team Planning" -msgstr "" +msgstr "Planificación del equipo" #. module: project_long_term #: field:project.phase,user_ids:0 diff --git a/addons/project_long_term/i18n/es_CR.po b/addons/project_long_term/i18n/es_CR.po index 1497881096c..e42bb7491a6 100644 --- a/addons/project_long_term/i18n/es_CR.po +++ b/addons/project_long_term/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_EC.po b/addons/project_long_term/i18n/es_EC.po index f11d08b52ad..1b86aaae2de 100644 --- a/addons/project_long_term/i18n/es_EC.po +++ b/addons/project_long_term/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fi.po b/addons/project_long_term/i18n/fi.po index 9b751f960b5..ef10d3e2bd7 100644 --- a/addons/project_long_term/i18n/fi.po +++ b/addons/project_long_term/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index 60d530db8d6..9d6aa4bc850 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hr.po b/addons/project_long_term/i18n/hr.po index 5f9a82c88d8..79f2b62a7e2 100644 --- a/addons/project_long_term/i18n/hr.po +++ b/addons/project_long_term/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hu.po b/addons/project_long_term/i18n/hu.po index 582e808b928..fbe6d28293e 100644 --- a/addons/project_long_term/i18n/hu.po +++ b/addons/project_long_term/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/it.po b/addons/project_long_term/i18n/it.po index f1dc9b78b02..775a022114f 100644 --- a/addons/project_long_term/i18n/it.po +++ b/addons/project_long_term/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ja.po b/addons/project_long_term/i18n/ja.po index b43842be96c..7710343a131 100644 --- a/addons/project_long_term/i18n/ja.po +++ b/addons/project_long_term/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/lv.po b/addons/project_long_term/i18n/lv.po index 02b5d1fc183..06388b709ac 100644 --- a/addons/project_long_term/i18n/lv.po +++ b/addons/project_long_term/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/mn.po b/addons/project_long_term/i18n/mn.po index d013875f455..0b698f91064 100644 --- a/addons/project_long_term/i18n/mn.po +++ b/addons/project_long_term/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/nl.po b/addons/project_long_term/i18n/nl.po index a20da441262..a986e8db14d 100644 --- a/addons/project_long_term/i18n/nl.po +++ b/addons/project_long_term/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pl.po b/addons/project_long_term/i18n/pl.po index dcfdc00882f..ad8f92b5114 100644 --- a/addons/project_long_term/i18n/pl.po +++ b/addons/project_long_term/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index cfc52064768..e86609f5471 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt_BR.po b/addons/project_long_term/i18n/pt_BR.po index 5cffffc74c2..a86cce875f9 100644 --- a/addons/project_long_term/i18n/pt_BR.po +++ b/addons/project_long_term/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 @@ -41,7 +41,7 @@ msgstr "Fases" #: view:project.phase:0 #: view:project.user.allocation:0 msgid "Team Planning" -msgstr "" +msgstr "Planejamento de Equipe" #. module: project_long_term #: field:project.phase,user_ids:0 @@ -91,12 +91,12 @@ msgstr "Planejar Fases" #: view:project.phase:0 #: field:project.phase,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: project_long_term #: field:project.compute.phases,target_project:0 msgid "Action" -msgstr "" +msgstr "Ação" #. module: project_long_term #: view:project.phase:0 @@ -117,7 +117,7 @@ msgstr "Provisório" #: view:project.compute.phases:0 #: view:project.compute.tasks:0 msgid "C_ompute" -msgstr "C_alcular" +msgstr "(o) Calcular" #. module: project_long_term #: view:project.phase:0 @@ -128,7 +128,7 @@ msgstr "Novo" #. module: project_long_term #: field:project.phase,product_uom:0 msgid "Duration Unit of Measure" -msgstr "" +msgstr "Duração da Unidade de Medida" #. module: project_long_term #: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar_leaves @@ -155,7 +155,7 @@ msgstr "Fases em Progresso" #: code:addons/project_long_term/project_long_term.py:140 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: project_long_term #: code:addons/project_long_term/wizard/project_compute_phases.py:48 @@ -183,23 +183,25 @@ msgstr "Data Inicial Mínima" #: help:project.phase,product_uom:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Duration" -msgstr "" +msgstr "Unidade de Medida (UdM) é a unidade de medida para Duração" #. module: project_long_term #: help:project.phase,user_ids:0 msgid "" "The resources on the project can be computed automatically by the scheduler." msgstr "" +"Os recursos sobre o projeto podem ser calculados automaticamente pelo " +"agendador." #. module: project_long_term #: field:project.phase,sequence:0 msgid "Sequence" -msgstr "Sequência" +msgstr "Seqüência" #. module: project_long_term #: help:account.analytic.account,use_phases:0 msgid "Check this field if you plan to use phase-based scheduling" -msgstr "" +msgstr "Marque esta caixa se você deseja usar o agendamento baseado em fases" #. module: project_long_term #: help:project.phase,state:0 @@ -210,6 +212,10 @@ msgid "" " \n" " If the phase is over, the status is set to 'Done'." msgstr "" +"Quando a fase é criada a situação é 'Provisória'.\n" +"Quando a fase é iniciada, o situação muda para 'Em andamento'.\n" +"Se for necessário uma revisão na fase a situação fica como 'Pendente'.\n" +"Quando a fase termina, a situação fica como 'Concluído'." #. module: project_long_term #: field:project.phase,progress:0 @@ -315,7 +321,7 @@ msgstr "Detalhes das Tarefas" #. module: project_long_term #: field:project.project,phase_count:0 msgid "Open Phases" -msgstr "" +msgstr "Fases Abertas" #. module: project_long_term #: help:project.phase,date_end:0 @@ -412,7 +418,7 @@ msgstr "Dá a ordem da seqüência ao exibir uma lista de fases." #. module: project_long_term #: model:ir.actions.act_window,name:project_long_term.project_phase_task_list msgid "Tasks" -msgstr "" +msgstr "Tarefas" #. module: project_long_term #: help:project.user.allocation,date_end:0 @@ -457,7 +463,7 @@ msgstr "Mês" #. module: project_long_term #: model:ir.model,name:project_long_term.model_account_analytic_account msgid "Analytic Account" -msgstr "" +msgstr "Conta Analítica" #. module: project_long_term #: field:project.phase,constraint_date_end:0 @@ -512,4 +518,4 @@ msgstr "Nome" #: view:project.compute.phases:0 #: view:project.compute.tasks:0 msgid "or" -msgstr "" +msgstr "ou" diff --git a/addons/project_long_term/i18n/ro.po b/addons/project_long_term/i18n/ro.po index d19e2d5c0e9..84781b2c6dd 100644 --- a/addons/project_long_term/i18n/ro.po +++ b/addons/project_long_term/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ru.po b/addons/project_long_term/i18n/ru.po index 10f163f605b..ae2cfb38b05 100644 --- a/addons/project_long_term/i18n/ru.po +++ b/addons/project_long_term/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/sv.po b/addons/project_long_term/i18n/sv.po index 6458da694a9..494e1d36724 100644 --- a/addons/project_long_term/i18n/sv.po +++ b/addons/project_long_term/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/tr.po b/addons/project_long_term/i18n/tr.po index be5be728ae8..069c13681c7 100644 --- a/addons/project_long_term/i18n/tr.po +++ b/addons/project_long_term/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/zh_CN.po b/addons/project_long_term/i18n/zh_CN.po index a1da6499e61..48b056907e5 100644 --- a/addons/project_long_term/i18n/zh_CN.po +++ b/addons/project_long_term/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_mrp/i18n/ar.po b/addons/project_mrp/i18n/ar.po index 4e02f31bdb9..0f3ed526c3c 100644 --- a/addons/project_mrp/i18n/ar.po +++ b/addons/project_mrp/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bg.po b/addons/project_mrp/i18n/bg.po index e21c07dc177..ae17777726d 100644 --- a/addons/project_mrp/i18n/bg.po +++ b/addons/project_mrp/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bs.po b/addons/project_mrp/i18n/bs.po index 48771e339cd..479e75e4009 100644 --- a/addons/project_mrp/i18n/bs.po +++ b/addons/project_mrp/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ca.po b/addons/project_mrp/i18n/ca.po index 29085cb05db..2f7f3b78d7d 100644 --- a/addons/project_mrp/i18n/ca.po +++ b/addons/project_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/cs.po b/addons/project_mrp/i18n/cs.po index 8994018b1b3..5ae49dba639 100644 --- a/addons/project_mrp/i18n/cs.po +++ b/addons/project_mrp/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-01 05:19+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Poedit-Language: Czech\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/da.po b/addons/project_mrp/i18n/da.po index da168c4647e..0d795cf9c93 100644 --- a/addons/project_mrp/i18n/da.po +++ b/addons/project_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/de.po b/addons/project_mrp/i18n/de.po index 0ff7e0cba02..7a8e578b215 100644 --- a/addons/project_mrp/i18n/de.po +++ b/addons/project_mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/el.po b/addons/project_mrp/i18n/el.po index d402086e5ba..a6ced061e6d 100644 --- a/addons/project_mrp/i18n/el.po +++ b/addons/project_mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es.po b/addons/project_mrp/i18n/es.po index 1339407e179..eabb842e2a4 100644 --- a/addons/project_mrp/i18n/es.po +++ b/addons/project_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 @@ -36,7 +36,7 @@ msgstr "Tarea creada" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 msgid "In case you sell services on sales order" -msgstr "" +msgstr "En caso de que vendas servicios en el pedido de venta" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_mrptask0 @@ -51,7 +51,7 @@ msgstr "Producto" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_saleordertask0 msgid "Sales Order Task" -msgstr "" +msgstr "Tareas del pedido de venta" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 @@ -71,7 +71,7 @@ msgstr "Tarea abastecimiento" #. module: project_mrp #: field:procurement.order,sale_line_id:0 msgid "Sales order line" -msgstr "" +msgstr "Línea del pedido de venta" #. module: project_mrp #: model:ir.model,name:project_mrp.model_project_task @@ -90,6 +90,8 @@ msgid "" " in the project related to the contract of the sales " "order." msgstr "" +"será creado para seguir la tarea a realizar. Esta tarea aparecerá en el " +"proyecto relacionado con el contrato del pedido de venta." #. module: project_mrp #: view:product.product:0 @@ -128,7 +130,7 @@ msgstr "" #. module: project_mrp #: field:project.task,sale_line_id:0 msgid "Sales Order Line" -msgstr "" +msgstr "Línea del pedido de venta" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index 19e84c7fe9a..64ae7678892 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_CR.po b/addons/project_mrp/i18n/es_CR.po index 5c198b61abf..103c311874f 100644 --- a/addons/project_mrp/i18n/es_CR.po +++ b/addons/project_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_EC.po b/addons/project_mrp/i18n/es_EC.po index 355899ebe1f..316f91e3db9 100644 --- a/addons/project_mrp/i18n/es_EC.po +++ b/addons/project_mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/et.po b/addons/project_mrp/i18n/et.po index 0c6d1d28b38..537d036d830 100644 --- a/addons/project_mrp/i18n/et.po +++ b/addons/project_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fi.po b/addons/project_mrp/i18n/fi.po index 377d28e5d0f..378c072d912 100644 --- a/addons/project_mrp/i18n/fi.po +++ b/addons/project_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fr.po b/addons/project_mrp/i18n/fr.po index 588602c46de..29e70222c75 100644 --- a/addons/project_mrp/i18n/fr.po +++ b/addons/project_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gl.po b/addons/project_mrp/i18n/gl.po index 05f7f93da3e..62209fbf03b 100644 --- a/addons/project_mrp/i18n/gl.po +++ b/addons/project_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gu.po b/addons/project_mrp/i18n/gu.po index ea41195b7e7..27d87e1746f 100644 --- a/addons/project_mrp/i18n/gu.po +++ b/addons/project_mrp/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hr.po b/addons/project_mrp/i18n/hr.po index d77827923bb..455b130e2ae 100644 --- a/addons/project_mrp/i18n/hr.po +++ b/addons/project_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hu.po b/addons/project_mrp/i18n/hu.po index 140ad8816d3..02f4dc3d72c 100644 --- a/addons/project_mrp/i18n/hu.po +++ b/addons/project_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/id.po b/addons/project_mrp/i18n/id.po index 448d37fd727..b23ad3ad80f 100644 --- a/addons/project_mrp/i18n/id.po +++ b/addons/project_mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/it.po b/addons/project_mrp/i18n/it.po index e85b4ddf060..3d819e89b9b 100644 --- a/addons/project_mrp/i18n/it.po +++ b/addons/project_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ja.po b/addons/project_mrp/i18n/ja.po index 27695279e41..734a9826d0d 100644 --- a/addons/project_mrp/i18n/ja.po +++ b/addons/project_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ko.po b/addons/project_mrp/i18n/ko.po index 2c1feeff150..0a668daab1c 100644 --- a/addons/project_mrp/i18n/ko.po +++ b/addons/project_mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lt.po b/addons/project_mrp/i18n/lt.po index 3e61503286c..8bb9d0cdc9d 100644 --- a/addons/project_mrp/i18n/lt.po +++ b/addons/project_mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lv.po b/addons/project_mrp/i18n/lv.po index 46121c8b35e..ceda20a099d 100644 --- a/addons/project_mrp/i18n/lv.po +++ b/addons/project_mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/mn.po b/addons/project_mrp/i18n/mn.po index bb1873abe10..5d0ea6caded 100644 --- a/addons/project_mrp/i18n/mn.po +++ b/addons/project_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nb.po b/addons/project_mrp/i18n/nb.po index 18b788f3d58..817900a8fb4 100644 --- a/addons/project_mrp/i18n/nb.po +++ b/addons/project_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl.po b/addons/project_mrp/i18n/nl.po index 6ad7c7c4fd9..c1686dda7a8 100644 --- a/addons/project_mrp/i18n/nl.po +++ b/addons/project_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index 0d609379f66..7755591deda 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pl.po b/addons/project_mrp/i18n/pl.po index 554d8ab5d76..ba33005f1e8 100644 --- a/addons/project_mrp/i18n/pl.po +++ b/addons/project_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pt.po b/addons/project_mrp/i18n/pt.po index 198a34854ce..4c95557efc0 100644 --- a/addons/project_mrp/i18n/pt.po +++ b/addons/project_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index 303e207bf18..31d10accc88 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 @@ -25,23 +25,23 @@ msgstr "Para cada produto, no tipo serviço e na ordem" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_createtask0 msgid "Product type is service, then its creates the task." -msgstr "Tipo de produto é serviço, então isto cria a tarefa." +msgstr "O tipo de produto é serviço, então isto cria uma tarefa." #. module: project_mrp #: code:addons/project_mrp/project_procurement.py:92 #, python-format msgid "Task created" -msgstr "" +msgstr "Tarefa criada" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 msgid "In case you sell services on sales order" -msgstr "" +msgstr "Caso você venda serviços no pedido de venda" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_mrptask0 msgid "A task is created to provide the service." -msgstr "Uma tarefa é criada para prover o serviço." +msgstr "Uma tarefa é criada para fornecer o serviço." #. module: project_mrp #: model:ir.model,name:project_mrp.model_product_product @@ -51,12 +51,12 @@ msgstr "Produto" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_saleordertask0 msgid "Sales Order Task" -msgstr "" +msgstr "Tarefa no Pedido de Venda" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 msgid "if product type is 'service' then it creates the task." -msgstr "Se o tipo de produto é 'serviço' então isto cria a tarefa" +msgstr "Se o tipo de produto é 'serviço' então isto cria uma tarefa" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_ordertask0 @@ -66,12 +66,12 @@ msgstr "Ordem de Tarefa" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_procuretask0 msgid "Procurement Task" -msgstr "Taréfa de Aquisição" +msgstr "Aquisição da Tarefa" #. module: project_mrp #: field:procurement.order,sale_line_id:0 msgid "Sales order line" -msgstr "" +msgstr "Linha do pedido de vendas" #. module: project_mrp #: model:ir.model,name:project_mrp.model_project_task @@ -90,11 +90,16 @@ msgid "" " in the project related to the contract of the sales " "order." msgstr "" +"será\n" +"                         criado para acompanhar o trabalho a ser feito. Esta " +"tarefa será exibida\n" +"                         no projeto relacionado com o contrato do pedido de " +"vendas." #. module: project_mrp #: view:product.product:0 msgid "When you sell this service to a customer," -msgstr "" +msgstr "Quando você vender este serviço a um cliente," #. module: project_mrp #: field:product.product,project_id:0 @@ -110,13 +115,13 @@ msgstr "Aquisição" #. module: project_mrp #: view:product.product:0 msgid "False" -msgstr "" +msgstr "Falso" #. module: project_mrp #: code:addons/project_mrp/project_procurement.py:86 #, python-format msgid "Task created." -msgstr "" +msgstr "Tarefa criada." #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_ordertask0 @@ -128,7 +133,7 @@ msgstr "" #. module: project_mrp #: field:project.task,sale_line_id:0 msgid "Sales Order Line" -msgstr "" +msgstr "Linha do Pedido de Vendas" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 @@ -143,9 +148,9 @@ msgstr "Pedido de Venda" #. module: project_mrp #: view:project.task:0 msgid "Order Line" -msgstr "" +msgstr "Linha do Pedido" #. module: project_mrp #: view:product.product:0 msgid "a task" -msgstr "" +msgstr "uma tarefa" diff --git a/addons/project_mrp/i18n/ro.po b/addons/project_mrp/i18n/ro.po index 3498df12ec9..5db160dde3f 100644 --- a/addons/project_mrp/i18n/ro.po +++ b/addons/project_mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ru.po b/addons/project_mrp/i18n/ru.po index 12e6010de74..aedaf94038c 100644 --- a/addons/project_mrp/i18n/ru.po +++ b/addons/project_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sl.po b/addons/project_mrp/i18n/sl.po index 52f5a1605f0..7aa125b36fc 100644 --- a/addons/project_mrp/i18n/sl.po +++ b/addons/project_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sq.po b/addons/project_mrp/i18n/sq.po index d982d1e4ce9..34c682a26cc 100644 --- a/addons/project_mrp/i18n/sq.po +++ b/addons/project_mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sv.po b/addons/project_mrp/i18n/sv.po index 0ba1c7750cb..ec83b007718 100644 --- a/addons/project_mrp/i18n/sv.po +++ b/addons/project_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tlh.po b/addons/project_mrp/i18n/tlh.po index 98d7dec8ca9..e012ebb6838 100644 --- a/addons/project_mrp/i18n/tlh.po +++ b/addons/project_mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tr.po b/addons/project_mrp/i18n/tr.po index a78f92b46be..8860cee2ff8 100644 --- a/addons/project_mrp/i18n/tr.po +++ b/addons/project_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/uk.po b/addons/project_mrp/i18n/uk.po index 03a58a650b5..dc3e4371e62 100644 --- a/addons/project_mrp/i18n/uk.po +++ b/addons/project_mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/vi.po b/addons/project_mrp/i18n/vi.po index b5ae356be48..0e6908c52c0 100644 --- a/addons/project_mrp/i18n/vi.po +++ b/addons/project_mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index 85a28707cc7..eb4c5224aa6 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index 92743adb320..a73d5167a4a 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_timesheet/i18n/ar.po b/addons/project_timesheet/i18n/ar.po index 468258960f4..f145be7d25d 100644 --- a/addons/project_timesheet/i18n/ar.po +++ b/addons/project_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bg.po b/addons/project_timesheet/i18n/bg.po index 86a4ecd9b3a..a2d99634748 100644 --- a/addons/project_timesheet/i18n/bg.po +++ b/addons/project_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bs.po b/addons/project_timesheet/i18n/bs.po index de61ebb3076..9cb1587122e 100644 --- a/addons/project_timesheet/i18n/bs.po +++ b/addons/project_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ca.po b/addons/project_timesheet/i18n/ca.po index 97acad72d6c..68cf4b8a501 100644 --- a/addons/project_timesheet/i18n/ca.po +++ b/addons/project_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/cs.po b/addons/project_timesheet/i18n/cs.po index 35a7ba8b1c0..9e785995d1b 100644 --- a/addons/project_timesheet/i18n/cs.po +++ b/addons/project_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/da.po b/addons/project_timesheet/i18n/da.po index 7d130f97e28..50b0945348f 100644 --- a/addons/project_timesheet/i18n/da.po +++ b/addons/project_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index ba06209e8aa..0fad7828dc7 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/el.po b/addons/project_timesheet/i18n/el.po index 6b26453f56a..1db5e41bed5 100644 --- a/addons/project_timesheet/i18n/el.po +++ b/addons/project_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es.po b/addons/project_timesheet/i18n/es.po index 19989a6a255..31153ebb318 100644 --- a/addons/project_timesheet/i18n/es.po +++ b/addons/project_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -340,7 +340,7 @@ msgstr "Facturación" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_triggerinvoice0 msgid "Trigger invoices from sales order lines" -msgstr "" +msgstr "Lanzar facturas desde las líneas de pedido de venta" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:100 @@ -373,7 +373,7 @@ msgstr "Trabajar en tarea" #: model:ir.actions.act_window,name:project_timesheet.action_project_timesheet_bill_task #: model:ir.ui.menu,name:project_timesheet.menu_project_billing_line msgid "Invoice Tasks" -msgstr "" +msgstr "Facturar tareas" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_report_timesheet_task_user diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 615146c4d08..db9a64374bf 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es_CR.po b/addons/project_timesheet/i18n/es_CR.po index c4b146d1a80..dde52a679c6 100644 --- a/addons/project_timesheet/i18n/es_CR.po +++ b/addons/project_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/et.po b/addons/project_timesheet/i18n/et.po index ae78badab49..d26bf64baf3 100644 --- a/addons/project_timesheet/i18n/et.po +++ b/addons/project_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fi.po b/addons/project_timesheet/i18n/fi.po index d484d14ddbb..35ca75f20fc 100644 --- a/addons/project_timesheet/i18n/fi.po +++ b/addons/project_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fr.po b/addons/project_timesheet/i18n/fr.po index 3b484fa267b..8288e9f5bd1 100644 --- a/addons/project_timesheet/i18n/fr.po +++ b/addons/project_timesheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/gl.po b/addons/project_timesheet/i18n/gl.po index 8f6d3f08820..0dc992440ce 100644 --- a/addons/project_timesheet/i18n/gl.po +++ b/addons/project_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hr.po b/addons/project_timesheet/i18n/hr.po index 552db7e0d07..ecf7cd2373a 100644 --- a/addons/project_timesheet/i18n/hr.po +++ b/addons/project_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hu.po b/addons/project_timesheet/i18n/hu.po index 1e7cb4cec9b..bb606e94f1e 100644 --- a/addons/project_timesheet/i18n/hu.po +++ b/addons/project_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -25,7 +25,7 @@ msgstr "Feladatok felhasználó szerint" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid "Group by year of date" -msgstr "" +msgstr "Csoportosítás év szerint" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 @@ -44,6 +44,8 @@ msgid "" "You cannot delete a partner which is assigned to project, but you can " "uncheck the active box." msgstr "" +"Nem törölhet olyan partnert aki hozzá van rendelve egy projekthez, de az " +"aktív négyzet jelölését törölheti." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_project_task_work @@ -56,6 +58,8 @@ msgstr "Projektfeladat munka" msgid "" "You cannot select a Analytic Account which is in Close or Cancelled state." msgstr "" +"Nem választhat olyan analitikai/Gyűjtő számlát amelyik zárt vagy " +"érvénytelenített." #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -72,12 +76,12 @@ msgstr "Október" #: view:project.project:0 #, python-format msgid "Timesheets" -msgstr "" +msgstr "Munkaidő kimutatások" #. module: project_timesheet #: view:project.project:0 msgid "Billable" -msgstr "" +msgstr "Számlázható" #. module: project_timesheet #: model:ir.actions.act_window,help:project_timesheet.action_account_analytic_overdue @@ -90,11 +94,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson ügyfél hozzáadásához.\n" +"

\n" +" Itt megtalálja az ügyfél projektjeihez tartozó " +"szerződéseket\n" +" a számlázási folyamatok követéséhez.\n" +"

\n" +" " #. module: project_timesheet #: view:account.analytic.line:0 msgid "Analytic Account/Project" -msgstr "" +msgstr "Analitikus&Gyüjtő számlák/Projektek" #. module: project_timesheet #: view:account.analytic.line:0 @@ -104,7 +116,7 @@ msgstr "Gyűjtőkód/projekt" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_account_analytic_overdue msgid "Customer Projects" -msgstr "" +msgstr "Ügyfél projektek" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:89 @@ -114,11 +126,14 @@ msgid "" "employee.\n" "Fill in the HR Settings tab of the employee form." msgstr "" +"Kérem határozzon meg termék és termék kategória jellemzői számlát az ide " +"vonatkozó munkavállaló részére.\n" +"A HR beállítás tábla részét töltse ki a munkavállaló részleteinél." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Gyűjtőkód tétel" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 @@ -147,6 +162,8 @@ msgid "" "Please define journal on the related employee.\n" "Fill in the timesheet tab of the employee form." msgstr "" +"Kérem határozzon meg jelentést a kapcsolódó munkavállalóhoz.\n" +"A munkavállaló időkimutatás tábláját töltse ki." #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_hr_timesheet_sign_in @@ -156,22 +173,22 @@ msgstr "Projektbe bejelentkezés/kijelentkezés" #. module: project_timesheet #: view:project.project:0 msgid "Billable Project" -msgstr "" +msgstr "Számlázandó projekt" #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_invoicing_contracts msgid "Contracts to Renew" -msgstr "" +msgstr "Megújítandó szerződések" #. module: project_timesheet #: view:project.project:0 msgid "Hours" -msgstr "" +msgstr "Órák" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid "Group by month of date" -msgstr "" +msgstr "Csoportosítás hónap szerint" #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_project_task @@ -221,6 +238,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Időkimutatásokat és beszerzéseket talál itt, olyan " +"beszerzésekre melyek a szerződések alapján \n" +" átszámlázhatóak a megrendelőnek.\n" +" Ha szeretne új munkát rögzíteni a számlára, akkor ahhoz " +"inkább az időkimutatás menüt használja.\n" +"

\n" +" " #. module: project_timesheet #: model:process.node,name:project_timesheet.process_node_timesheettask0 @@ -282,6 +307,8 @@ msgstr "Annak berögzítése, hogy mennyi időt fordított Ön a feladatra." #, python-format msgid "Please define employee for user \"%s\". You must create one." msgstr "" +"Kérem munkavállaló meghatározását ehhez a felhasználóhoz \"%s\". Létre kell " +"hoznia egyet." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_res_partner @@ -292,7 +319,7 @@ msgstr "Partner" #: code:addons/project_timesheet/project_timesheet.py:294 #, python-format msgid "Invalid Analytic Account !" -msgstr "" +msgstr "Nem létező analitikus/gyüjtű számla!" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -316,7 +343,7 @@ msgstr "Számlázás" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_triggerinvoice0 msgid "Trigger invoices from sales order lines" -msgstr "" +msgstr "A vevői rendelések sorai alapján készítsen számlát" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:100 @@ -326,6 +353,9 @@ msgid "" "employee.\n" "Fill in the timesheet tab of the employee form." msgstr "" +"Kérem határozzon meg termék és termék kategória jellemzői számlát az ide " +"vonatkozó munkavállaló részére.\n" +"A időkimutatás táblát töltse ki a munkavállaló részleteinél." #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:60 @@ -334,6 +364,8 @@ msgid "" "

Timesheets on this project may be invoiced to %s, according to the terms " "defined in the contract.

" msgstr "" +"

Ennek a projektnek az időkimutatásai számlázhatóak lehetnek ehhez %s, a " +"meghatározott szerződési feltételeknek megfelelően.

" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_taskwork0 @@ -344,7 +376,7 @@ msgstr "Feladaton lévő munka" #: model:ir.actions.act_window,name:project_timesheet.action_project_timesheet_bill_task #: model:ir.ui.menu,name:project_timesheet.menu_project_billing_line msgid "Invoice Tasks" -msgstr "" +msgstr "Számlázási feladatok" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_report_timesheet_task_user @@ -372,7 +404,7 @@ msgstr "A feladat befejezése után hozza létre annak számláját is." #: code:addons/project_timesheet/project_timesheet.py:266 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Érvénytelen lépés!" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -387,6 +419,8 @@ msgid "" "

Record your timesheets for the project " "'%s'.

" msgstr "" +"

Rögzítsen időkimutatást a projekthez " +"'%s'.

" #. module: project_timesheet #: field:report.timesheet.task.user,timesheet_hrs:0 diff --git a/addons/project_timesheet/i18n/id.po b/addons/project_timesheet/i18n/id.po index 37c8414a072..0a95e39e2ac 100644 --- a/addons/project_timesheet/i18n/id.po +++ b/addons/project_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/it.po b/addons/project_timesheet/i18n/it.po index e60a6e634be..16061a2ed7c 100644 --- a/addons/project_timesheet/i18n/it.po +++ b/addons/project_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ja.po b/addons/project_timesheet/i18n/ja.po index c2606813983..92ad2702c24 100644 --- a/addons/project_timesheet/i18n/ja.po +++ b/addons/project_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ko.po b/addons/project_timesheet/i18n/ko.po index 353df81d7af..1fec910df19 100644 --- a/addons/project_timesheet/i18n/ko.po +++ b/addons/project_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lt.po b/addons/project_timesheet/i18n/lt.po index e43b7705a62..2ef46df9322 100644 --- a/addons/project_timesheet/i18n/lt.po +++ b/addons/project_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lv.po b/addons/project_timesheet/i18n/lv.po index 79902ae5094..e4e64abc4c0 100644 --- a/addons/project_timesheet/i18n/lv.po +++ b/addons/project_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/mn.po b/addons/project_timesheet/i18n/mn.po index 38ba91e5164..cff829f8977 100644 --- a/addons/project_timesheet/i18n/mn.po +++ b/addons/project_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl.po b/addons/project_timesheet/i18n/nl.po index b4da7f4b9a2..a58206d8320 100644 --- a/addons/project_timesheet/i18n/nl.po +++ b/addons/project_timesheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index 8578f6a0de5..4e215c1e2df 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pl.po b/addons/project_timesheet/i18n/pl.po index d188660e015..feaa75f9425 100644 --- a/addons/project_timesheet/i18n/pl.po +++ b/addons/project_timesheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pt.po b/addons/project_timesheet/i18n/pt.po index 0cb20643104..e478559901e 100644 --- a/addons/project_timesheet/i18n/pt.po +++ b/addons/project_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index ebe521d54fc..e996a5016a4 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -111,7 +111,7 @@ msgstr "Conta Analítica/Projeto" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Analytic account/project" -msgstr "Conta Analítica/Projeto" +msgstr "Conta analítica/projeto" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_account_analytic_overdue @@ -126,9 +126,9 @@ msgid "" "employee.\n" "Fill in the HR Settings tab of the employee form." msgstr "" -"Por favor defina produto e propriedades da conta de produto no colaborador " +"Por favor defina produto e propriedades da conta de produto no funcionário " "relacionado.\n" -"Preencha na aba de Configurações de RH do formulário do colaborador." +"Preencha na aba de Configurações de RH do formulário do funcionário." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_account_analytic_line @@ -162,8 +162,8 @@ msgid "" "Please define journal on the related employee.\n" "Fill in the timesheet tab of the employee form." msgstr "" -"Por favor informe o diário no colaborador relacionado\n" -"Preencha na aba de apontamento de horas no formulário do colaborador." +"Por favor informe o diário no funcionário relacionado\n" +"Preencha na aba de apontamento de horas no formulário do funcionário." #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_hr_timesheet_sign_in @@ -215,7 +215,7 @@ msgstr "Julho" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_timesheettask0 msgid "Complete Your Timesheet." -msgstr "Complete sua Planilha de Tempo" +msgstr "Complete sua Planilha de Horas" #. module: project_timesheet #: field:report.timesheet.task.user,task_hrs:0 @@ -305,7 +305,7 @@ msgstr "Codifique quanto tempo você gastou em sua tarefa" #: code:addons/project_timesheet/project_timesheet.py:85 #, python-format msgid "Please define employee for user \"%s\". You must create one." -msgstr "Defina um colaborador para o usuário \"%s\". Você deve criá-lo." +msgstr "Crie um funcionário para o usuário \"%s\"." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_res_partner @@ -340,7 +340,7 @@ msgstr "Faturamento" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_triggerinvoice0 msgid "Trigger invoices from sales order lines" -msgstr "" +msgstr "Disparar faturas das linhas de pedido de vendas" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:100 @@ -350,6 +350,9 @@ msgid "" "employee.\n" "Fill in the timesheet tab of the employee form." msgstr "" +"Por favor, defina o produto e a conta da categoria de produto no funcionário " +"relacionado.\n" +"Preencha a aba da planilha de de horás no formulário do funcionário." #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:60 @@ -370,7 +373,7 @@ msgstr "Trabalho na Tarefa" #: model:ir.actions.act_window,name:project_timesheet.action_project_timesheet_bill_task #: model:ir.ui.menu,name:project_timesheet.menu_project_billing_line msgid "Invoice Tasks" -msgstr "" +msgstr "Faturar Tarefas" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_report_timesheet_task_user @@ -392,7 +395,7 @@ msgstr "Dezembro" #. module: project_timesheet #: model:process.transition,note:project_timesheet.process_transition_taskinvoice0 msgid "After task is completed, Create its invoice." -msgstr "Depois da tarefa concluída, Criar sua nota fiscal" +msgstr "Depois da tarefa concluída, Criar as faturas" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:266 diff --git a/addons/project_timesheet/i18n/ro.po b/addons/project_timesheet/i18n/ro.po index 62e5757f208..cc4e4ff6161 100644 --- a/addons/project_timesheet/i18n/ro.po +++ b/addons/project_timesheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ru.po b/addons/project_timesheet/i18n/ru.po index 28c17c9f3e6..7e42f18a231 100644 --- a/addons/project_timesheet/i18n/ru.po +++ b/addons/project_timesheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sl.po b/addons/project_timesheet/i18n/sl.po index c97f1612875..2f60173fdb7 100644 --- a/addons/project_timesheet/i18n/sl.po +++ b/addons/project_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sq.po b/addons/project_timesheet/i18n/sq.po index e7856fe090e..598defcd63b 100644 --- a/addons/project_timesheet/i18n/sq.po +++ b/addons/project_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sv.po b/addons/project_timesheet/i18n/sv.po index 969bc73e010..dc33d20b3d9 100644 --- a/addons/project_timesheet/i18n/sv.po +++ b/addons/project_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tlh.po b/addons/project_timesheet/i18n/tlh.po index 620ab5cfff6..839616cfdb8 100644 --- a/addons/project_timesheet/i18n/tlh.po +++ b/addons/project_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tr.po b/addons/project_timesheet/i18n/tr.po index c4ef5e77e6e..e25d226de93 100644 --- a/addons/project_timesheet/i18n/tr.po +++ b/addons/project_timesheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/uk.po b/addons/project_timesheet/i18n/uk.po index 8333281d636..a1983af50d0 100644 --- a/addons/project_timesheet/i18n/uk.po +++ b/addons/project_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/vi.po b/addons/project_timesheet/i18n/vi.po index e1ac34dc017..d7ee49fc3c0 100644 --- a/addons/project_timesheet/i18n/vi.po +++ b/addons/project_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index f2711765d69..72c740e66f3 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index c45daee9a83..4a8abf28411 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/purchase/i18n/ar.po b/addons/purchase/i18n/ar.po index 7a5c5e6f9bc..600e583dcfe 100644 --- a/addons/purchase/i18n/ar.po +++ b/addons/purchase/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bg.po b/addons/purchase/i18n/bg.po index 8ff8dcefa2e..fa06ed3bfe4 100644 --- a/addons/purchase/i18n/bg.po +++ b/addons/purchase/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bs.po b/addons/purchase/i18n/bs.po index 03c5144bb1d..814027d23f4 100644 --- a/addons/purchase/i18n/bs.po +++ b/addons/purchase/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ca.po b/addons/purchase/i18n/ca.po index 29d83938afe..5c1572da953 100644 --- a/addons/purchase/i18n/ca.po +++ b/addons/purchase/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/cs.po b/addons/purchase/i18n/cs.po index 70bbb73fa15..2bb2ec739a8 100644 --- a/addons/purchase/i18n/cs.po +++ b/addons/purchase/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/da.po b/addons/purchase/i18n/da.po index 8d342cd9e96..393839b7c58 100644 --- a/addons/purchase/i18n/da.po +++ b/addons/purchase/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/de.po b/addons/purchase/i18n/de.po index 53d62183dba..9e1870ae9b6 100644 --- a/addons/purchase/i18n/de.po +++ b/addons/purchase/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/el.po b/addons/purchase/i18n/el.po index 61918ccbc39..80f6d0e5446 100644 --- a/addons/purchase/i18n/el.po +++ b/addons/purchase/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/en_GB.po b/addons/purchase/i18n/en_GB.po index 70daee76891..5ed5c322814 100644 --- a/addons/purchase/i18n/en_GB.po +++ b/addons/purchase/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es.po b/addons/purchase/i18n/es.po index cf2b8afff93..e2e786049cc 100644 --- a/addons/purchase/i18n/es.po +++ b/addons/purchase/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -111,7 +111,7 @@ msgstr "" #: code:addons/purchase/purchase.py:1024 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "¡Error de configuración!" #. module: purchase #: code:addons/purchase/purchase.py:587 @@ -136,7 +136,7 @@ msgstr "Precio compra-estándar" #: code:addons/purchase/purchase.py:1011 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "¡No se ha definido un proveedor para este producto!" #. module: purchase #: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice @@ -356,6 +356,8 @@ msgid "" "The product \"%s\" has been defined with your company as reseller which " "seems to be a configuration error!" msgstr "" +"¡El producto \"%s\" ha sido definido con su compañía como distribuidor, lo " +"que debe ser un error de configuración!" #. module: purchase #: view:product.product:0 @@ -485,7 +487,7 @@ msgstr "Fecha planificada" #. module: purchase #: field:purchase.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Moneda" #. module: purchase #: field:purchase.order,journal_id:0 @@ -522,7 +524,7 @@ msgstr "Productos a recibir" #. module: purchase #: view:purchase.order:0 msgid "Request for Quotation " -msgstr "" +msgstr "Solicitud de presupuesto " #. module: purchase #: help:purchase.order,partner_ref:0 @@ -531,6 +533,10 @@ msgid "" "used to do the matching when you receive the products as this reference is " "usually written on the delivery order sent by your supplier." msgstr "" +"Referencia del pedido de venta o presupuesto enviado a su proveedor. Se usa " +"principalmente para casar documentos cuando recibe los productos, ya que " +"esta referencia se suele escribir en la orden de entrega enviada por su " +"proveedor." #. module: purchase #: view:purchase.config.settings:0 @@ -558,7 +564,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_approved msgid "RFQ Approved" -msgstr "" +msgstr "SdP aprobada" #. module: purchase #: view:purchase.config.settings:0 @@ -583,7 +589,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_confirmed msgid "RFQ Confirmed" -msgstr "" +msgstr "SdP confirmada" #. module: purchase #: view:purchase.order:0 @@ -689,6 +695,9 @@ msgid "" "A Pick list generates an invoice. Depending on the Invoicing control of the " "sales order, the invoice is based on delivered or on ordered quantities." msgstr "" +"Un albarán genera una factura. Dependiendo del control de facturación del " +"pedido de venta, la factura está basada en la cantidad entregada o en la del " +"pedido." #. module: purchase #: view:purchase.report:0 @@ -828,7 +837,7 @@ msgstr "El importe de los impuestos." #. module: purchase #: field:purchase.order,shipped_rate:0 msgid "Received Ratio" -msgstr "" +msgstr "Proporción recibida" #. module: purchase #: selection:purchase.report,month:0 @@ -1093,6 +1102,82 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hola ${object.partner_id.name},

\n" +" \n" +"

Aquí tiene ${object.state in ('draft', 'sent') 'una solicitud de " +"presupuesto' or 'la confirmación del pedido de compra'} de " +"${object.company_id.name}:

\n" +" \n" +"

\n" +"   REFERENCIAS
\n" +"   Nº de pedido: ${object.name}
\n" +"   Total del pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Fecha del pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referencia del pedido: ${object.origin}
\n" +" % endif\n" +" % if object.partner_ref:\n" +"   Su referencia: ${object.partner_ref}
\n" +" % endif\n" +" % if object.validator:\n" +"   Su contacto: ${object.validator.name}\n" +" % endif\n" +"

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

Si tiene alguna pregunta, no dude en contactarnos.

\n" +"

¡Gracias!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: purchase #: view:purchase.report:0 @@ -1166,7 +1251,7 @@ msgstr "" #. module: purchase #: view:purchase.order.line_invoice:0 msgid "Select an Open Sales Order" -msgstr "" +msgstr "Seleccione un pedido de venta abierto" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase @@ -1240,6 +1325,8 @@ msgid "" "Reference of the document that generated this purchase order request; a " "sales order or an internal procurement request." msgstr "" +"Referencia del documento que generó esta solicitud de pedido de compra; un " +"pedido de venta o una petición interna de abastecimiento." #. module: purchase #: view:purchase.order.line:0 @@ -1795,7 +1882,7 @@ msgstr "Abrir menú 'Compras'" #: code:addons/purchase/purchase.py:1028 #, python-format msgid "No address defined for the supplier" -msgstr "" +msgstr "No se ha definido una dirección para el proveedor" #. module: purchase #: field:purchase.order,company_id:0 @@ -2218,7 +2305,7 @@ msgstr "Basado en envíos entrantes" #: code:addons/purchase/purchase.py:1018 #, python-format msgid "No default supplier defined for this product" -msgstr "" +msgstr "No hay definido ningún proveedor por defecto para este producto" #. module: purchase #: view:purchase.report:0 @@ -2327,7 +2414,7 @@ msgstr "Versiones de tarifa" #. module: purchase #: field:purchase.order,payment_term_id:0 msgid "Payment Term" -msgstr "" +msgstr "Plazo de pago" #. module: purchase #: view:purchase.order:0 diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index 07b68fb6fac..e6b27b65ac5 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CL.po b/addons/purchase/i18n/es_CL.po index ea294d1d945..a37205c0ce9 100644 --- a/addons/purchase/i18n/es_CL.po +++ b/addons/purchase/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CR.po b/addons/purchase/i18n/es_CR.po index 30e761453ad..a8d9beb960a 100644 --- a/addons/purchase/i18n/es_CR.po +++ b/addons/purchase/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_EC.po b/addons/purchase/i18n/es_EC.po index 190dc972fff..ae19fba3f5d 100644 --- a/addons/purchase/i18n/es_EC.po +++ b/addons/purchase/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/et.po b/addons/purchase/i18n/et.po index b048da2dd8c..964ff59688d 100644 --- a/addons/purchase/i18n/et.po +++ b/addons/purchase/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/fi.po b/addons/purchase/i18n/fi.po index 5d31d1820fb..c10285e01c5 100644 --- a/addons/purchase/i18n/fi.po +++ b/addons/purchase/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/fr.po b/addons/purchase/i18n/fr.po index 6a8b8c878b5..e7e6bff3e58 100644 --- a/addons/purchase/i18n/fr.po +++ b/addons/purchase/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/gl.po b/addons/purchase/i18n/gl.po index 8112db27a94..5ebcd81600b 100644 --- a/addons/purchase/i18n/gl.po +++ b/addons/purchase/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hr.po b/addons/purchase/i18n/hr.po index 1a7150d809e..7d1da09536f 100644 --- a/addons/purchase/i18n/hr.po +++ b/addons/purchase/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hu.po b/addons/purchase/i18n/hu.po index 0159de8afd5..5269d8841f5 100644 --- a/addons/purchase/i18n/hu.po +++ b/addons/purchase/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/id.po b/addons/purchase/i18n/id.po index 5adb51b5447..a415363b142 100644 --- a/addons/purchase/i18n/id.po +++ b/addons/purchase/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/it.po b/addons/purchase/i18n/it.po index 17f07a26ca9..831eae0c90e 100644 --- a/addons/purchase/i18n/it.po +++ b/addons/purchase/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ja.po b/addons/purchase/i18n/ja.po index 7fba78f0f8a..270d1a142e2 100644 --- a/addons/purchase/i18n/ja.po +++ b/addons/purchase/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ko.po b/addons/purchase/i18n/ko.po index bd9cd03adb7..6974d6e9354 100644 --- a/addons/purchase/i18n/ko.po +++ b/addons/purchase/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lt.po b/addons/purchase/i18n/lt.po index de1437f96a2..c2fc9e741c8 100644 --- a/addons/purchase/i18n/lt.po +++ b/addons/purchase/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lv.po b/addons/purchase/i18n/lv.po index 86a75815075..3b6444c8b44 100644 --- a/addons/purchase/i18n/lv.po +++ b/addons/purchase/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/mn.po b/addons/purchase/i18n/mn.po index c35f88149ed..363b14924dd 100644 --- a/addons/purchase/i18n/mn.po +++ b/addons/purchase/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nb.po b/addons/purchase/i18n/nb.po index 498e5b4222b..b32afcb78c0 100644 --- a/addons/purchase/i18n/nb.po +++ b/addons/purchase/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl.po b/addons/purchase/i18n/nl.po index d1023aa7b05..6190541d87d 100644 --- a/addons/purchase/i18n/nl.po +++ b/addons/purchase/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:51+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index 1876bb3b405..8594a0fc133 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pl.po b/addons/purchase/i18n/pl.po index 5c3e9b18a31..4aba9673d67 100644 --- a/addons/purchase/i18n/pl.po +++ b/addons/purchase/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -112,7 +112,7 @@ msgstr "" #: code:addons/purchase/purchase.py:1024 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Błąd konfiguracji!" #. module: purchase #: code:addons/purchase/purchase.py:587 @@ -135,7 +135,7 @@ msgstr "Zakup - cena standardowa" #: code:addons/purchase/purchase.py:1011 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "Nie zdefiniowano dostawcy dla tego produktu!" #. module: purchase #: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice @@ -487,7 +487,7 @@ msgstr "Zaplanowana data" #. module: purchase #: field:purchase.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Waluta" #. module: purchase #: field:purchase.order,journal_id:0 @@ -524,7 +524,7 @@ msgstr "Produkty przychodzące" #. module: purchase #: view:purchase.order:0 msgid "Request for Quotation " -msgstr "" +msgstr "Zapytanie ofertowe " #. module: purchase #: help:purchase.order,partner_ref:0 @@ -533,6 +533,9 @@ msgid "" "used to do the matching when you receive the products as this reference is " "usually written on the delivery order sent by your supplier." msgstr "" +"Odnośnik zamówienia sprzedaży lub oferty twojego dostawcy. Stosowane głównie " +"do kojarzenia z nimi przyjęć, bo w dokumentach wysyłki dostawcy ten numer " +"powinien być podany." #. module: purchase #: view:purchase.config.settings:0 @@ -560,7 +563,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_approved msgid "RFQ Approved" -msgstr "" +msgstr "Zapytanie ofertowe aprobowane." #. module: purchase #: view:purchase.config.settings:0 @@ -584,7 +587,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_confirmed msgid "RFQ Confirmed" -msgstr "" +msgstr "Zapytanie ofertowe potwierdzone" #. module: purchase #: view:purchase.order:0 @@ -830,7 +833,7 @@ msgstr "Kwota podatku" #. module: purchase #: field:purchase.order,shipped_rate:0 msgid "Received Ratio" -msgstr "" +msgstr "Współczynnik pobranych" #. module: purchase #: selection:purchase.report,month:0 @@ -939,7 +942,7 @@ msgstr "Stosuj wiele kont analitycznych na zamówieniu" #. module: purchase #: view:product.product:0 msgid "will be created in order to subcontract the job" -msgstr "" +msgstr "będzie utworzone jako podwykonanie zadania" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_line_product_tree @@ -1169,7 +1172,7 @@ msgstr "" #. module: purchase #: view:purchase.order.line_invoice:0 msgid "Select an Open Sales Order" -msgstr "" +msgstr "Wybierz otwarte zamówienia sprzedaży" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase @@ -1790,7 +1793,7 @@ msgstr "Otwórz menu Zakupów" #: code:addons/purchase/purchase.py:1028 #, python-format msgid "No address defined for the supplier" -msgstr "" +msgstr "Nie zdefiniowano adresu dla dostawcy" #. module: purchase #: field:purchase.order,company_id:0 @@ -2191,7 +2194,7 @@ msgstr "Na podstawie przyjęć" #: code:addons/purchase/purchase.py:1018 #, python-format msgid "No default supplier defined for this product" -msgstr "" +msgstr "Brak dostawcy dla tego produktu." #. module: purchase #: view:purchase.report:0 @@ -2298,7 +2301,7 @@ msgstr "Wersje cennika" #. module: purchase #: field:purchase.order,payment_term_id:0 msgid "Payment Term" -msgstr "" +msgstr "Warunki płatności" #. module: purchase #: view:purchase.order:0 diff --git a/addons/purchase/i18n/pt.po b/addons/purchase/i18n/pt.po index dbc615feed5..7e674f07748 100644 --- a/addons/purchase/i18n/pt.po +++ b/addons/purchase/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -1450,7 +1450,7 @@ msgstr "" #. module: purchase #: report:purchase.quotation:0 msgid "TVA:" -msgstr "IVA" +msgstr "Nº Contribuinte :" #. module: purchase #: help:purchase.order,picking_ids:0 diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index db0d1cbcf34..7a9f10e2bc8 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -112,7 +112,7 @@ msgstr "" #: code:addons/purchase/purchase.py:1024 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erro de Configuração!" #. module: purchase #: code:addons/purchase/purchase.py:587 @@ -137,7 +137,7 @@ msgstr "Preço Padrão de Compra" #: code:addons/purchase/purchase.py:1011 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "Nenhum fornecedor definido para este produto!" #. module: purchase #: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice @@ -361,6 +361,8 @@ msgid "" "The product \"%s\" has been defined with your company as reseller which " "seems to be a configuration error!" msgstr "" +"O produto \"%s\" foi definido em sua empresa como um revendedor o que parece " +"ser um erro de configuração!" #. module: purchase #: view:product.product:0 @@ -493,7 +495,7 @@ msgstr "Data Programada" #. module: purchase #: field:purchase.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Moeda" #. module: purchase #: field:purchase.order,journal_id:0 @@ -530,7 +532,7 @@ msgstr "Recebimentos de Produtos" #. module: purchase #: view:purchase.order:0 msgid "Request for Quotation " -msgstr "" +msgstr "Solicitar Cotação " #. module: purchase #: help:purchase.order,partner_ref:0 @@ -539,6 +541,10 @@ msgid "" "used to do the matching when you receive the products as this reference is " "usually written on the delivery order sent by your supplier." msgstr "" +"Referência do pedido de venda ou cotação enviada pelo seu fornecedor. É " +"usado principalmente para fazer a correspondência quando você recebe os " +"produtos já que essa referência é geralmente escrita na nota de entrega " +"enviada pelo seu fornecedor." #. module: purchase #: view:purchase.config.settings:0 @@ -566,7 +572,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_approved msgid "RFQ Approved" -msgstr "" +msgstr "RFQ Aprovada" #. module: purchase #: view:purchase.config.settings:0 @@ -590,7 +596,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_confirmed msgid "RFQ Confirmed" -msgstr "" +msgstr "RFQ Confirmada" #. module: purchase #: view:purchase.order:0 @@ -698,6 +704,9 @@ msgid "" "A Pick list generates an invoice. Depending on the Invoicing control of the " "sales order, the invoice is based on delivered or on ordered quantities." msgstr "" +"Uma lista de separação gera uma fatura. Dependendo do controle de " +"faturamento no pedido de venda, a fatura é gerada com base em entregas ou em " +"quantidades encomendadas." #. module: purchase #: view:purchase.report:0 @@ -838,7 +847,7 @@ msgstr "O valor do Imposto" #. module: purchase #: field:purchase.order,shipped_rate:0 msgid "Received Ratio" -msgstr "" +msgstr "Proporção Recebida" #. module: purchase #: selection:purchase.report,month:0 @@ -1103,6 +1112,83 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Olá ${object.partner_id.name},

\n" +" \n" +"

Aqui está o ${object.state in ('draft', 'sent') and 'request for " +"quotation' or 'purchase order confirmation'} from ${object.company_id.name}: " +"

\n" +" \n" +"

\n" +"   REFERENCIA
\n" +"   Número do pedido: ${object.name}
\n" +"   Total do pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Data do pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referência do pedido: ${object.origin}
\n" +" % endif\n" +" % if object.partner_ref:\n" +"   Sua referência: ${object.partner_ref}
\n" +" % endif\n" +" % if object.validator:\n" +"   Seu contato: ${object.validator.name}\n" +" % endif\n" +"

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

Se você tiver alguma dúvida, não deixe de entrar em contato " +"conosco.

\n" +"

Obrigado!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: purchase #: view:purchase.report:0 @@ -1178,7 +1264,7 @@ msgstr "" #. module: purchase #: view:purchase.order.line_invoice:0 msgid "Select an Open Sales Order" -msgstr "" +msgstr "Escolha um Pedido de Vendas Aberto" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase @@ -1252,6 +1338,8 @@ msgid "" "Reference of the document that generated this purchase order request; a " "sales order or an internal procurement request." msgstr "" +"Referência do documento que gerou essa solicitação de pedido de compra; um " +"pedido de venda ou uma solicitação de aquisição interna." #. module: purchase #: view:purchase.order.line:0 @@ -1810,7 +1898,7 @@ msgstr "Abrir Menu de Compras" #: code:addons/purchase/purchase.py:1028 #, python-format msgid "No address defined for the supplier" -msgstr "" +msgstr "Nenhum endereço definido para o fornecedor" #. module: purchase #: field:purchase.order,company_id:0 @@ -2233,7 +2321,7 @@ msgstr "Baseado em recebimentos" #: code:addons/purchase/purchase.py:1018 #, python-format msgid "No default supplier defined for this product" -msgstr "" +msgstr "Nenhum fornecedor padrão definido para este produto" #. module: purchase #: view:purchase.report:0 @@ -2341,7 +2429,7 @@ msgstr "Versões da lista" #. module: purchase #: field:purchase.order,payment_term_id:0 msgid "Payment Term" -msgstr "" +msgstr "Condições de Pagamento" #. module: purchase #: view:purchase.order:0 diff --git a/addons/purchase/i18n/ro.po b/addons/purchase/i18n/ro.po index e497a36f049..06518610e45 100644 --- a/addons/purchase/i18n/ro.po +++ b/addons/purchase/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ru.po b/addons/purchase/i18n/ru.po index 41701ce75e0..77bc5b98e56 100644 --- a/addons/purchase/i18n/ru.po +++ b/addons/purchase/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -81,7 +81,7 @@ msgstr "Если установлено, новые сообщения треб #: model:process.node,name:purchase.process_node_packinglist0 #: model:process.node,name:purchase.process_node_productrecept0 msgid "Incoming Products" -msgstr "Поступающие ТМЦ" +msgstr "Поступающие товары" #. module: purchase #: view:purchase.order:0 @@ -106,7 +106,7 @@ msgstr "" #: code:addons/purchase/purchase.py:1024 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Ошибка конфигурации!" #. module: purchase #: code:addons/purchase/purchase.py:587 @@ -131,7 +131,7 @@ msgstr "Стандартная цена закупки" #: code:addons/purchase/purchase.py:1011 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "Не задан поставщик для этого товара!" #. module: purchase #: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice @@ -294,7 +294,7 @@ msgstr "Июнь" #. module: purchase #: model:ir.model,name:purchase.model_purchase_report msgid "Purchases Orders" -msgstr "Заказы закупки" +msgstr "Заказы закупок" #. module: purchase #: help:account.config.settings,group_analytic_account_for_purchases:0 @@ -376,7 +376,7 @@ msgstr "Метод контроля счетов по умолчанию" #: model:ir.ui.menu,name:purchase.menu_action_picking_tree4 #: view:purchase.order:0 msgid "Incoming Shipments" -msgstr "Поступающие ТМЦ" +msgstr "Поступающие грузы" #. module: purchase #: model:ir.actions.act_window,help:purchase.act_res_partner_2_supplier_invoices @@ -443,7 +443,7 @@ msgstr "Запланированная дата" #. module: purchase #: field:purchase.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Валюта" #. module: purchase #: field:purchase.order,journal_id:0 @@ -464,7 +464,7 @@ msgstr "Резервирование" #. module: purchase #: view:purchase.order:0 msgid "Purchase orders that include lines not invoiced." -msgstr "Заказы закупки, которые имеют позиции не указанные в счетах." +msgstr "Заказы закупок, которые имеют позиции не указанные в счетах." #. module: purchase #: view:product.product:0 @@ -480,7 +480,7 @@ msgstr "Входящие товары" #. module: purchase #: view:purchase.order:0 msgid "Request for Quotation " -msgstr "" +msgstr "Запрос цен " #. module: purchase #: help:purchase.order,partner_ref:0 @@ -516,7 +516,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_approved msgid "RFQ Approved" -msgstr "" +msgstr "ЗЦ утвержден" #. module: purchase #: view:purchase.config.settings:0 @@ -540,7 +540,7 @@ msgstr "" #. module: purchase #: model:mail.message.subtype,name:purchase.mt_rfq_confirmed msgid "RFQ Confirmed" -msgstr "" +msgstr "ЗЦ подтвержден" #. module: purchase #: view:purchase.order:0 @@ -1184,6 +1184,8 @@ msgid "" "Reference of the document that generated this purchase order request; a " "sales order or an internal procurement request." msgstr "" +"Ссылка на документ, который создал этот заказ закупки,заказ продажи или " +"внутренний запрос снабжения." #. module: purchase #: view:purchase.order.line:0 @@ -1417,7 +1419,7 @@ msgstr "ЗЗ: %s" #. module: purchase #: view:purchase.order:0 msgid "Send by EMail" -msgstr "" +msgstr "Отправить по эл. почте" #. module: purchase #: code:addons/purchase/purchase.py:515 @@ -1547,7 +1549,7 @@ msgstr "Продавец утвердил заказ закупки" #: view:res.partner:0 #, python-format msgid "Purchase Orders" -msgstr "Заказы закупки" +msgstr "Заказы закупок" #. module: purchase #: field:purchase.order,origin:0 @@ -1704,7 +1706,7 @@ msgstr "Открыть меню закупок" #: code:addons/purchase/purchase.py:1028 #, python-format msgid "No address defined for the supplier" -msgstr "" +msgstr "Нет адреса поставщика" #. module: purchase #: field:purchase.order,company_id:0 @@ -1816,7 +1818,7 @@ msgstr "№ заказа закупки" #. module: purchase #: model:ir.model,name:purchase.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Мастер составления эл. почты" #. module: purchase #: report:purchase.quotation:0 @@ -2104,7 +2106,7 @@ msgstr "На основании поступающих грузов" #: code:addons/purchase/purchase.py:1018 #, python-format msgid "No default supplier defined for this product" -msgstr "" +msgstr "Для товара не определен поставщик по умолчанию" #. module: purchase #: view:purchase.report:0 @@ -2211,12 +2213,12 @@ msgstr "Версии прайс-листов" #. module: purchase #: field:purchase.order,payment_term_id:0 msgid "Payment Term" -msgstr "" +msgstr "Условие оплаты" #. module: purchase #: view:purchase.order:0 msgid "Purchase orders which are in draft state" -msgstr "Заказы закупки находящиеся в состоянии \"Черновик\"" +msgstr "Заказы закупок находящиеся в состоянии \"Черновик\"" #. module: purchase #: view:purchase.report:0 diff --git a/addons/purchase/i18n/sk.po b/addons/purchase/i18n/sk.po index a2adb354625..395062d3fee 100644 --- a/addons/purchase/i18n/sk.po +++ b/addons/purchase/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sl.po b/addons/purchase/i18n/sl.po index b02eb7e0da2..5db48a6d518 100644 --- a/addons/purchase/i18n/sl.po +++ b/addons/purchase/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:32+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sq.po b/addons/purchase/i18n/sq.po index ee6f48ea769..71eea3e037c 100644 --- a/addons/purchase/i18n/sq.po +++ b/addons/purchase/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:30+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr.po b/addons/purchase/i18n/sr.po index 22861ed18cb..603ae158abb 100644 --- a/addons/purchase/i18n/sr.po +++ b/addons/purchase/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr@latin.po b/addons/purchase/i18n/sr@latin.po index 2d7f6c46fba..4a214704fe6 100644 --- a/addons/purchase/i18n/sr@latin.po +++ b/addons/purchase/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sv.po b/addons/purchase/i18n/sv.po index 1b585a8b8b4..1298a9015b4 100644 --- a/addons/purchase/i18n/sv.po +++ b/addons/purchase/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/th.po b/addons/purchase/i18n/th.po index 18d9c2f955d..ac2ddcd4b00 100644 --- a/addons/purchase/i18n/th.po +++ b/addons/purchase/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tlh.po b/addons/purchase/i18n/tlh.po index 49d02a863f5..b27f8561a04 100644 --- a/addons/purchase/i18n/tlh.po +++ b/addons/purchase/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tr.po b/addons/purchase/i18n/tr.po index f91ba6b15ad..476c35a9097 100644 --- a/addons/purchase/i18n/tr.po +++ b/addons/purchase/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/uk.po b/addons/purchase/i18n/uk.po index 27f5f7cb20f..bae16d13b64 100644 --- a/addons/purchase/i18n/uk.po +++ b/addons/purchase/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/vi.po b/addons/purchase/i18n/vi.po index fe72df8486c..f6ad4d89594 100644 --- a/addons/purchase/i18n/vi.po +++ b/addons/purchase/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index 41c5f5a7379..2c30e70981e 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -501,6 +501,7 @@ msgid "" "used to do the matching when you receive the products as this reference is " "usually written on the delivery order sent by your supplier." msgstr "" +"你的供应商发给你的销售订单或询价单的参考单号。主要用于当您收到货物时,供应商有可能会把这个参考号写在他们的发货清单上,此时你可以用它来进行单号对照。" #. module: purchase #: view:purchase.config.settings:0 @@ -651,7 +652,7 @@ msgstr "发票和入库单" msgid "" "A Pick list generates an invoice. Depending on the Invoicing control of the " "sales order, the invoice is based on delivered or on ordered quantities." -msgstr "" +msgstr "一个发货单产生一张发票。这取决于销售订单的发票控制方式:发票可以根据发货数量或订购数量来生成。" #. module: purchase #: view:purchase.report:0 @@ -1052,6 +1053,81 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

您好,$ ${object.partner_id.name}:

\n" +" \n" +"

这是一份${object.state in ('draft', 'sent') and '询价请求' or " +"'采购确认'},来自于${object.company_id.name}:

\n" +" \n" +"

\n" +"   参考信息
\n" +"   订单号:${object.name}
\n" +"   订单总价:${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   订单日期:${object.date_order}
\n" +" % if object.origin:\n" +"   订单号:${object.origin}
\n" +" % endif\n" +" % if object.partner_ref:\n" +"   您的参考号:${object.partner_ref}
\n" +" % endif\n" +" % if object.validator:\n" +"   您的联系人:${object.validator.name}\n" +" % endif\n" +"

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

如果您有任何问题,请立即联系我们。

\n" +"

非常感谢!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: purchase #: view:purchase.report:0 @@ -1189,7 +1265,7 @@ msgstr "设为草稿" msgid "" "Reference of the document that generated this purchase order request; a " "sales order or an internal procurement request." -msgstr "" +msgstr "请求创建此采购单的来源单据参考号;一个销售单或内部物料需求请求。" #. module: purchase #: view:purchase.order.line:0 diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index adc27c59eb0..e652b04dd0f 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase_analytic_plans/i18n/ar.po b/addons/purchase_analytic_plans/i18n/ar.po index 58cac08d228..1854ed48df6 100644 --- a/addons/purchase_analytic_plans/i18n/ar.po +++ b/addons/purchase_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bg.po b/addons/purchase_analytic_plans/i18n/bg.po index 1d4fdfb5be0..93f67956cb9 100644 --- a/addons/purchase_analytic_plans/i18n/bg.po +++ b/addons/purchase_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bs.po b/addons/purchase_analytic_plans/i18n/bs.po index 432e4241c4f..036b6a817da 100644 --- a/addons/purchase_analytic_plans/i18n/bs.po +++ b/addons/purchase_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ca.po b/addons/purchase_analytic_plans/i18n/ca.po index f0f772e6002..fe81c96add3 100644 --- a/addons/purchase_analytic_plans/i18n/ca.po +++ b/addons/purchase_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/cs.po b/addons/purchase_analytic_plans/i18n/cs.po index caa5869a500..c3e274859b0 100644 --- a/addons/purchase_analytic_plans/i18n/cs.po +++ b/addons/purchase_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/da.po b/addons/purchase_analytic_plans/i18n/da.po index adb93d84d10..4d2fa2163fe 100644 --- a/addons/purchase_analytic_plans/i18n/da.po +++ b/addons/purchase_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index b70222412eb..8c08867637d 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/el.po b/addons/purchase_analytic_plans/i18n/el.po index a6d2c95d556..b7ff977ecea 100644 --- a/addons/purchase_analytic_plans/i18n/el.po +++ b/addons/purchase_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es.po b/addons/purchase_analytic_plans/i18n/es.po index 2a1a36146c3..7ef83e10f37 100644 --- a/addons/purchase_analytic_plans/i18n/es.po +++ b/addons/purchase_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index b51a66a00a4..f5a80a5f503 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_CR.po b/addons/purchase_analytic_plans/i18n/es_CR.po index 26a0f2b0ff2..97d521bf43e 100644 --- a/addons/purchase_analytic_plans/i18n/es_CR.po +++ b/addons/purchase_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/et.po b/addons/purchase_analytic_plans/i18n/et.po index 6e32162ea16..21a5de8ea21 100644 --- a/addons/purchase_analytic_plans/i18n/et.po +++ b/addons/purchase_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fi.po b/addons/purchase_analytic_plans/i18n/fi.po index 7790ef77b1d..0b9b8bf0db2 100644 --- a/addons/purchase_analytic_plans/i18n/fi.po +++ b/addons/purchase_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fr.po b/addons/purchase_analytic_plans/i18n/fr.po index 72ab31a424c..2c10e044b7e 100644 --- a/addons/purchase_analytic_plans/i18n/fr.po +++ b/addons/purchase_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/gl.po b/addons/purchase_analytic_plans/i18n/gl.po index 8c2574e3756..6f130509082 100644 --- a/addons/purchase_analytic_plans/i18n/gl.po +++ b/addons/purchase_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hr.po b/addons/purchase_analytic_plans/i18n/hr.po index ab382412010..7fb471965ee 100644 --- a/addons/purchase_analytic_plans/i18n/hr.po +++ b/addons/purchase_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hu.po b/addons/purchase_analytic_plans/i18n/hu.po index 472b7270e7b..64df086f9a2 100644 --- a/addons/purchase_analytic_plans/i18n/hu.po +++ b/addons/purchase_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/id.po b/addons/purchase_analytic_plans/i18n/id.po index 0f6e2cfaa7b..854e332416f 100644 --- a/addons/purchase_analytic_plans/i18n/id.po +++ b/addons/purchase_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/it.po b/addons/purchase_analytic_plans/i18n/it.po index 294432a666e..bb489fe9901 100644 --- a/addons/purchase_analytic_plans/i18n/it.po +++ b/addons/purchase_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ja.po b/addons/purchase_analytic_plans/i18n/ja.po index 198d66784e3..16dfc769c51 100644 --- a/addons/purchase_analytic_plans/i18n/ja.po +++ b/addons/purchase_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ko.po b/addons/purchase_analytic_plans/i18n/ko.po index 67a276061ac..98918c6b21e 100644 --- a/addons/purchase_analytic_plans/i18n/ko.po +++ b/addons/purchase_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/lt.po b/addons/purchase_analytic_plans/i18n/lt.po index 15a1514a1ea..307d284a438 100644 --- a/addons/purchase_analytic_plans/i18n/lt.po +++ b/addons/purchase_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/mn.po b/addons/purchase_analytic_plans/i18n/mn.po index 63fedcc621f..b16ac9abc5e 100644 --- a/addons/purchase_analytic_plans/i18n/mn.po +++ b/addons/purchase_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl.po b/addons/purchase_analytic_plans/i18n/nl.po index f5e9a00d021..2b5dd53cb3a 100644 --- a/addons/purchase_analytic_plans/i18n/nl.po +++ b/addons/purchase_analytic_plans/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index b8fe575495e..4ebf170c19e 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pl.po b/addons/purchase_analytic_plans/i18n/pl.po index a7fb6b43460..aaf032b169a 100644 --- a/addons/purchase_analytic_plans/i18n/pl.po +++ b/addons/purchase_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt.po b/addons/purchase_analytic_plans/i18n/pt.po index c8583ac4f92..ba63101cb05 100644 --- a/addons/purchase_analytic_plans/i18n/pt.po +++ b/addons/purchase_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index b216d48ef86..e803428004b 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ro.po b/addons/purchase_analytic_plans/i18n/ro.po index 9036e8fb698..24da9c8a4df 100644 --- a/addons/purchase_analytic_plans/i18n/ro.po +++ b/addons/purchase_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ru.po b/addons/purchase_analytic_plans/i18n/ru.po index 1dd70894140..a99c0ea0a99 100644 --- a/addons/purchase_analytic_plans/i18n/ru.po +++ b/addons/purchase_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sl.po b/addons/purchase_analytic_plans/i18n/sl.po index 88c70118947..9391159d4a0 100644 --- a/addons/purchase_analytic_plans/i18n/sl.po +++ b/addons/purchase_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sq.po b/addons/purchase_analytic_plans/i18n/sq.po index 5aebe778bb6..2f113352c52 100644 --- a/addons/purchase_analytic_plans/i18n/sq.po +++ b/addons/purchase_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr.po b/addons/purchase_analytic_plans/i18n/sr.po index 18093e0b861..e338f40ad42 100644 --- a/addons/purchase_analytic_plans/i18n/sr.po +++ b/addons/purchase_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr@latin.po b/addons/purchase_analytic_plans/i18n/sr@latin.po index ca11c788b13..9a5c34c36f4 100644 --- a/addons/purchase_analytic_plans/i18n/sr@latin.po +++ b/addons/purchase_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sv.po b/addons/purchase_analytic_plans/i18n/sv.po index 8de1dced8a8..fbe27556a10 100644 --- a/addons/purchase_analytic_plans/i18n/sv.po +++ b/addons/purchase_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tlh.po b/addons/purchase_analytic_plans/i18n/tlh.po index a3eb96ea6fd..180bdabc35f 100644 --- a/addons/purchase_analytic_plans/i18n/tlh.po +++ b/addons/purchase_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tr.po b/addons/purchase_analytic_plans/i18n/tr.po index 6193a797b38..d8b58b6cd0c 100644 --- a/addons/purchase_analytic_plans/i18n/tr.po +++ b/addons/purchase_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/uk.po b/addons/purchase_analytic_plans/i18n/uk.po index ebfd5498cc1..94f2cb6a3b5 100644 --- a/addons/purchase_analytic_plans/i18n/uk.po +++ b/addons/purchase_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ur.po b/addons/purchase_analytic_plans/i18n/ur.po index 78454a09202..77b45742a53 100644 --- a/addons/purchase_analytic_plans/i18n/ur.po +++ b/addons/purchase_analytic_plans/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/vi.po b/addons/purchase_analytic_plans/i18n/vi.po index b5e4d65e1b7..7291db143a0 100644 --- a/addons/purchase_analytic_plans/i18n/vi.po +++ b/addons/purchase_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index f833c6b40ea..128785fb969 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 67afcd498d2..297e6774e53 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_double_validation/i18n/ar.po b/addons/purchase_double_validation/i18n/ar.po index d71d109eddb..1c5e0461ff0 100644 --- a/addons/purchase_double_validation/i18n/ar.po +++ b/addons/purchase_double_validation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/bg.po b/addons/purchase_double_validation/i18n/bg.po index e6f9eb6d840..dd520a1881e 100644 --- a/addons/purchase_double_validation/i18n/bg.po +++ b/addons/purchase_double_validation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ca.po b/addons/purchase_double_validation/i18n/ca.po index 1d712bb2b9c..9f3ddf5f92e 100644 --- a/addons/purchase_double_validation/i18n/ca.po +++ b/addons/purchase_double_validation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/da.po b/addons/purchase_double_validation/i18n/da.po index b7bcc6e7381..4bce02379db 100644 --- a/addons/purchase_double_validation/i18n/da.po +++ b/addons/purchase_double_validation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/de.po b/addons/purchase_double_validation/i18n/de.po index 189002bf950..f0dd407e269 100644 --- a/addons/purchase_double_validation/i18n/de.po +++ b/addons/purchase_double_validation/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es.po b/addons/purchase_double_validation/i18n/es.po index 68ecf9a0191..a35204ddd25 100644 --- a/addons/purchase_double_validation/i18n/es.po +++ b/addons/purchase_double_validation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_CR.po b/addons/purchase_double_validation/i18n/es_CR.po index 77913d4822a..9ebc59c6ffb 100644 --- a/addons/purchase_double_validation/i18n/es_CR.po +++ b/addons/purchase_double_validation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_EC.po b/addons/purchase_double_validation/i18n/es_EC.po index 613b249fe7c..41ed34eb778 100644 --- a/addons/purchase_double_validation/i18n/es_EC.po +++ b/addons/purchase_double_validation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fi.po b/addons/purchase_double_validation/i18n/fi.po index 6d512f8d45d..a19983789c8 100644 --- a/addons/purchase_double_validation/i18n/fi.po +++ b/addons/purchase_double_validation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fr.po b/addons/purchase_double_validation/i18n/fr.po index ce81c7af0fe..cf47ccd7401 100644 --- a/addons/purchase_double_validation/i18n/fr.po +++ b/addons/purchase_double_validation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/gl.po b/addons/purchase_double_validation/i18n/gl.po index f49defc4f3f..e1b2ec7d894 100644 --- a/addons/purchase_double_validation/i18n/gl.po +++ b/addons/purchase_double_validation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hr.po b/addons/purchase_double_validation/i18n/hr.po index 5f855a0c16b..543ddaca071 100644 --- a/addons/purchase_double_validation/i18n/hr.po +++ b/addons/purchase_double_validation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hu.po b/addons/purchase_double_validation/i18n/hu.po index 9e69003f4e0..7f2c08566b5 100644 --- a/addons/purchase_double_validation/i18n/hu.po +++ b/addons/purchase_double_validation/i18n/hu.po @@ -14,36 +14,36 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings msgid "purchase.config.settings" -msgstr "" +msgstr "purchase.config.settings" #. module: purchase_double_validation #: view:purchase.order:0 msgid "Purchase orders which are not approved yet." -msgstr "" +msgstr "Még nem jóváhagyott megrendelések" #. module: purchase_double_validation #: field:purchase.config.settings,limit_amount:0 msgid "limit to require a second approval" -msgstr "" +msgstr "második jóváhagyásig korlátozva" #. module: purchase_double_validation #: view:board.board:0 #: model:ir.actions.act_window,name:purchase_double_validation.purchase_waiting msgid "Purchase Orders Waiting Approval" -msgstr "" +msgstr "Jóváhagyásra váró megrendelések" #. module: purchase_double_validation #: view:purchase.order:0 msgid "To Approve" -msgstr "" +msgstr "Jóváhagyandó" #. module: purchase_double_validation #: help:purchase.config.settings,limit_amount:0 msgid "Amount after which validation of purchase is required." -msgstr "" +msgstr "Összeg, mely után megrendelés jóváhagyás szükséges." diff --git a/addons/purchase_double_validation/i18n/it.po b/addons/purchase_double_validation/i18n/it.po index 80991029be2..cacf2f0d323 100644 --- a/addons/purchase_double_validation/i18n/it.po +++ b/addons/purchase_double_validation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ja.po b/addons/purchase_double_validation/i18n/ja.po index f23928614ec..a438900a6d9 100644 --- a/addons/purchase_double_validation/i18n/ja.po +++ b/addons/purchase_double_validation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/nl.po b/addons/purchase_double_validation/i18n/nl.po index f07a66df22b..19bdec4acda 100644 --- a/addons/purchase_double_validation/i18n/nl.po +++ b/addons/purchase_double_validation/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pl.po b/addons/purchase_double_validation/i18n/pl.po index 065742c815b..aa602d0d418 100644 --- a/addons/purchase_double_validation/i18n/pl.po +++ b/addons/purchase_double_validation/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pt.po b/addons/purchase_double_validation/i18n/pt.po index 2284fe098dd..a32c5fd2d8e 100644 --- a/addons/purchase_double_validation/i18n/pt.po +++ b/addons/purchase_double_validation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pt_BR.po b/addons/purchase_double_validation/i18n/pt_BR.po index a3f9e953b20..46c0bec1ea8 100644 --- a/addons/purchase_double_validation/i18n/pt_BR.po +++ b/addons/purchase_double_validation/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ro.po b/addons/purchase_double_validation/i18n/ro.po index fed96293ef6..750f48847d2 100644 --- a/addons/purchase_double_validation/i18n/ro.po +++ b/addons/purchase_double_validation/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ru.po b/addons/purchase_double_validation/i18n/ru.po index 4efe5133143..1214e400dd2 100644 --- a/addons/purchase_double_validation/i18n/ru.po +++ b/addons/purchase_double_validation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sl.po b/addons/purchase_double_validation/i18n/sl.po index 83aec6269b9..064a809151f 100644 --- a/addons/purchase_double_validation/i18n/sl.po +++ b/addons/purchase_double_validation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-15 05:32+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sv.po b/addons/purchase_double_validation/i18n/sv.po index 61bb5371933..3f7f9653605 100644 --- a/addons/purchase_double_validation/i18n/sv.po +++ b/addons/purchase_double_validation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/tr.po b/addons/purchase_double_validation/i18n/tr.po index 219adc2a086..af6010753df 100644 --- a/addons/purchase_double_validation/i18n/tr.po +++ b/addons/purchase_double_validation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/zh_CN.po b/addons/purchase_double_validation/i18n/zh_CN.po index be5dd3a17ba..6becdc993f1 100644 --- a/addons/purchase_double_validation/i18n/zh_CN.po +++ b/addons/purchase_double_validation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_requisition/i18n/ar.po b/addons/purchase_requisition/i18n/ar.po index 48765e053de..7aae3e7b5d8 100644 --- a/addons/purchase_requisition/i18n/ar.po +++ b/addons/purchase_requisition/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/bg.po b/addons/purchase_requisition/i18n/bg.po index b21d8fee480..2894e61fb80 100644 --- a/addons/purchase_requisition/i18n/bg.po +++ b/addons/purchase_requisition/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ca.po b/addons/purchase_requisition/i18n/ca.po index 11686a837d2..ac481b25c74 100644 --- a/addons/purchase_requisition/i18n/ca.po +++ b/addons/purchase_requisition/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/da.po b/addons/purchase_requisition/i18n/da.po index c96f6d45fdb..68e295dec61 100644 --- a/addons/purchase_requisition/i18n/da.po +++ b/addons/purchase_requisition/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/de.po b/addons/purchase_requisition/i18n/de.po index f57433ebec3..22cc1a136f3 100644 --- a/addons/purchase_requisition/i18n/de.po +++ b/addons/purchase_requisition/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index 545644c2aef..c4b6fd8fff9 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es_CR.po b/addons/purchase_requisition/i18n/es_CR.po index 5d9c2fce59a..f3c25e8a4d8 100644 --- a/addons/purchase_requisition/i18n/es_CR.po +++ b/addons/purchase_requisition/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/fi.po b/addons/purchase_requisition/i18n/fi.po index ca8ea5b2e44..6cd7aea9ffa 100644 --- a/addons/purchase_requisition/i18n/fi.po +++ b/addons/purchase_requisition/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/fr.po b/addons/purchase_requisition/i18n/fr.po index befd29672b9..f180317f266 100644 --- a/addons/purchase_requisition/i18n/fr.po +++ b/addons/purchase_requisition/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hr.po b/addons/purchase_requisition/i18n/hr.po index 06fe878b14e..39e9a7245cb 100644 --- a/addons/purchase_requisition/i18n/hr.po +++ b/addons/purchase_requisition/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hu.po b/addons/purchase_requisition/i18n/hu.po index 0b9207059a8..9c99bbdd8a4 100644 --- a/addons/purchase_requisition/i18n/hu.po +++ b/addons/purchase_requisition/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -30,7 +30,7 @@ msgstr "Többszörös igénylés" #. module: purchase_requisition #: field:purchase.requisition.line,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Termék mértékegysége" #. module: purchase_requisition #: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition @@ -49,6 +49,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy új vásárlási igény végrehajtásához. \n" +"

\n" +" A vásárlási igény az árajánlat kérés előtti lépés.\n" +" A vásárlási igényben (vagy beszerzési pályázat), rögzítheti a\n" +" vásárolni kívánt termékeket és elindíthatja a beszállítók felé " +"az \n" +" árajánlatkérés elkészítését. A megegyezés után, miután átnézte " +"az\n" +" összes beszállító ajánlatát, egyeseket érvényesítheti, másokat " +"érvényteleníthet.\n" +"

\n" +" " #. module: purchase_requisition #: view:purchase.requisition:0 @@ -60,12 +73,12 @@ msgstr "Felelős" #: view:purchase.requisition:0 #: field:purchase.requisition,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Send to Suppliers" -msgstr "" +msgstr "Beszállítóknak elküld" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -76,17 +89,17 @@ msgstr "Csoportosítás..." #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "Purchase Done" -msgstr "" +msgstr "Beszerzés megtörtént" #. module: purchase_requisition #: field:purchase.requisition,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Purchase Requisition in negociation" -msgstr "" +msgstr "Beszerzés igénylés tárgyalás alatt" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -98,7 +111,7 @@ msgstr "Szállító" #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -136,7 +149,7 @@ msgstr "Beszerzési igénylési sor" #. module: purchase_requisition #: view:purchase.order:0 msgid "Purchase Orders with requisition" -msgstr "" +msgstr "Vásárlási igényekkel rendelkező megrendelések" #. module: purchase_requisition #: model:ir.model,name:purchase_requisition.model_product_product @@ -152,7 +165,7 @@ msgstr "Árajánlatok" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Kikötések és feltételek" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -163,7 +176,7 @@ msgstr "Leírás" #. module: purchase_requisition #: field:purchase.requisition,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: purchase_requisition #: field:purchase.requisition,company_id:0 @@ -179,7 +192,7 @@ msgstr "Árajánlat létrehozása" #. module: purchase_requisition #: help:purchase.requisition,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikációs történet" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -189,7 +202,7 @@ msgstr "Szállító által jóváhagyva" #. module: purchase_requisition #: view:purchase.requisition.partner:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -199,12 +212,12 @@ msgstr "Visszaállítás tervezet állapotba" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Current Purchase Requisition" -msgstr "" +msgstr "Jelenlegi vásárlási igények" #. module: purchase_requisition #: model:res.groups,name:purchase_requisition.group_purchase_requisition_user msgid "User" -msgstr "" +msgstr "Felhasználó" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -214,7 +227,7 @@ msgstr "Megrendelés hivatkozása" #. module: purchase_requisition #: field:purchase.requisition,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ez egy követő" #. module: purchase_requisition #: field:purchase.requisition.line,product_qty:0 @@ -224,7 +237,7 @@ msgstr "Mennyiség" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Unassigned Requisition" -msgstr "" +msgstr "Nem pontosított vásárlási igény" #. module: purchase_requisition #: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition @@ -244,6 +257,8 @@ msgid "" "You have already one %s purchase order for this partner, you must cancel " "this purchase order to create a new quotation." msgstr "" +"Már van egy %s megrendelése erre a partnerre, egy új árajánlat " +"létrehozásához érvénytelenítenie kell ezt a megrendelést." #. module: purchase_requisition #: view:purchase.requisition:0 @@ -265,7 +280,7 @@ msgstr "Beszerzésre váró termékek" #: view:purchase.requisition:0 #: selection:purchase.requisition,state:0 msgid "Sent to Suppliers" -msgstr "" +msgstr "Beszállítókhoz elküldve" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -276,7 +291,7 @@ msgstr "Beszerzési Igénylés keresése" #: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 #, python-format msgid "No Product in Tender." -msgstr "" +msgstr "Pályázatban nics termék meghatározva." #. module: purchase_requisition #: report:purchase.requisition:0 @@ -286,7 +301,7 @@ msgstr "Megrendelés dátuma" #. module: purchase_requisition #: field:purchase.requisition,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: purchase_requisition #: help:purchase.requisition,exclusive:0 @@ -317,7 +332,7 @@ msgstr "Szállítói megrendelés" #. module: purchase_requisition #: field:purchase.requisition,origin:0 msgid "Source Document" -msgstr "" +msgstr "Forrásdokumentum" #. module: purchase_requisition #: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 @@ -333,7 +348,7 @@ msgstr "Igénylés típusa" #. module: purchase_requisition #: view:purchase.requisition:0 msgid "New Purchase Requisition" -msgstr "" +msgstr "Új beszerzési igény" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -358,7 +373,7 @@ msgstr "Beszerzési igénylési partner" #. module: purchase_requisition #: help:purchase.requisition,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: purchase_requisition #: report:purchase.requisition:0 @@ -378,7 +393,7 @@ msgstr "Igénylési határidő" #. module: purchase_requisition #: field:purchase.requisition,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Összegzés" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -394,7 +409,7 @@ msgstr "Beszerzés" #: report:purchase.requisition:0 #: view:purchase.requisition:0 msgid "Source" -msgstr "" +msgstr "Forrás" #. module: purchase_requisition #: field:purchase.requisition,warehouse_id:0 @@ -409,7 +424,7 @@ msgstr "Legújabb igénylés" #. module: purchase_requisition #: model:res.groups,name:purchase_requisition.group_purchase_requisition_manager msgid "Manager" -msgstr "" +msgstr "Menedzser" #. module: purchase_requisition #: selection:purchase.requisition,exclusive:0 @@ -422,6 +437,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: purchase_requisition #: report:purchase.requisition:0 @@ -432,7 +449,7 @@ msgstr "Termék ME" #: code:addons/purchase_requisition/purchase_requisition.py:134 #, python-format msgid "Warning!" -msgstr "" +msgstr "Figyelem!" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -472,6 +489,8 @@ msgid "" "Check this box to generates purchase requisition instead of generating " "requests for quotation from procurement." msgstr "" +"Jelölje be ezt a négyzetet beszerzési igény létrehozásához, ahelyett, hogy " +"árajánlatot igényelne a beszerzésekből." #. module: purchase_requisition #: field:purchase.requisition,purchase_ids:0 diff --git a/addons/purchase_requisition/i18n/id.po b/addons/purchase_requisition/i18n/id.po index 5abb99b7164..84484702612 100644 --- a/addons/purchase_requisition/i18n/id.po +++ b/addons/purchase_requisition/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po index ec4bbc7c2d3..84354fcfb22 100644 --- a/addons/purchase_requisition/i18n/it.po +++ b/addons/purchase_requisition/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ja.po b/addons/purchase_requisition/i18n/ja.po index 1e4a3cf2a92..08aeacef508 100644 --- a/addons/purchase_requisition/i18n/ja.po +++ b/addons/purchase_requisition/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nb.po b/addons/purchase_requisition/i18n/nb.po index b4c6ab2c611..d754ff5ce08 100644 --- a/addons/purchase_requisition/i18n/nb.po +++ b/addons/purchase_requisition/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nl.po b/addons/purchase_requisition/i18n/nl.po index f7370990bf0..4aa65015890 100644 --- a/addons/purchase_requisition/i18n/nl.po +++ b/addons/purchase_requisition/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -219,7 +219,7 @@ msgstr "Is een volger" #. module: purchase_requisition #: field:purchase.requisition.line,product_qty:0 msgid "Quantity" -msgstr "Aantal" +msgstr "Hoeveelheid" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pl.po b/addons/purchase_requisition/i18n/pl.po index 0f1481c57c4..c527d671f95 100644 --- a/addons/purchase_requisition/i18n/pl.po +++ b/addons/purchase_requisition/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt.po b/addons/purchase_requisition/i18n/pt.po index 5cf2b2b7c88..1c7e61059e2 100644 --- a/addons/purchase_requisition/i18n/pt.po +++ b/addons/purchase_requisition/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt_BR.po b/addons/purchase_requisition/i18n/pt_BR.po index c6b471dd159..1ed0a96503d 100644 --- a/addons/purchase_requisition/i18n/pt_BR.po +++ b/addons/purchase_requisition/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ro.po b/addons/purchase_requisition/i18n/ro.po index 02e51f15fa4..fdd93e752fe 100644 --- a/addons/purchase_requisition/i18n/ro.po +++ b/addons/purchase_requisition/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ru.po b/addons/purchase_requisition/i18n/ru.po index e6268a11a55..7e133f8ed4d 100644 --- a/addons/purchase_requisition/i18n/ru.po +++ b/addons/purchase_requisition/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sl.po b/addons/purchase_requisition/i18n/sl.po index 7979679b232..3dcbeb46d0c 100644 --- a/addons/purchase_requisition/i18n/sl.po +++ b/addons/purchase_requisition/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sv.po b/addons/purchase_requisition/i18n/sv.po index 831787e3ee5..de9319ce85a 100644 --- a/addons/purchase_requisition/i18n/sv.po +++ b/addons/purchase_requisition/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/tr.po b/addons/purchase_requisition/i18n/tr.po index f0f9d65d927..31eeb6d2797 100644 --- a/addons/purchase_requisition/i18n/tr.po +++ b/addons/purchase_requisition/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/zh_CN.po b/addons/purchase_requisition/i18n/zh_CN.po index 1581212ba62..3e2ec236ad1 100644 --- a/addons/purchase_requisition/i18n/zh_CN.po +++ b/addons/purchase_requisition/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:08+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/report_intrastat/i18n/ar.po b/addons/report_intrastat/i18n/ar.po index 332da9dbe20..cf342461a25 100644 --- a/addons/report_intrastat/i18n/ar.po +++ b/addons/report_intrastat/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bg.po b/addons/report_intrastat/i18n/bg.po index 3081ad8b8e9..fbd6623404d 100644 --- a/addons/report_intrastat/i18n/bg.po +++ b/addons/report_intrastat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bs.po b/addons/report_intrastat/i18n/bs.po index f64e87fa592..7e395feef51 100644 --- a/addons/report_intrastat/i18n/bs.po +++ b/addons/report_intrastat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ca.po b/addons/report_intrastat/i18n/ca.po index 65620ca9d14..5194e335e74 100644 --- a/addons/report_intrastat/i18n/ca.po +++ b/addons/report_intrastat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/cs.po b/addons/report_intrastat/i18n/cs.po index 5f7cdb8e01f..0becaf1b730 100644 --- a/addons/report_intrastat/i18n/cs.po +++ b/addons/report_intrastat/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/da.po b/addons/report_intrastat/i18n/da.po index e611693f3a3..d3343b5b708 100644 --- a/addons/report_intrastat/i18n/da.po +++ b/addons/report_intrastat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/de.po b/addons/report_intrastat/i18n/de.po index 1b47cce6623..4210594ac31 100644 --- a/addons/report_intrastat/i18n/de.po +++ b/addons/report_intrastat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es.po b/addons/report_intrastat/i18n/es.po index b323ff60c2e..017aa3454b3 100644 --- a/addons/report_intrastat/i18n/es.po +++ b/addons/report_intrastat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index e37ad0e92d3..3db0a73bd35 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_CR.po b/addons/report_intrastat/i18n/es_CR.po index 23e50db28cc..fe64c30e04e 100644 --- a/addons/report_intrastat/i18n/es_CR.po +++ b/addons/report_intrastat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/et.po b/addons/report_intrastat/i18n/et.po index ed4ba60bb26..71da5209808 100644 --- a/addons/report_intrastat/i18n/et.po +++ b/addons/report_intrastat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fi.po b/addons/report_intrastat/i18n/fi.po index b5c597deac9..e909c446434 100644 --- a/addons/report_intrastat/i18n/fi.po +++ b/addons/report_intrastat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fr.po b/addons/report_intrastat/i18n/fr.po index 6009deeeb00..f3b56399894 100644 --- a/addons/report_intrastat/i18n/fr.po +++ b/addons/report_intrastat/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hr.po b/addons/report_intrastat/i18n/hr.po index 20f9396f6bb..9490947f87c 100644 --- a/addons/report_intrastat/i18n/hr.po +++ b/addons/report_intrastat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hu.po b/addons/report_intrastat/i18n/hu.po index f31f685be03..7f2dee3ae49 100644 --- a/addons/report_intrastat/i18n/hu.po +++ b/addons/report_intrastat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/id.po b/addons/report_intrastat/i18n/id.po index 2ea8a6cc2c5..9b379a34ba6 100644 --- a/addons/report_intrastat/i18n/id.po +++ b/addons/report_intrastat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/it.po b/addons/report_intrastat/i18n/it.po index 5d433b3092d..348a99f4343 100644 --- a/addons/report_intrastat/i18n/it.po +++ b/addons/report_intrastat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ja.po b/addons/report_intrastat/i18n/ja.po index d225ac0c997..38cc4fa983f 100644 --- a/addons/report_intrastat/i18n/ja.po +++ b/addons/report_intrastat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ko.po b/addons/report_intrastat/i18n/ko.po index b784cc941b4..7761ac70da1 100644 --- a/addons/report_intrastat/i18n/ko.po +++ b/addons/report_intrastat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/lt.po b/addons/report_intrastat/i18n/lt.po index 0e0f2c823ca..855c975abaf 100644 --- a/addons/report_intrastat/i18n/lt.po +++ b/addons/report_intrastat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl.po b/addons/report_intrastat/i18n/nl.po index df3bf8eb479..e59744d050b 100644 --- a/addons/report_intrastat/i18n/nl.po +++ b/addons/report_intrastat/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -131,7 +131,7 @@ msgstr "Juli" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "Quantity" -msgstr "Aantal" +msgstr "Hoeveelheid" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index 6ee2308b4e6..9513e177bf4 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pl.po b/addons/report_intrastat/i18n/pl.po index 36821e52381..6a80f747de3 100644 --- a/addons/report_intrastat/i18n/pl.po +++ b/addons/report_intrastat/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt.po b/addons/report_intrastat/i18n/pt.po index 33e62ac8350..4a4ebdfb4c6 100644 --- a/addons/report_intrastat/i18n/pt.po +++ b/addons/report_intrastat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index 7b193402a49..ba4f62c88f0 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ro.po b/addons/report_intrastat/i18n/ro.po index 779b216c4b1..65cd1bd2f8c 100644 --- a/addons/report_intrastat/i18n/ro.po +++ b/addons/report_intrastat/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ru.po b/addons/report_intrastat/i18n/ru.po index fa3844a830b..0251ffa62da 100644 --- a/addons/report_intrastat/i18n/ru.po +++ b/addons/report_intrastat/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sl.po b/addons/report_intrastat/i18n/sl.po index 9d346794819..fc577b348a4 100644 --- a/addons/report_intrastat/i18n/sl.po +++ b/addons/report_intrastat/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sq.po b/addons/report_intrastat/i18n/sq.po index d35223baaed..bc739098a92 100644 --- a/addons/report_intrastat/i18n/sq.po +++ b/addons/report_intrastat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sv.po b/addons/report_intrastat/i18n/sv.po index a3cd86544b2..eed8de224e2 100644 --- a/addons/report_intrastat/i18n/sv.po +++ b/addons/report_intrastat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tlh.po b/addons/report_intrastat/i18n/tlh.po index c86c03e99b9..0ae38bc44cc 100644 --- a/addons/report_intrastat/i18n/tlh.po +++ b/addons/report_intrastat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tr.po b/addons/report_intrastat/i18n/tr.po index e756b9c6896..31f1c68789a 100644 --- a/addons/report_intrastat/i18n/tr.po +++ b/addons/report_intrastat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/uk.po b/addons/report_intrastat/i18n/uk.po index 77a621eaee3..c6b9e3205e4 100644 --- a/addons/report_intrastat/i18n/uk.po +++ b/addons/report_intrastat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/vi.po b/addons/report_intrastat/i18n/vi.po index 5136d08cc73..c7692340d8a 100644 --- a/addons/report_intrastat/i18n/vi.po +++ b/addons/report_intrastat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index b8b2c6b4792..6c3fddc2d19 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index 48b5bb776fc..e4efe28d1ab 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_webkit/i18n/ar.po b/addons/report_webkit/i18n/ar.po index 57a7c2c5c8f..2a27d04754c 100644 --- a/addons/report_webkit/i18n/ar.po +++ b/addons/report_webkit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/bg.po b/addons/report_webkit/i18n/bg.po index fcb6f375afc..f03ced6d17d 100644 --- a/addons/report_webkit/i18n/bg.po +++ b/addons/report_webkit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ca.po b/addons/report_webkit/i18n/ca.po index b091424973f..93e427d8b91 100644 --- a/addons/report_webkit/i18n/ca.po +++ b/addons/report_webkit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/da.po b/addons/report_webkit/i18n/da.po index d79c18ccb7d..a0ab32da213 100644 --- a/addons/report_webkit/i18n/da.po +++ b/addons/report_webkit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:31+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index 013755581d6..bd55c9541a9 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es.po b/addons/report_webkit/i18n/es.po index 966fff2879a..53071eaac47 100644 --- a/addons/report_webkit/i18n/es.po +++ b/addons/report_webkit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es_CR.po b/addons/report_webkit/i18n/es_CR.po index 209fdfc054b..dba36dfd8a5 100644 --- a/addons/report_webkit/i18n/es_CR.po +++ b/addons/report_webkit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fi.po b/addons/report_webkit/i18n/fi.po index 0b039cb2332..a2ad0daa676 100644 --- a/addons/report_webkit/i18n/fi.po +++ b/addons/report_webkit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index 0249df7fdb9..35ffb5c99c9 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hr.po b/addons/report_webkit/i18n/hr.po index 2baa3921a49..6855577412c 100644 --- a/addons/report_webkit/i18n/hr.po +++ b/addons/report_webkit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hu.po b/addons/report_webkit/i18n/hu.po index 61ac0938bbe..268cb53dfb8 100644 --- a/addons/report_webkit/i18n/hu.po +++ b/addons/report_webkit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 @@ -36,7 +36,7 @@ msgstr "Ledger 28 431.8 x 279.4 mm" #: code:addons/report_webkit/webkit_report.py:233 #, python-format msgid "No header defined for this Webkit report!" -msgstr "" +msgstr "Nem lett fejléc definiálva ehhez a Webkit jelentéshez!" #. module: report_webkit #: help:ir.header_img,type:0 @@ -51,6 +51,10 @@ msgid "" " but memory and disk " "usage is wider" msgstr "" +"Ez a modul még pontosabb elem " +" elhelyezést tesz lehetővé mivel minden objektum külön HTML lesz " +"nyomtatva. de a " +"memória és a disk használat nagyobb lesz" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -67,7 +71,7 @@ msgstr "Vállalat" #: code:addons/report_webkit/webkit_report.py:234 #, python-format msgid "Please set a header in company settings." -msgstr "" +msgstr "Kérem állítsa be a fejlécet a vállalat beállításainál." #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -93,7 +97,7 @@ msgstr "Kép megnevezése" #: model:ir.actions.act_window,name:report_webkit.action_header_webkit #: model:ir.ui.menu,name:report_webkit.menu_header_webkit msgid "Webkit Headers/Footers" -msgstr "" +msgstr "Webkit Fejléc/Lábjegyzet" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -114,7 +118,7 @@ msgstr "A4 0 210 x 297 mm, 8.26 x 11.69 inch" #: code:addons/report_webkit/webkit_report.py:176 #, python-format msgid "Webkit error" -msgstr "" +msgstr "Webkit hiba" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -129,7 +133,7 @@ msgstr "B2 17 500 x 707 mm" #: code:addons/report_webkit/webkit_report.py:304 #, python-format msgid "Webkit render!" -msgstr "" +msgstr "Webkit fordít!" #. module: report_webkit #: model:ir.model,name:report_webkit.model_ir_header_img @@ -139,7 +143,7 @@ msgstr "ir.header_img" #. module: report_webkit #: field:ir.actions.report.xml,precise_mode:0 msgid "Precise Mode" -msgstr "" +msgstr "Precíz mód" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:96 @@ -150,6 +154,11 @@ msgid "" "http://code.google.com/p/wkhtmltopdf/downloads/list and set the path in the " "ir.config_parameter with the webkit_path key.Minimal version is 0.9.9" msgstr "" +"Kérem telepítse a futtatható fájlt a rendeszerében (sudo apt-get install " +"wkhtmltopdf) vagy töltse le innen: " +"http://code.google.com/p/wkhtmltopdf/downloads/list és állítsa be az elérési " +"utat ebben ir.config_parameter ezzel webkit_path a kulcsal. Minimum verzió " +"0.9.9" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -170,7 +179,7 @@ msgstr "Típus" #: code:addons/report_webkit/wizard/report_webkit_actions.py:133 #, python-format msgid "Client Actions Connections" -msgstr "" +msgstr "Kliens műveleti kapcsolatok" #. module: report_webkit #: field:res.company,header_image:0 @@ -201,7 +210,7 @@ msgstr "A fejléc kapcsolódik a jelentéshez" #: code:addons/report_webkit/webkit_report.py:95 #, python-format msgid "Wkhtmltopdf library path is not set" -msgstr "" +msgstr "Wkhtmltopdf könyvtár elérés nincs beállítva" #. module: report_webkit #: view:ir.actions.report.xml:0 @@ -247,7 +256,7 @@ msgstr "Felső margó (mm)" #. module: report_webkit #: view:report.webkit.actions:0 msgid "_Ok" -msgstr "" +msgstr "_Ok" #. module: report_webkit #: help:report.webkit.actions,print_button:0 @@ -255,6 +264,8 @@ msgid "" "Check this to add a Print action for this Report in the sidebar of the " "corresponding document types" msgstr "" +"Jelölje ki ezt ahhoz, hogy hozzáadjon az ide vonatkozó dokumentum típusok " +"jelentés oldalmezőjéhez egy nyomtatási műveletet" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -264,12 +275,12 @@ msgstr "B3 18 353 x 500 mm" #. module: report_webkit #: field:ir.actions.report.xml,webkit_header:0 msgid "Webkit Header" -msgstr "" +msgstr "Webkit fejlác" #. module: report_webkit #: help:ir.actions.report.xml,webkit_debug:0 msgid "Enable the webkit engine debugger" -msgstr "" +msgstr "Webkit hibajavító motor bekapcsolás" #. module: report_webkit #: field:ir.header_img,img:0 @@ -279,7 +290,7 @@ msgstr "Kép" #. module: report_webkit #: view:ir.header_img:0 msgid "Header Image" -msgstr "" +msgstr "Fejléc kép" #. module: report_webkit #: field:res.company,header_webkit:0 @@ -292,6 +303,8 @@ msgid "" "Check this to view the newly added internal print action after creating it " "(technical view) " msgstr "" +"Jelölje ki ahhoz, hogy lássa az újonnan hozzáadott belső nyomtatási " +"műveletet a létrehozása után (műszaki nézet) " #. module: report_webkit #: view:res.company:0 @@ -306,7 +319,7 @@ msgstr "Álló" #. module: report_webkit #: view:report.webkit.actions:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: report_webkit #: selection:ir.header_webkit,orientation:0 @@ -322,7 +335,7 @@ msgstr "B8 22 62 x 88 mm" #: code:addons/report_webkit/webkit_report.py:177 #, python-format msgid "The command 'wkhtmltopdf' failed with error code = %s. Message: %s" -msgstr "" +msgstr "A 'wkhtmltopdf' parancs hibakóddal tért vissza = %s. Üzenet: %s" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -332,7 +345,7 @@ msgstr "A2 7 420 x 594 mm" #. module: report_webkit #: field:report.webkit.actions,print_button:0 msgid "Add print button" -msgstr "" +msgstr "Nyomtatási gomb hozzáadása" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -357,7 +370,7 @@ msgstr "WebKit műveletek" #. module: report_webkit #: field:report.webkit.actions,open_action:0 msgid "Open added action" -msgstr "" +msgstr "Hozzáadott művelet megnyitása" #. module: report_webkit #: field:ir.header_webkit,margin_right:0 @@ -368,7 +381,7 @@ msgstr "Jobb margó (mm)" #: code:addons/report_webkit/webkit_report.py:228 #, python-format msgid "Webkit report template not found!" -msgstr "" +msgstr "Webkit jelentés sablon nem található!" #. module: report_webkit #: field:ir.header_webkit,orientation:0 @@ -398,7 +411,7 @@ msgstr ":B10 16 31 x 44 mm" #. module: report_webkit #: view:report.webkit.actions:0 msgid "Cancel" -msgstr "" +msgstr "Megszakítás" #. module: report_webkit #: field:ir.header_webkit,css:0 @@ -414,13 +427,13 @@ msgstr "B4 19 250 x 353 mm" #: model:ir.actions.act_window,name:report_webkit.action_header_img #: model:ir.ui.menu,name:report_webkit.menu_header_img msgid "Webkit Logos" -msgstr "" +msgstr "Webkit Logók" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:172 #, python-format msgid "No diagnosis message was provided" -msgstr "" +msgstr "Nincs diagnosztikai üzenet" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -440,7 +453,7 @@ msgstr "webkit lábléc" #. module: report_webkit #: field:ir.actions.report.xml,webkit_debug:0 msgid "Webkit debug" -msgstr "" +msgstr "Webkit hibakereső" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -472,7 +485,7 @@ msgstr "A8 12 52 x 74 mm" #: model:ir.actions.act_window,name:report_webkit.wizard_ofdo_report_actions #: view:report.webkit.actions:0 msgid "Add Print Buttons" -msgstr "" +msgstr "Nyomtatási gomb hozzáadása" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -488,7 +501,7 @@ msgstr "Bal margó (mm)" #: code:addons/report_webkit/webkit_report.py:228 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: report_webkit #: help:ir.header_webkit,footer_html:0 @@ -509,9 +522,9 @@ msgstr "ir.actions.report.xml" #: code:addons/report_webkit/webkit_report.py:174 #, python-format msgid "The following diagnosis message was provided:\n" -msgstr "" +msgstr "a következő diagnosztikai üzenet elérhető:\n" #. module: report_webkit #: view:ir.header_webkit:0 msgid "HTML Header" -msgstr "" +msgstr "HTML fejléc" diff --git a/addons/report_webkit/i18n/it.po b/addons/report_webkit/i18n/it.po index d42703e4a7a..6ae742b76b0 100644 --- a/addons/report_webkit/i18n/it.po +++ b/addons/report_webkit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ja.po b/addons/report_webkit/i18n/ja.po index ff35f0cbda9..92ab638b423 100644 --- a/addons/report_webkit/i18n/ja.po +++ b/addons/report_webkit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/nl.po b/addons/report_webkit/i18n/nl.po index 1c1ff475cd9..7c9d89384c9 100644 --- a/addons/report_webkit/i18n/nl.po +++ b/addons/report_webkit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pl.po b/addons/report_webkit/i18n/pl.po index 3e58a3e3d05..ba333326f61 100644 --- a/addons/report_webkit/i18n/pl.po +++ b/addons/report_webkit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt.po b/addons/report_webkit/i18n/pt.po index 8dcab953e5e..3313781bc7f 100644 --- a/addons/report_webkit/i18n/pt.po +++ b/addons/report_webkit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt_BR.po b/addons/report_webkit/i18n/pt_BR.po index c9b93fa48b3..a1a5df10106 100644 --- a/addons/report_webkit/i18n/pt_BR.po +++ b/addons/report_webkit/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ro.po b/addons/report_webkit/i18n/ro.po index c75c7bedfd7..51751265a39 100644 --- a/addons/report_webkit/i18n/ro.po +++ b/addons/report_webkit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ru.po b/addons/report_webkit/i18n/ru.po index 49bb93d2d29..266b8aaa77f 100644 --- a/addons/report_webkit/i18n/ru.po +++ b/addons/report_webkit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sv.po b/addons/report_webkit/i18n/sv.po index 8e6dc55f677..ba4bc6fe2a2 100644 --- a/addons/report_webkit/i18n/sv.po +++ b/addons/report_webkit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/tr.po b/addons/report_webkit/i18n/tr.po index 8ee9dd3ebc5..3b9052bf531 100644 --- a/addons/report_webkit/i18n/tr.po +++ b/addons/report_webkit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/zh_CN.po b/addons/report_webkit/i18n/zh_CN.po index 723fcc6a085..85c3fa78c84 100644 --- a/addons/report_webkit/i18n/zh_CN.po +++ b/addons/report_webkit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/resource/i18n/ar.po b/addons/resource/i18n/ar.po index 1012a16212e..5ebaff0cfe6 100644 --- a/addons/resource/i18n/ar.po +++ b/addons/resource/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bg.po b/addons/resource/i18n/bg.po index 8e937a4bde3..4944d1adf52 100644 --- a/addons/resource/i18n/bg.po +++ b/addons/resource/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ca.po b/addons/resource/i18n/ca.po index dc6529e9dbc..6328cddc1dd 100644 --- a/addons/resource/i18n/ca.po +++ b/addons/resource/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/cs.po b/addons/resource/i18n/cs.po index 22142898de3..4b82bbc7503 100644 --- a/addons/resource/i18n/cs.po +++ b/addons/resource/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/da.po b/addons/resource/i18n/da.po index 4cab80ca629..0a716e3b693 100644 --- a/addons/resource/i18n/da.po +++ b/addons/resource/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 802f568e358..2e1b744f317 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es.po b/addons/resource/i18n/es.po index bd35771a7ee..3be0c754b7e 100644 --- a/addons/resource/i18n/es.po +++ b/addons/resource/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_CR.po b/addons/resource/i18n/es_CR.po index 5f538e314d9..79c6f4e7e7b 100644 --- a/addons/resource/i18n/es_CR.po +++ b/addons/resource/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_EC.po b/addons/resource/i18n/es_EC.po index f2f1f4d58df..f5a0458ea71 100644 --- a/addons/resource/i18n/es_EC.po +++ b/addons/resource/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/et.po b/addons/resource/i18n/et.po index 705998b7890..7a9018f77e9 100644 --- a/addons/resource/i18n/et.po +++ b/addons/resource/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 4b1e25f18bf..8bb29441945 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fr.po b/addons/resource/i18n/fr.po index 82acfa1764e..045ef1c92d6 100644 --- a/addons/resource/i18n/fr.po +++ b/addons/resource/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/gl.po b/addons/resource/i18n/gl.po index 87397a12752..708fa705813 100644 --- a/addons/resource/i18n/gl.po +++ b/addons/resource/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hr.po b/addons/resource/i18n/hr.po index cffd98bd1f8..9edf39bb50b 100644 --- a/addons/resource/i18n/hr.po +++ b/addons/resource/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hu.po b/addons/resource/i18n/hu.po index 363dcaed6b4..e84c03f071e 100644 --- a/addons/resource/i18n/hu.po +++ b/addons/resource/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 @@ -95,12 +95,13 @@ msgstr "Erőforrások" #, python-format msgid "Make sure the Working time has been configured with proper week days!" msgstr "" +"Győződjön meg róla, hogy a munkaidő megfelelő munka napokkal lett beállítva!" #. module: resource #: code:addons/resource/resource.py:307 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (másolat)" #. module: resource #: view:resource.calendar:0 @@ -136,7 +137,7 @@ msgstr "Péntek" #. module: resource #: view:resource.calendar.attendance:0 msgid "Hours" -msgstr "" +msgstr "Órák" #. module: resource #: view:resource.calendar.leaves:0 @@ -162,7 +163,7 @@ msgstr "Munkaidőszaki erőforrás-szabadság keresése" #. module: resource #: field:resource.calendar.attendance,date_from:0 msgid "Starting Date" -msgstr "" +msgstr "Kezdési dátum" #. module: resource #: field:resource.calendar,manager:0 @@ -208,7 +209,7 @@ msgstr "Munkaidő" #. module: resource #: help:resource.calendar.attendance,hour_from:0 msgid "Start and End time of working." -msgstr "" +msgstr "A munka megkezdésének és befejezésének ideje." #. module: resource #: view:resource.calendar.leaves:0 @@ -256,6 +257,8 @@ msgid "" "Define working hours and time table that could be scheduled to your project " "members" msgstr "" +"Határozzon meg munka órákat és idő táblát melyekkel ütemezi a projekt " +"résztvevőit" #. module: resource #: help:resource.resource,user_id:0 @@ -272,7 +275,7 @@ msgstr "Az erőforrás ütemezésének a meghatározása." #. module: resource #: view:resource.calendar.leaves:0 msgid "Starting Date of Leave" -msgstr "" +msgstr "Az eltávozás kezdési időpontja" #. module: resource #: field:resource.resource,code:0 @@ -307,6 +310,10 @@ msgid "" "show a load of 100% for this phase by default, but if we put a efficiency of " "200%, then his load will only be 50%." msgstr "" +"Ez a mező ábrázolja a kutatás hatékonyságát a teljes feladaton. pl. egyedül " +"végrehajtott kutatási 5 napos fázis 5 tárgyban kiosztva neki, ez a 100% " +"terhelés erre a fázisra alap értelmezve, de ha a hatékonyságot 200% tesszük " +"akkor ez a terhelés \"csak\" 50%." #. module: resource #: model:ir.actions.act_window,name:resource.action_resource_calendar_leave_tree @@ -341,7 +348,7 @@ msgstr "(szabadság)" #: code:addons/resource/resource.py:389 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Beállítási hiba!" #. module: resource #: selection:resource.resource,resource_type:0 @@ -351,7 +358,7 @@ msgstr "Ember" #. module: resource #: view:resource.calendar.leaves:0 msgid "Duration" -msgstr "" +msgstr "Időtartam" #. module: resource #: field:resource.calendar.leaves,date_from:0 diff --git a/addons/resource/i18n/it.po b/addons/resource/i18n/it.po index 726b622b181..ecc46c64741 100644 --- a/addons/resource/i18n/it.po +++ b/addons/resource/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ja.po b/addons/resource/i18n/ja.po index 4b485b341ec..4f69476a2ef 100644 --- a/addons/resource/i18n/ja.po +++ b/addons/resource/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/lt.po b/addons/resource/i18n/lt.po index 9f32de49a2b..3c0aea69c65 100644 --- a/addons/resource/i18n/lt.po +++ b/addons/resource/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index cc3541507ec..2621ec2e05c 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index b51a8525f77..74b954cf854 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pl.po b/addons/resource/i18n/pl.po index b06343a8fa0..7a14cad4572 100644 --- a/addons/resource/i18n/pl.po +++ b/addons/resource/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index 74ea5ee6e3d..cf35914bca6 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt_BR.po b/addons/resource/i18n/pt_BR.po index 2eaf2fa315a..7ee2695bdd4 100644 --- a/addons/resource/i18n/pt_BR.po +++ b/addons/resource/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ro.po b/addons/resource/i18n/ro.po index 72138843269..1b40b885bb5 100644 --- a/addons/resource/i18n/ro.po +++ b/addons/resource/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ru.po b/addons/resource/i18n/ru.po index 27c1f9cc999..926f5058c29 100644 --- a/addons/resource/i18n/ru.po +++ b/addons/resource/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sl.po b/addons/resource/i18n/sl.po index 13317312410..b4150090329 100644 --- a/addons/resource/i18n/sl.po +++ b/addons/resource/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sv.po b/addons/resource/i18n/sv.po index 9dc7740f631..37911f83db1 100644 --- a/addons/resource/i18n/sv.po +++ b/addons/resource/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/tr.po b/addons/resource/i18n/tr.po index bd099349009..4cd7472a38d 100644 --- a/addons/resource/i18n/tr.po +++ b/addons/resource/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index d6f50f8a0d9..db4ef3b6fd9 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/zh_CN.po b/addons/resource/i18n/zh_CN.po index 30b21b8f1b1..84742e63062 100644 --- a/addons/resource/i18n/zh_CN.po +++ b/addons/resource/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/sale/i18n/ar.po b/addons/sale/i18n/ar.po index abddbe7535b..d40564ff77f 100644 --- a/addons/sale/i18n/ar.po +++ b/addons/sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bg.po b/addons/sale/i18n/bg.po index aa44f1c5666..50908dfa6d9 100644 --- a/addons/sale/i18n/bg.po +++ b/addons/sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bs.po b/addons/sale/i18n/bs.po index fe220e55453..0fd1db1a0dc 100644 --- a/addons/sale/i18n/bs.po +++ b/addons/sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ca.po b/addons/sale/i18n/ca.po index e6b6190aa43..bfaa71ff6e7 100644 --- a/addons/sale/i18n/ca.po +++ b/addons/sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/cs.po b/addons/sale/i18n/cs.po index aa0c30d8363..95639e54c49 100644 --- a/addons/sale/i18n/cs.po +++ b/addons/sale/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Poedit-Language: Czech\n" #. module: sale diff --git a/addons/sale/i18n/da.po b/addons/sale/i18n/da.po index 9858da78a6e..bd83c494197 100644 --- a/addons/sale/i18n/da.po +++ b/addons/sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index aed5606ee8d..384625aaed6 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/el.po b/addons/sale/i18n/el.po index 5439a7917a2..73770d84131 100644 --- a/addons/sale/i18n/el.po +++ b/addons/sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es.po b/addons/sale/i18n/es.po index f9c4d924295..48c033bf773 100644 --- a/addons/sale/i18n/es.po +++ b/addons/sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -163,7 +163,7 @@ msgstr "Líneas no facturadas y entregadas" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Presupuesto confirmado" #. module: sale #: selection:sale.order,state:0 @@ -250,12 +250,12 @@ msgstr "El valor del importe avanzado debe ser positivo." #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 msgid "Allows you to apply some discount per sales order line." -msgstr "" +msgstr "Permite aplicar un descuento por línea de pedido de venta." #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Líneas de pedido de venta que están en estado 'Realizada'" #. module: sale #: selection:sale.order.line,type:0 @@ -407,6 +407,11 @@ msgid "" " Use Some Order Lines to invoice a selection of the sales " "order lines." msgstr "" +"Utilice 'Todas' para crear la factura final.\n" +"Utilice 'Porcentaje' para facturar un porcentaje del importe total.\n" +"Utilice 'Precio fijo' para facturar un importe específico como avance.\n" +"Utilice 'Algunas líneas de pedido' para facturar una selección de las líneas " +"de pedido de venta." #. module: sale #: view:sale.make.invoice:0 @@ -488,7 +493,7 @@ msgstr "Fax :" #, python-format msgid "" "In order to delete a confirmed sales order, you must cancel it before !" -msgstr "" +msgstr "¡Para eliminar un pedido de venta confirmado, debe cancelarlo antes!" #. module: sale #: view:sale.order:0 @@ -524,7 +529,7 @@ msgstr "Pedido de venta" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Activar facturación de las líneas de pedido de venta" #. module: sale #: model:ir.model,name:sale.model_sale_order_line @@ -539,7 +544,7 @@ msgstr "Importe avanzado" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "Indica que el pedido de venta tiene por lo menos una factura." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -559,7 +564,7 @@ msgstr "Un empleado puede tener diferentes roles por contrato" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Facturar el pedido de ventas completo" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -581,6 +586,7 @@ msgstr "Preparar facturas basadas en los partes de horas" #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." msgstr "" +"No se puede cancelar una línea de pedido de venta que ya se ha facturado." #. module: sale #: view:account.invoice.report:0 @@ -608,7 +614,7 @@ msgstr "Permite usar diferentes unidades de medida" #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Pedido de venta confirmado" #. module: sale #: view:sale.order:0 @@ -657,7 +663,7 @@ msgstr "Precio total" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Permite especificar una cuenta analítica en pedidos de venta." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -737,7 +743,7 @@ msgstr "Año ordenado de los pedidos de venta" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Direcciones en los pedidos de venta" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -754,7 +760,7 @@ msgstr "Total :" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Líneas de pedidos de venta listas para facturar" #. module: sale #: view:sale.report:0 @@ -907,7 +913,7 @@ msgstr "Crear y ver factura" #. module: sale #: view:sale.order.line:0 msgid "Sales order lines done" -msgstr "" +msgstr "Líneas de pedidos de venta realizadas" #. module: sale #: field:sale.make.invoice,grouped:0 @@ -990,7 +996,7 @@ msgstr "Mes" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Moneda" #. module: sale #: view:sale.order.line:0 @@ -1027,7 +1033,7 @@ msgstr "Nombre tienda" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Mis pedidos de venta" #. module: sale #: report:sale.order:0 @@ -1052,6 +1058,8 @@ msgid "" "To allow your salesman to make invoices for sales order lines using the menu " "'Lines to Invoice'." msgstr "" +"Permitir a los comerciales realizar facturas de las líneas de los pedidos de " +"venta usando el menú 'Líneas a facturar'." #. module: sale #: model:ir.actions.client,name:sale.action_client_sale_menu @@ -1062,7 +1070,7 @@ msgstr "Abrir menú de ventas" #: code:addons/sale/sale.py:592 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "" +msgstr "No puede confirmar un pedido de venta que no tiene ninguna línea." #. module: sale #: selection:sale.report,state:0 @@ -1078,7 +1086,7 @@ msgstr "¡No se ha definido un cliente!" #. module: sale #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" -msgstr "" +msgstr "Lanzar órdenes de entrega automáticas desde los pedidos de venta" #. module: sale #: view:sale.make.invoice:0 @@ -1148,7 +1156,7 @@ msgstr "El importe de los impuestos." #. module: sale #: field:sale.order,invoiced_rate:0 msgid "Invoiced Ratio" -msgstr "" +msgstr "Proporción facturada" #. module: sale #: selection:sale.order,order_policy:0 @@ -1188,6 +1196,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir una nueva tienda.\n" +"

\n" +"Cada presupuesto o pedido de venta debe estar enlzadado con una tienda. La " +"tienda define el almacén desde el que los productos serán entregados para " +"cada venta en concreto.\n" +"

\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1212,6 +1228,8 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Líneas de los pedidos de venta que están confirmadas, realizadas o en " +"excepción y que no han sido facturadas" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1315,6 +1333,7 @@ msgstr "Enero" #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" msgstr "" +"Permite establecer un descuento en las líneas de los pedidos de venta" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1329,6 +1348,9 @@ msgid "" " or a fixed price (for advances) directly from the sales " "order form if you prefer." msgstr "" +"Todos los elementos en estas líneas de pedido serán facturadas. Puede " +"también facturar un porcentaje del pedido de venta o un precio fijo (para " +"avances) directamente desde el formulario de pedido de ventas si lo prefiere." #. module: sale #: help:sale.config.settings,module_warning:0 @@ -1347,7 +1369,7 @@ msgstr "" #. module: sale #: field:sale.order,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "URL de Paypal" #. module: sale #: help:sale.order,project_id:0 @@ -1587,13 +1609,13 @@ msgstr "¡No hay tarifa! " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Pedido de venta " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Presupuesto enviado" #. module: sale #: view:sale.order.line:0 @@ -1648,7 +1670,7 @@ msgstr "" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Facturar pedido de venta" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1657,6 +1679,9 @@ msgid "" "invoice). You have to choose " "if you want your invoice based on ordered " msgstr "" +"Este pedido de venta creará automáticamente la propuesta de factura (factura " +"borrador). Tiene que escoger si quiere generar la factura basada en lo " +"pedido " #. module: sale #: field:sale.config.settings,module_account_analytic_analysis:0 @@ -1808,6 +1833,90 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hola ${object.partner_id.name},

\n" +" \n" +"

Aquí está su ${object.state in ('draft', 'sent') and 'presupuesto' or " +"'confirmación de pedido'} de ${object.company_id.name}:

\n" +"\n" +"

\n" +"   REFERENCIAS
\n" +"   Nº de pedido: ${object.name}
\n" +"   Total del pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Fecha del pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referencia del pedido: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Su referencia: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Su contacto: ${object.user_id.name}\n" +" % endif\n" +"

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

También es posible pagar directamente con Paypal:

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

Si tiene alguna pregunta, no dude en contactar con nosotros.

\n" +"

Gracias por escoger a ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1920,6 +2029,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un presupuesto, el primer paso de una nueva venta.\n" +"

\n" +"OpenERP le ayuda a gestionar eficientemente el flujo completo de ventas: " +"desde el presupuesto al pedido de venta, la entrega, la facturación y el " +"pago.\n" +"

\n" +"Las características sociales le ayudan a organizar discusiones en cada " +"pedido de venta, y permite a sus clientes seguir la evolución del pedido de " +"venta.\n" +"

\n" +" " #. module: sale #: view:res.partner:0 @@ -1987,6 +2108,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un presupuesto que puede ser convertido en un pedido de " +"venta.\n" +"

\n" +"OpenERP le ayuda a gestionar eficientemente el flujo completo de ventas: " +"presupuesto, pedido de venta, entrega, facturación y pago.\n" +"

\n" +" " #. module: sale #: field:sale.order,invoice_quantity:0 @@ -2075,6 +2204,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un presupuesto o un pedido de venta para este cliente.\n" +"

\n" +"OpenERP le ayuda a gestionar eficientemente el flujo completo de ventas: " +"presupuesto, pedido de venta, entrega, facturación y pago.\n" +"

\n" +"Las características sociales le ayudan a organizar discusiones en cada " +"pedido de venta, y permite a su cliente seguir la evolución del pedido de " +"venta.\n" +"

\n" +" " #. module: sale #: field:sale.order,message_summary:0 @@ -2122,7 +2262,7 @@ msgstr "Desde un pedido de venta" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Líneas de pedido confirmadas y aún sin entregar" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2168,7 +2308,7 @@ msgstr "Pedidos preparados para ser facturados" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Generar facturas basadas en las líneas de los pedidos de venta" #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index 98e8cee9035..bd4f1b33f14 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CL.po b/addons/sale/i18n/es_CL.po index 5533034cc58..47835c3d5d9 100644 --- a/addons/sale/i18n/es_CL.po +++ b/addons/sale/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CR.po b/addons/sale/i18n/es_CR.po index 1d336dbe477..11566f3019a 100644 --- a/addons/sale/i18n/es_CR.po +++ b/addons/sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_EC.po b/addons/sale/i18n/es_EC.po index e42749853e7..b82d2909f30 100644 --- a/addons/sale/i18n/es_EC.po +++ b/addons/sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index d717960ad2b..3b64aaa9dac 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/et.po b/addons/sale/i18n/et.po index c6bca999f60..b58c2545f8e 100644 --- a/addons/sale/i18n/et.po +++ b/addons/sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/eu.po b/addons/sale/i18n/eu.po index c6d4120cb5b..c3322ec4702 100644 --- a/addons/sale/i18n/eu.po +++ b/addons/sale/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fi.po b/addons/sale/i18n/fi.po index a32006a8b70..a75cfec40c2 100644 --- a/addons/sale/i18n/fi.po +++ b/addons/sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index 82dcae6f14b..8615d304cf9 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/gl.po b/addons/sale/i18n/gl.po index 99281df98dc..c1a152f3045 100644 --- a/addons/sale/i18n/gl.po +++ b/addons/sale/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hr.po b/addons/sale/i18n/hr.po index 8b1e7880549..85317420968 100644 --- a/addons/sale/i18n/hr.po +++ b/addons/sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 54ecde6f9d4..35053dc57b0 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting msgid "Analytic Accounting for Sales" -msgstr "" +msgstr "Analitikus/elemző könyvelés a kereskedelemhez" #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 @@ -30,19 +30,19 @@ msgstr "Árajánlat megerősítése" #. module: sale #: view:board.board:0 msgid "Sales Dashboard" -msgstr "" +msgstr "Értékesítési műszerfal" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:92 #, python-format msgid "There is no income account defined as global property." -msgstr "" +msgstr "Nincs bevételi számla meghatározva a globális tulajdonságokhoz" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree2 #: model:ir.ui.menu,name:sale.menu_invoicing_sales_order_lines msgid "Order Lines to Invoice" -msgstr "" +msgstr "Megrendelési sorok a számlához" #. module: sale #: field:sale.order,date_confirm:0 @@ -64,12 +64,12 @@ msgstr "Elosztási partner" #. module: sale #: model:ir.actions.act_window,name:sale.action_view_sale_advance_payment_inv msgid "Invoice Order" -msgstr "" +msgstr "Megrendelés számla" #. module: sale #: view:sale.config.settings:0 msgid "Product Features" -msgstr "" +msgstr "Termék tulajdonságok" #. module: sale #: help:sale.config.settings,module_account_analytic_analysis:0 @@ -83,6 +83,16 @@ msgid "" "invoice automatically.\n" " It installs the account_analytic_analysis module." msgstr "" +"Lehetővé teszi az ügyfél szerződések állapotainak meghatározását: " +"Számlázási\n" +" mód (fix ár, az időkimutatásokon, számla előre), a pontos " +"árképzés\n" +" (650€/nap egy fejlesztőnek), az időtartam (egy éves támogatási " +"szerződés).\n" +" Lehetősége lesz a szerződések folyamatainak követésére és azok " +"automatikus\n" +" számlázására. \n" +" Ez a account_analytic_analysis modult telepíti." #. module: sale #: model:email.template,report_name:sale.email_template_edi_sale @@ -90,12 +100,14 @@ msgid "" "${(object.name or '').replace('/','_')}_${object.state == 'draft' and " "'draft' or ''}" msgstr "" +"${(object.name or '').replace('/','_')}_${object.state == 'draft' and " +"'draft' or ''}" #. module: sale #: view:sale.order.line:0 #: field:sale.report,product_uom:0 msgid "Unit of Measure" -msgstr "" +msgstr "Mértékegység" #. module: sale #: field:sale.order.line,type:0 @@ -110,7 +122,7 @@ msgstr "Az értékesítési megbízás megerősítésének dátuma." #. module: sale #: field:account.config.settings,module_sale_analytic_plans:0 msgid "Use multiple analytic accounts on sales" -msgstr "" +msgstr "Használjon több analitikus/elemző könyvelést az értékesítésekhez" #. module: sale #: selection:sale.report,month:0 @@ -121,12 +133,12 @@ msgstr "Március" #: code:addons/sale/sale.py:559 #, python-format msgid "First cancel all invoices attached to this sales order." -msgstr "" +msgstr "Először törölje a megrendelés összes számla mellékletét." #. module: sale #: view:sale.order:0 msgid "Quotation Number" -msgstr "" +msgstr "Árajánlat szám" #. module: sale #: view:sale.order:0 @@ -156,7 +168,7 @@ msgstr "Ki nem számlázott, de kiszállított tételek" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Árajánlat visszaigazolva" #. module: sale #: selection:sale.order,state:0 @@ -167,29 +179,29 @@ msgstr "Számlázási hiba" #. module: sale #: view:sale.order:0 msgid "Quotation " -msgstr "" +msgstr "Árajánlat " #. module: sale #: selection:sale.order,state:0 msgid "Draft Quotation" -msgstr "" +msgstr "Árajánlat sablon" #. module: sale #: field:sale.order,partner_shipping_id:0 msgid "Delivery Address" -msgstr "" +msgstr "Szállítási cím" #. module: sale #: view:sale.report:0 #: field:sale.report,analytic_account_id:0 #: field:sale.shop,project_id:0 msgid "Analytic Account" -msgstr "Analitikus számla" +msgstr "Analitikus/elemző könyvelés" #. module: sale #: field:sale.config.settings,module_sale_journal:0 msgid "Allow batch invoicing of delivery orders through journals" -msgstr "" +msgstr "Engedélyezi a köteg számlázást a megrendeléseken a naplók alapján" #. module: sale #: field:sale.order.line,price_subtotal:0 @@ -215,39 +227,39 @@ msgstr "Súly" #. module: sale #: view:sale.config.settings:0 msgid "Warehouse Features" -msgstr "" +msgstr "Raktárépület tulajdonságok" #. module: sale #: field:sale.config.settings,time_unit:0 msgid "The default working time unit for services is" -msgstr "" +msgstr "A szolgáltatások alapértelmezett munkaidő egysége" #. module: sale #: field:sale.order.line,product_uom:0 msgid "Unit of Measure " -msgstr "" +msgstr "Mértékegység " #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:101 #, python-format msgid "Incorrect Data" -msgstr "" +msgstr "Hibás adat" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:102 #, python-format msgid "The value of Advance Amount must be positive." -msgstr "" +msgstr "Az előleg mennyiség értékének pozitívnak kell lennie" #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 msgid "Allows you to apply some discount per sales order line." -msgstr "" +msgstr "Lehetővé teszi a megrendelés soraihoz árengedmény alkalmazását" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Megrendelés sorai melyek 'elvégezve' állapotúak" #. module: sale #: selection:sale.order.line,type:0 @@ -262,7 +274,7 @@ msgstr "Üzenetek" #. module: sale #: field:sale.report,state:0 msgid "Order Status" -msgstr "" +msgstr "Rendelés állapota" #. module: sale #: field:sale.order,amount_tax:0 @@ -278,7 +290,7 @@ msgstr "Nettó érték" #. module: sale #: field:sale.config.settings,module_project:0 msgid "Project" -msgstr "" +msgstr "Projekt" #. module: sale #: code:addons/sale/sale.py:360 @@ -288,7 +300,7 @@ msgstr "" #: code:addons/sale/sale.py:772 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: sale #: report:sale.order:0 @@ -302,6 +314,9 @@ msgid "" "replenishment.\n" "On order: When needed, the product is purchased or produced." msgstr "" +"Raktárról: Ha kell, a terméket a raktárról vesszük vagy várunk az alkatrész " +"feltöltésre.\n" +"Megrendelve: Ha kell, a terméket megvásároljuk vagy legyártjuk." #. module: sale #: help:sale.config.settings,module_analytic_user_function:0 @@ -314,6 +329,14 @@ msgid "" "available.\n" " This installs the module analytic_user_function." msgstr "" +"Lehetővé teszi a megadott számlára a kiválasztott felhasználó " +"alapértelmezett funkciójának meghatározását.\n" +" Ezt főként akkor használjuk ha a felhasználó az " +"időkimutatását kódolja. Az értékek felülíródnak és a mezők automatikusan " +"kitöltésre kerülnek.\n" +" Ezeknek az értékeknek a megváltoztatása azonban még mindig " +"lehetséges.\n" +" Ez a analytic_user_function modult telepíti." #. module: sale #: selection:sale.order,state:0 @@ -325,22 +348,22 @@ msgstr "Visszavonva" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines related to a Sales Order of mine" -msgstr "" +msgstr "Megrendelés sorok melyek összefüggenk az én megrendeléseimmel" #. module: sale #: selection:sale.order,state:0 msgid "Quotation Sent" -msgstr "" +msgstr "Elküldött mennyiség" #. module: sale #: model:ir.model,name:sale.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Email varázsló" #. module: sale #: help:sale.order,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: sale #: selection:sale.order,state:0 @@ -379,7 +402,7 @@ msgstr "Az értékesítési megbízás létrehozásának dátuma." #. module: sale #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Hamis" #. module: sale #: help:sale.advance.payment.inv,advance_payment_method:0 @@ -390,6 +413,13 @@ msgid "" " Use Some Order Lines to invoice a selection of the sales " "order lines." msgstr "" +"Használja mindet a végszámla elkészítéséhez.\n" +" Használjon százalékot a teljes mennyiség bizonyos " +"százalékának szálázásához.\n" +" Használjon fix árat egy bizonyos mennyiség díjbekérőjéhez / " +"előlegéhez.\n" +" Használjon egyes megrendelés sorokat a kiválasztott " +"megrendelés sorainak számlázásáahoz." #. module: sale #: view:sale.make.invoice:0 @@ -400,7 +430,7 @@ msgstr "Számlák létrehozása" #. module: sale #: report:sale.order:0 msgid "Tax" -msgstr "" +msgstr "ÁFA" #. module: sale #: code:addons/sale/sale.py:270 @@ -408,7 +438,7 @@ msgstr "" #: code:addons/sale/sale.py:976 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Érvénytelen lépés!" #. module: sale #: help:sale.order,state:0 @@ -420,6 +450,12 @@ msgid "" "The 'Waiting Schedule' status is set when the invoice is confirmed " " but waiting for the scheduler to run on the order date." msgstr "" +"Az árajánlatkérés vagy a megrendelés állapotát adja. \n" +"A kizárás állapot automatikusan beállított egy megszakítás művelet " +"elvégzésekkor egy számla érvényesítésekor (Számla kizárás) " +"vagy a kiválogatási lista műveletekben (Szállítási kizárás).\n" +"A 'Ütemezésre várakozás' állapot lesz beállítva, ha a számla visszaigazolt " +" de vár egy, a megrendelés dátumára futó ütemezésre." #. module: sale #: field:sale.report,date_confirm:0 @@ -438,11 +474,14 @@ 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: sale #: help:sale.order.line,sequence:0 msgid "Gives the sequence order when displaying a list of sales order lines." msgstr "" +"A megrendelés sorrendet adja ha a megrendelési sorok listáját jelzi ki." #. module: sale #: view:sale.report:0 @@ -461,11 +500,13 @@ msgstr "Fax:" msgid "" "In order to delete a confirmed sales order, you must cancel it before !" msgstr "" +"Ahhoz, hogy törölni tudjon egy visszaigazolt megrendelést, először meg kell " +"szakítani azt !" #. module: sale #: view:sale.order:0 msgid "(update)" -msgstr "" +msgstr "(Frissítés)" #. module: sale #: model:ir.model,name:sale.model_res_partner @@ -477,7 +518,7 @@ msgstr "Partner" #. module: sale #: view:sale.config.settings:0 msgid "Contract Features" -msgstr "" +msgstr "Szerződés tulajdonságai" #. module: sale #: code:addons/sale/sale.py:280 @@ -496,7 +537,7 @@ msgstr "Értékesítési megbízás" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Megrendelés sorai számlázásának engedélyezése" #. module: sale #: model:ir.model,name:sale.model_sale_order_line @@ -506,12 +547,12 @@ msgstr "Értékesítési megbízási sor" #. module: sale #: field:sale.advance.payment.inv,amount:0 msgid "Advance Amount" -msgstr "Előleg" +msgstr "Előleg összege" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "Ez mutatja, hogy a megrendelének legalább egy számlája van." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -519,16 +560,19 @@ msgid "" "Allows to manage different prices based on rules per category of customers.\n" "Example: 10% for retailers, promotion of 5 EUR on this product, etc." msgstr "" +"Lehetővé teszi különböző ár szervezését a vevő kategóriák szabályai " +"alapján.\n" +"Például: 10% a kiskereskedőknek, 5 EUR promóció erre a termékre, stb." #. module: sale #: field:sale.config.settings,module_analytic_user_function:0 msgid "One employee can have different roles per contract" -msgstr "" +msgstr "Egy munkavállalónak különböző funkciója lehet egy szerződésen belül" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Számlázza ki a teljes megrendelést" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -543,20 +587,20 @@ msgstr "Megerősítés" #. module: sale #: field:sale.config.settings,timesheet:0 msgid "Prepare invoices based on timesheets" -msgstr "" +msgstr "Az időkimutatások alapján készítsen elő számlát" #. module: sale #: code:addons/sale/sale.py:812 #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." -msgstr "" +msgstr "Nem tud megrendelési sor megszakítani amelyik már számlázva volt." #. module: sale #: view:account.invoice.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_turnover_by_month msgid "Monthly Turnover" -msgstr "" +msgstr "Havi forgalom" #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -572,22 +616,22 @@ msgstr "Év" #. module: sale #: field:sale.config.settings,group_uom:0 msgid "Allow using different units of measures" -msgstr "" +msgstr "Különböző mértékegységek használatának engedélyezése" #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Megrendelés visszaigazolva" #. module: sale #: view:sale.order:0 msgid "Sales Order that haven't yet been confirmed" -msgstr "" +msgstr "Megrendelés mely még nem lett visszaigazolva" #. module: sale #: view:sale.order:0 msgid "Print" -msgstr "" +msgstr "Nyomtatás" #. module: sale #: report:sale.order:0 @@ -610,6 +654,7 @@ msgstr "Áreng. (%)" #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" +"Kérem határozzon meg bevételi számlát ehhez a termékhez: \"%s\" (id:%d)." #. module: sale #: field:sale.order.line,invoice_lines:0 @@ -626,6 +671,8 @@ msgstr "Teljes ár" #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." msgstr "" +"Lehetővé teszi az analitikus/elemző könyvelés meghatározását a " +"megrendeléseken." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -635,6 +682,10 @@ msgid "" " and perform batch operations on journals.\n" " This installs the module sale_journal." msgstr "" +"Lehetővé teszi az értékesítések és szállítások (kiválogatási listák) " +"kategorizálását különböző naplók közt,\n" +" és kötegelt művelet elvégzését a naplókon.\n" +" Ez a sale_journal modult telepíti." #. module: sale #: help:sale.make.invoice,grouped:0 @@ -653,12 +704,12 @@ msgstr "Számlák készítése" #: code:addons/sale/res_config.py:89 #, python-format msgid "Hour" -msgstr "" +msgstr "Óra" #. module: sale #: field:res.partner,sale_order_count:0 msgid "# of Sales Order" -msgstr "" +msgstr "# megrendelésből" #. module: sale #: help:sale.config.settings,timesheet:0 @@ -669,6 +720,11 @@ msgid "" "user-wise as well as month wise.\n" " This installs the module account_analytic_analysis." msgstr "" +"A számla elemzés nézetének módosítása a vállalat szolgáltatás projekt " +"szervezőjének fontos adatok hozzáféréséhez.\n" +" Megtekintheti a könyvvitel összegző elemzés jelentést " +"felhasználókra lebontva vagy havi bontásban.\n" +" Ez a account_analytic_analysis modult telepíti." #. module: sale #: field:sale.order,create_date:0 @@ -689,17 +745,17 @@ msgstr "Az aktuális értékesítési megbízás számlázási címe." #. module: sale #: selection:sale.order,invoice_quantity:0 msgid "Ordered Quantities" -msgstr "Rendelt mennyiségek" +msgstr "Megrendelt mennyiségek" #. module: sale #: view:sale.report:0 msgid "Ordered Year of the sales order" -msgstr "" +msgstr "A megrendelések megrendelés éve" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Címek a megrendeléseken" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -716,7 +772,7 @@ msgstr "Bruttó ár:" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Megrendelési sorok készen állnak számlázásra" #. module: sale #: view:sale.report:0 @@ -752,11 +808,21 @@ msgid "" " \n" "* The 'Cancelled' status is set when a user cancel the sales order related." msgstr "" +"* A 'Terv' állapot beállított, ha az idevonatkozó megrendelés tervezet " +"állapotú. \n" +"* A 'Visszaigazolt' állapot beállított, ha az idevonatkozó megrendelés " +"visszaigazolt. \n" +"* A 'Kifogás' állapot beállított, ha az idevonatkozó megrendelés kifogásolt. " +" \n" +"* A 'Elvégzett' állapot beállított, ha az idevonatkozó megrendelés sor " +"kiválogatott. \n" +"* A 'Megszakított' állapot beállított, ha az idevonatkozó megrendelést egy " +"felhasználó megszakította." #. module: sale #: view:sale.config.settings:0 msgid "Default Options" -msgstr "" +msgstr "Alapértelmezett lehetőségek" #. module: sale #: code:addons/sale/sale.py:953 @@ -764,12 +830,12 @@ msgstr "" #: code:addons/sale/wizard/sale_make_invoice_advance.py:95 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Beállítási hiba!" #. module: sale #: field:account.config.settings,group_analytic_account_for_sales:0 msgid "Analytic accounting for sales" -msgstr "" +msgstr "Analitikus/elemző könyvelés az értékesítésekhez" #. module: sale #: view:sale.order:0 @@ -786,27 +852,29 @@ msgid "" "After clicking 'Show Lines to Invoice', select lines to invoice and create " "the invoice from the 'More' dropdown menu." msgstr "" +"A 'Mutasd a számlázandó sorokat' kattintás után, válasszon ki számlázandó " +"sorokat és hozza létre a számlát a 'Tovább' legördülő menüből." #. module: sale #: view:sale.order:0 msgid "Send by Email" -msgstr "" +msgstr "Küldés Email-ben" #. module: sale #: code:addons/sale/edi/sale_order.py:140 #, python-format msgid "EDI Pricelist (%s)" -msgstr "" +msgstr "EDI (Elektromos adatcserélő rendszer) Árlista (%s)" #. module: sale #: selection:sale.order,order_policy:0 msgid "On Delivery Order" -msgstr "" +msgstr "Kiszállítási Kiszolgáltatási jegyen" #. module: sale #: view:sale.config.settings:0 msgid "Invoicing Process" -msgstr "" +msgstr "Számlázási folyamatok" #. module: sale #: view:sale.order:0 @@ -816,19 +884,20 @@ msgstr "Megrendelés dátuma" #. module: sale #: view:sale.order:0 msgid "Sales Order done" -msgstr "" +msgstr "Megrendelés elvégezve" #. module: sale #: code:addons/sale/sale.py:361 #, python-format msgid "Please define sales journal for this company: \"%s\" (id:%d)." msgstr "" +"Kérem határozzon meg értékesítési naplót ehhez a vállalthoz: \"%s\" (id:%d)." #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order #: view:res.partner:0 msgid "Quotations and Sales" -msgstr "" +msgstr "Árajánlatok és Értékesítések" #. module: sale #: field:sale.order,invoiced:0 @@ -840,21 +909,23 @@ msgstr "Fizetve" msgid "" "Allows you to select and maintain different units of measure for products." msgstr "" +"Lehetővé teszi a termékek különböző mértékegységeinek kiválasztását és " +"karbantartását." #. module: sale #: view:sale.report:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referencia mértékegység" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Create and View Invoice" -msgstr "" +msgstr "Számla létrehozása és megtekintése" #. module: sale #: view:sale.order.line:0 msgid "Sales order lines done" -msgstr "" +msgstr "Megrendelési sorok elvégezve" #. module: sale #: field:sale.make.invoice,grouped:0 @@ -875,7 +946,7 @@ msgstr "Számla generálása értékesítésből" #: code:addons/sale/sale.py:300 #, python-format msgid "Pricelist Warning!" -msgstr "" +msgstr "Árlista figyelmeztés!" #. module: sale #: field:sale.order.line,discount:0 @@ -891,15 +962,15 @@ msgid "" "1.The state of this sales order line is either \"draft\" or \"cancel\"!\n" "2.The Sales Order Line is Invoiced!" msgstr "" -"Nem készíthet számlát ehhez az értékesítési megbízási sorhoz, az alábbi okok " -"egyikének következtében:\n" -"1. Az értékesítési megbízás sorának állapota: \"Tervezet\" vagy \"Mégsem\".\n" -"2. Az értékesítési megbízás sor már kiszámlázásra került." +"Nem készíthet számlát ehhez a megrendelés sorhoz, az alábbi okok egyikének " +"következtében:\n" +"1. A megrendelés sorának állapota: \"Tervezet\" vagy \"Mégsem\".\n" +"2. A megrendelési sor már kiszámlázásra került." #. module: sale #: view:sale.order.line.make.invoice:0 msgid "Create & View Invoice" -msgstr "" +msgstr "Számla létrehozása & megtekintése" #. module: sale #: view:board.board:0 @@ -920,7 +991,7 @@ msgstr "December" #. module: sale #: view:sale.config.settings:0 msgid "Contracts Management" -msgstr "" +msgstr "Szerződések kezelése" #. module: sale #: view:sale.order.line:0 @@ -936,7 +1007,7 @@ msgstr "Hónap" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: sale #: view:sale.order.line:0 @@ -953,7 +1024,7 @@ msgstr "Termékkaterógia" #: code:addons/sale/sale.py:558 #, python-format msgid "Cannot cancel this sales order!" -msgstr "" +msgstr "Nem lehet megszakítani ezt a megrendelést!" #. module: sale #: view:sale.order:0 @@ -963,7 +1034,7 @@ msgstr "Számla újrakészítése" #. module: sale #: field:sale.config.settings,module_warning:0 msgid "Allow configuring alerts by customer or products" -msgstr "" +msgstr "Engedélyezi riasztás beállítását vevőkre vagy termékekre" #. module: sale #: field:sale.shop,name:0 @@ -973,7 +1044,7 @@ msgstr "Üzlet neve" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Az én megrendeléseim" #. module: sale #: report:sale.order:0 @@ -998,17 +1069,19 @@ msgid "" "To allow your salesman to make invoices for sales order lines using the menu " "'Lines to Invoice'." msgstr "" +"Lehetővé teszi az értékesítők részére a megrendelések soraira történő " +"számlázást a 'Számlázandó sorok' menü használatával" #. module: sale #: model:ir.actions.client,name:sale.action_client_sale_menu msgid "Open Sale Menu" -msgstr "" +msgstr "Értékesítési menü megnyitása" #. module: sale #: code:addons/sale/sale.py:592 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "" +msgstr "Nem tud visszaigazolni sor nélküli megrendelést" #. module: sale #: selection:sale.report,state:0 @@ -1025,6 +1098,7 @@ msgstr "Nincs vevő megadva!" #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" msgstr "" +"Kiszállítási Kiszolgáltatási jegy automatikus létrehozása a megrendelésekből" #. module: sale #: view:sale.make.invoice:0 @@ -1041,7 +1115,7 @@ msgstr "Megerősítve" #: code:addons/sale/wizard/sale_make_invoice_advance.py:106 #, python-format msgid "Advance of %s %%" -msgstr "" +msgstr "Ennyi előleg %s %%" #. module: sale #: model:ir.model,name:sale.model_sale_order_line_make_invoice @@ -1056,17 +1130,17 @@ msgstr "Tervezet" #. module: sale #: model:ir.actions.act_window,name:sale.action_email_templates msgid "Email Templates" -msgstr "" +msgstr "E-mail sablonok" #. module: sale #: help:sale.order.line,address_allotment_id:0 msgid "A partner to whom the particular product needs to be allotted." -msgstr "" +msgstr "A partner akihez a szóban forgó terméket ki kell helyezni." #. module: sale #: field:sale.order,project_id:0 msgid "Contract / Analytic" -msgstr "" +msgstr "Szerződés / Elemzés" #. module: sale #: selection:sale.order,state:0 @@ -1077,7 +1151,7 @@ msgstr "Ütemezésre vár" #. module: sale #: field:sale.order,note:0 msgid "Terms and conditions" -msgstr "" +msgstr "Kikötések és feltételek" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders @@ -1094,12 +1168,12 @@ msgstr "Az adó összege" #. module: sale #: field:sale.order,invoiced_rate:0 msgid "Invoiced Ratio" -msgstr "" +msgstr "Számlázási arány/árfolyam" #. module: sale #: selection:sale.order,order_policy:0 msgid "On Demand" -msgstr "" +msgstr "Készleten" #. module: sale #: selection:sale.report,month:0 @@ -1134,6 +1208,16 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1158,6 +1242,8 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Megrendelési sorok, melyek visszaigazoltak, elvégzettek vagy kifogásolt " +"állapotú és még nincs számlázva" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1167,7 +1253,7 @@ msgstr "Értékesítési megbízási statisztikák" #. module: sale #: field:sale.order,date_order:0 msgid "Date" -msgstr "" +msgstr "Dátum" #. module: sale #: report:sale.order:0 @@ -1178,7 +1264,7 @@ msgstr "" #: view:sale.report:0 #: field:sale.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Értékesítő" #. module: sale #: selection:sale.report,month:0 @@ -1237,6 +1323,9 @@ msgid "" "Manage Related Stock.\n" " This installs the module sale_stock." msgstr "" +"Lehetővé teszi a különböző megrendelés stratégia szerinti Árajánlat, " +"Megrendelés létrehozását és az ide vonatkozó raktár kezelését.\n" +" Ez a sale_stock modult telepíti." #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -1245,6 +1334,9 @@ msgid "" " You may have to create it and set it as a default value on " "this field." msgstr "" +"Kiválasztja az úgynevezett 'Fejlesztő termék' szolgáltatás típusú terméket.\n" +" Létre kell hoznia és mint a mezőhöz tartozó alapértelmezett " +"értéket beállítania." #. module: sale #: selection:sale.report,month:0 @@ -1254,7 +1346,7 @@ msgstr "Január" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Engedélyezi a megrendelés soraira az árengedmény beállítását" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1269,6 +1361,10 @@ msgid "" " or a fixed price (for advances) directly from the sales " "order form if you prefer." msgstr "" +"Ezen a megrendelésen minden sor tétel számlázva lesz. Lehetősége van a " +"megrendelés egy bizonyos százalékának számlázására\n" +" vagy fix ár (az előlegekre) direkt a megrendelés " +"űrlapról ha kívánja." #. module: sale #: help:sale.config.settings,module_warning:0 @@ -1278,31 +1374,36 @@ msgid "" "Example: Product: this product is deprecated, do not purchase more than 5.\n" " Supplier: don't forget to ask for an express delivery." msgstr "" +"Lehetővé teszi a termék értesítéseket, melyeket kapcsolhatjuk, ha egy " +"felhasználó egy megadott terméket értékesíteni akar vagy egy vevőre.\n" +"Például: Termék: Ezt a terméket érvénytelenítsd, nem lehet 5-nél többet " +"vásárolni.\n" +" Beszállító: Ne felejts el expressz szállításról érdeklődni." #. module: sale #: field:sale.order,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: sale #: help:sale.order,project_id:0 msgid "The analytic account related to a sales order." -msgstr "Az értékesítési megbízáshoz kapcsolódó analitikus számla." +msgstr "Az értékesítési megbízáshoz kapcsolódó analitikus/elemző számla." #. module: sale #: view:sale.order:0 msgid "View Invoice" -msgstr "" +msgstr "Számla megtekintése" #. module: sale #: field:sale.advance.payment.inv,advance_payment_method:0 msgid "What do you want to invoice?" -msgstr "" +msgstr "Mit szeretne számlázni?" #. module: sale #: field:sale.config.settings,group_sale_pricelist:0 msgid "Use pricelists to adapt your price per customers" -msgstr "" +msgstr "Használja az árlistát a vevőnkénti ár átdolgozására" #. module: sale #: model:process.transition,note:sale.process_transition_confirmquotation0 @@ -1321,6 +1422,8 @@ msgid "" "You have to select a pricelist or a customer in the sales form !\n" "Please set one before choosing a product." msgstr "" +"Választania kell egy árlistát vagy egy vevőt az értékesítési űrlapon !\n" +"Kérem egyik kiválasztását mielőtt terméket választana." #. module: sale #: help:sale.order,origin:0 @@ -1333,14 +1436,14 @@ msgstr "" #: code:addons/sale/sale.py:948 #, python-format msgid "No valid pricelist line found ! :" -msgstr "" +msgstr "Nem alálható érvényes árlista sor ! :" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:113 #: code:addons/sale/wizard/sale_make_invoice_advance.py:115 #, python-format msgid "Advance of %s %s" -msgstr "" +msgstr "Ennyi előleg %s %s" #. module: sale #: view:sale.report:0 @@ -1359,7 +1462,7 @@ msgstr "Árajánlatok" #. module: sale #: help:account.config.settings,module_sale_analytic_plans:0 msgid "This allows install module sale_analytic_plans." -msgstr "" +msgstr "Ez lehetővé teszi a sale_analytic_plans telepítését." #. module: sale #: view:sale.order:0 @@ -1369,12 +1472,12 @@ msgstr "Hiba figyelmen kívül hagyása" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Delivery address for current sales order." -msgstr "" +msgstr "Szállítási cím a jelenlegi megrendeléshez." #. module: sale #: field:sale.config.settings,module_sale_margin:0 msgid "Display margins on sales orders" -msgstr "" +msgstr "A Megrendelésk árkülönbözetének megjelenítése" #. module: sale #: help:sale.order,invoice_ids:0 @@ -1395,7 +1498,7 @@ msgstr "Az Ön hivatkozása" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Show Lines to Invoice" -msgstr "" +msgstr "Mutassa a számlázandó sorokat" #. module: sale #: field:sale.report,date:0 @@ -1418,7 +1521,7 @@ msgstr "ÁFA:" #: code:addons/sale/sale.py:441 #, python-format msgid "Customer Invoices" -msgstr "" +msgstr "Kimenő számlák" #. module: sale #: model:process.node,note:sale.process_node_order0 @@ -1447,6 +1550,8 @@ msgid "" "If you change the pricelist of this order (and eventually the currency), " "prices of existing order lines will not be updated." msgstr "" +"Ha ennek a megrendelésnek az árlistáját megváltoztatja (esetleg a " +"pénznemet), a meglévő megrendelés sorai nem lesznek frissítve." #. module: sale #: view:sale.order.line:0 @@ -1494,7 +1599,7 @@ msgstr "Számla" #. module: sale #: view:sale.order.line:0 msgid "My Sales Order Lines" -msgstr "" +msgstr "Az én megrendeléseim sorai" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancel0 @@ -1504,7 +1609,7 @@ msgstr "" #: view:sale.order.line:0 #: view:sale.order.line.make.invoice:0 msgid "Cancel" -msgstr "Mégsem" +msgstr "Törlés" #. module: sale #: field:sale.order,message_follower_ids:0 @@ -1515,18 +1620,18 @@ msgstr "Követők" #: code:addons/sale/sale.py:937 #, python-format msgid "No Pricelist ! : " -msgstr "" +msgstr "Nincs árlista ! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Megrendelés " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Árajánlat küldés" #. module: sale #: view:sale.order.line:0 @@ -1536,12 +1641,12 @@ msgstr "Számlázatlan sorok keresése" #. module: sale #: model:ir.model,name:sale.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: sale #: sql_constraint:sale.order:0 msgid "Order Reference must be unique per Company!" -msgstr "" +msgstr "A megrendelési referanciának egyedinek kell lenni vállalatonként!" #. module: sale #: model:ir.actions.act_window,help:sale.action_order_line_tree2 @@ -1557,6 +1662,15 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" " #. module: sale #: report:sale.order:0 @@ -1569,11 +1683,13 @@ msgstr "Szállítási cím:" msgid "" "You cannot group sales having different currencies for the same partner." msgstr "" +"Nem csoportosíthat értékesítést, ha ugyan ahhoz a partnerhez különböző " +"devizák vannak." #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Megrendelés számlázás" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1582,11 +1698,14 @@ msgid "" "invoice). You have to choose " "if you want your invoice based on ordered " msgstr "" +"A megrendelés automatikusan létre lesz hozva a díjbekérő / előleg (Számla " +"terv) alapján. Választhatja, ha " +"akarja a számlázást a megrendelés alapján " #. module: sale #: field:sale.config.settings,module_account_analytic_analysis:0 msgid "Use contracts management" -msgstr "" +msgstr "Szerződés szervezés használata" #. module: sale #: code:addons/sale/sale.py:945 @@ -1595,6 +1714,8 @@ msgid "" "Cannot find a pricelist line matching this product and quantity.\n" "You have to change either the product, the quantity or the pricelist." msgstr "" +"Nem található ehhez a termékhez és mennyiséghez hasonló árlista sor.\n" +"Változtassa meg vagy a terméket, a mennyiséget vagy az árlistát." #. module: sale #: model:ir.model,name:sale.model_sale_advance_payment_inv @@ -1619,7 +1740,7 @@ msgstr "Összeg adó nélkül." #. module: sale #: view:sale.order.line:0 msgid "Order reference" -msgstr "" +msgstr "Megrendelési hivatkozás" #. module: sale #: help:sale.order,invoiced:0 @@ -1635,7 +1756,7 @@ msgstr "Egységár" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Percentage" -msgstr "" +msgstr "Százalék" #. module: sale #: view:sale.order:0 @@ -1747,13 +1868,14 @@ msgstr "A végösszeg." #. module: sale #: view:sale.order:0 msgid "Confirm Sale" -msgstr "" +msgstr "Értékesítés jóváhagyás" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:96 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Nincs bevételi számla meghatározva ehhez a termékhez: \"%s\" (id:%d)." #. module: sale #: selection:sale.report,month:0 @@ -1766,6 +1888,8 @@ msgid "" "${object.company_id.name} ${object.state in ('draft', 'sent') and " "'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" msgstr "" +"${object.company_id.name} ${object.state in ('Terv', 'küldött') és " +"'Árajánlatkérés' vagy 'Megrendelés'} (Ref ${object.name or 'n/a' })" #. module: sale #: report:sale.order:0 @@ -1782,6 +1906,12 @@ msgid "" "Before delivery: A draft invoice is created from the sales order and must be " "paid before the products can be delivered." msgstr "" +"Igényléskori: Egy terv/előleg számla hozható létre a megrendelésből, ha " +"szükséges. \n" +"A kézbesítési bizonylatkor: Egy terv/előleg számla hozható létre a " +"kézbesítési bizonylatra ha az árut szállításba adták. \n" +"Szállítás előtt: Egy terv/előleg számla hozható létre a megrendelésből és ki " +"kell egyenlíteni mielőtt az árut kiszállítanák." #. module: sale #: model:ir.actions.act_window,help:sale.action_order_report_all @@ -1833,11 +1963,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kettintson árajánlat létrehozásához, ez az új értékesítés " +"első lépése.\n" +"

\n" +" OpenERP segít a hatékony értékesítési folyamat hatékony " +"kezelésében:\n" +" a megrendelés visszaigazolásában, a szállításban,\n" +" a számlázásban és az áru ellenértékének beszedésében.\n" +"

\n" +" A társadalmi jellemzők segítenek az értékesítések " +"megbeszélésének szervezésében,\n" +" és lehetővé teszik a megrendeléseken a vásárlói fejlődésének " +"követését.\n" +"

\n" +" " #. module: sale #: view:res.partner:0 msgid "sale.group_delivery_invoice_address" -msgstr "" +msgstr "sale.group_delivery_invoice_address" #. module: sale #: code:addons/sale/sale.py:773 @@ -1846,6 +1991,8 @@ msgid "" "There is no Fiscal Position defined or Income category account defined for " "default properties of Product categories." msgstr "" +"Nincs költségvetési hely meghatározva vagy bevételi számla kategória " +"meghatározva az alapértelmezett termék kategória tulajdonságokban." #. module: sale #: model:process.node,note:sale.process_node_invoice0 @@ -1855,17 +2002,17 @@ msgstr "Ellenőrizendő a könyvelő által." #. module: sale #: model:res.groups,name:sale.group_mrp_properties msgid "Properties on lines" -msgstr "" +msgstr "A sorok tulajdonságai" #. module: sale #: selection:sale.order,state:0 msgid "Sale to Invoice" -msgstr "" +msgstr "Számlázandó értékesítés" #. module: sale #: view:sale.order:0 msgid "Order Number" -msgstr "" +msgstr "Megrendelés szám" #. module: sale #: view:sale.order:0 @@ -1898,6 +2045,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson megrendelésre átalakítható árajánlat " +"létrehozásához.\n" +"

\n" +" OpenERP segít a hatékony értékesítési folyamat hatékony " +"kezelésében:\n" +" árajánlat, megrendelés, szállítás, számlázás és " +"kiegyenlítés.\n" +"

\n" +" " #. module: sale #: field:sale.order,invoice_quantity:0 @@ -1907,12 +2064,12 @@ msgstr "Számlázás alapja" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Fixed price (deposit)" -msgstr "" +msgstr "Fix ár (letétbe helyezés)" #. module: sale #: model:ir.model,name:sale.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: sale #: selection:sale.report,month:0 @@ -1927,7 +2084,7 @@ msgstr "Rendelés dátuma" #. module: sale #: selection:sale.order,order_policy:0 msgid "Before Delivery" -msgstr "" +msgstr "Szállítás előtt" #. module: sale #: field:sale.order.line,product_uos:0 @@ -1937,7 +2094,7 @@ msgstr "Termék eladási egysége" #. module: sale #: model:process.node,note:sale.process_node_quotation0 msgid "Draft state of sales order" -msgstr "Az értékesítési megbízás tervezet állapota" +msgstr "A megrendelés tervezet állapota" #. module: sale #: field:sale.order,origin:0 @@ -1959,7 +2116,7 @@ msgstr "Manuális vezérléssel folyamatban" #: code:addons/sale/wizard/sale_make_invoice.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Figyelem!" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree @@ -1986,11 +2143,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson ehhez a vevőhöz tartozó árajánlat vagy " +"megrendelés létrehozásához.\n" +"

\n" +" OpenERP segít a hatékony értékesítési folyamat hatékony " +"kezelésében:\n" +" árajánlat, megrendelés, szállítás,számlázás és " +"kiegyenlítés.\n" +"

\n" +" A társadalmi jellemzők segítenek az értékesítések " +"megbeszélésének szervezésében,\n" +" és lehetővé teszik a megrendeléseken a vásárlói fejlődésének " +"követését.\n" +" order, and allow your customer to keep track of the " +"evolution\n" +" of the sales order.\n" +"

\n" +" " #. module: sale #: field:sale.order,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Összegzés" #. module: sale #: help:sale.order,message_ids:0 @@ -2017,11 +2192,14 @@ msgid "" "with\n" " your customer." msgstr "" +"Használja a szerződést, hogy a többes számlázással tudja szervezni a\n" +" szolgáltatásait, ugyanannak a vevőnek a szerződése \n" +" részeként." #. module: sale #: view:sale.report:0 msgid "Ordered month of the sales order" -msgstr "" +msgstr "A megrendelés megrendelési hónapja" #. module: sale #: model:process.transition,name:sale.process_transition_saleinvoice0 @@ -2031,7 +2209,7 @@ msgstr "Értékesítési megbízásból" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Visszaigazolt megrendelési sorok, amik még nem kiszálítottak" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2054,13 +2232,14 @@ msgstr "EE" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Some order lines" -msgstr "" +msgstr "Néhány megrendelés sor" #. module: sale #: code:addons/sale/sale.py:976 #, python-format msgid "Cannot delete a sales order line which is in state '%s'." msgstr "" +"Nem törölhető az a megrendelési sor amelyik ebben az állapotban van '%s'." #. module: sale #: report:sale.order:0 @@ -2071,19 +2250,19 @@ msgstr "Fizetési feltétel" #. module: sale #: view:sale.order:0 msgid "Sales Order ready to be invoiced" -msgstr "" +msgstr "Számlázásra kész megrendelés" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Számla létrehozása a megrendelési sorokra" #. module: sale #: view:sale.advance.payment.inv:0 #: view:sale.make.invoice:0 #: view:sale.order.line.make.invoice:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_product_tree @@ -2105,7 +2284,7 @@ msgstr "Árajánlat száma" #. module: sale #: model:res.groups,name:sale.group_discount_per_so_line msgid "Discount on lines" -msgstr "" +msgstr "Árengedmény a sorokon" #. module: sale #: field:sale.order,client_order_ref:0 @@ -2125,6 +2304,10 @@ msgid "" "between the Unit Price and Cost Price.\n" " This installs the module sale_margin." msgstr "" +"Ez hozzáadja az 'Árrés' -t a megrendelésre.\n" +" Jövedelmezőséget ad az egységár és a költség ár " +"különbözetéből.\n" +" Ez a sale_margin modult telepíti." #. module: sale #: code:addons/sale/sale.py:857 @@ -2133,6 +2316,8 @@ msgid "" "Before choosing a product,\n" " select a customer in the sales form." msgstr "" +"Mielőtt választana egy terméket,\n" +" válasszon egy vevőt az értékesítési űrlapon." #. module: sale #: view:sale.order:0 @@ -2142,7 +2327,7 @@ msgstr "Végösszeg adókkal együtt" #. module: sale #: view:sale.order:0 msgid "New Copy of Quotation" -msgstr "" +msgstr "Árajánlat új másolata" #. module: sale #: view:sale.advance.payment.inv:0 @@ -2151,8 +2336,11 @@ msgid "" " will create a draft invoice that can be modified\n" " before validation." msgstr "" +"Válassza ki, hogy akarja számlázni ezt a megrendelést. Ez\n" +" létre fogja hozni a számla tervet amit módosíthat a\n" +" jóváhagyás előtt." #. module: sale #: view:sale.report:0 msgid "Ordered date of the sales order" -msgstr "" +msgstr "A megrendelés megrendelési dátuma" diff --git a/addons/sale/i18n/id.po b/addons/sale/i18n/id.po index de22b393426..168aceae59e 100644 --- a/addons/sale/i18n/id.po +++ b/addons/sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/is.po b/addons/sale/i18n/is.po index 6e94d27c471..b55873ae733 100644 --- a/addons/sale/i18n/is.po +++ b/addons/sale/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -1078,7 +1078,7 @@ msgstr "" #: model:ir.ui.menu,name:sale.menu_sale_order #: view:sale.order:0 msgid "Sales Orders" -msgstr "" +msgstr "Sölu pantanir" #. module: sale #: help:sale.order,amount_tax:0 @@ -1156,7 +1156,7 @@ msgstr "" #. module: sale #: model:ir.model,name:sale.model_sale_report msgid "Sales Orders Statistics" -msgstr "" +msgstr "Tölfræði yfir Sölu Pantanir" #. module: sale #: field:sale.order,date_order:0 diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index dd32f07a6e2..920a3127db8 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ja.po b/addons/sale/i18n/ja.po index 13d0441c7bf..1129e957bfa 100644 --- a/addons/sale/i18n/ja.po +++ b/addons/sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 26bbf9e9276..ae5a6539a1b 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lo.po b/addons/sale/i18n/lo.po index f4fb7bd584b..443519fb4a1 100644 --- a/addons/sale/i18n/lo.po +++ b/addons/sale/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lt.po b/addons/sale/i18n/lt.po index 8e43be40d0c..937ac0be15d 100644 --- a/addons/sale/i18n/lt.po +++ b/addons/sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lv.po b/addons/sale/i18n/lv.po index 911e9e272f5..f39dac45caa 100644 --- a/addons/sale/i18n/lv.po +++ b/addons/sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/mn.po b/addons/sale/i18n/mn.po index 40279c4af0c..5ffb1661c5f 100644 --- a/addons/sale/i18n/mn.po +++ b/addons/sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nb.po b/addons/sale/i18n/nb.po index 8b6f7f17810..8b42405c40d 100644 --- a/addons/sale/i18n/nb.po +++ b/addons/sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl.po b/addons/sale/i18n/nl.po index 9097f6a9a07..b6aa1fb9ace 100644 --- a/addons/sale/i18n/nl.po +++ b/addons/sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index 7587215c226..13d43eb99e8 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/oc.po b/addons/sale/i18n/oc.po index eff40118666..b10ae26afbc 100644 --- a/addons/sale/i18n/oc.po +++ b/addons/sale/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index d4c8183066b..ef9d22d9c08 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -64,7 +64,7 @@ msgstr "Partner współpracujący" #. module: sale #: model:ir.actions.act_window,name:sale.action_view_sale_advance_payment_inv msgid "Invoice Order" -msgstr "" +msgstr "Zakturuj zamówienie" #. module: sale #: view:sale.config.settings:0 @@ -162,7 +162,7 @@ msgstr "Pozycje dostarczone i niezafakturowane" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Oferta potwierdzona" #. module: sale #: selection:sale.order,state:0 @@ -248,12 +248,12 @@ msgstr "Wartość przedpłaty musi być dodatnia" #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 msgid "Allows you to apply some discount per sales order line." -msgstr "" +msgstr "Pozwala zastosować upust do pozycji zamównienia sprzedaży." #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Pozycje zamówienia sprzedaży, które są w stanie 'wykonano'" #. module: sale #: selection:sale.order.line,type:0 @@ -399,6 +399,12 @@ msgid "" " Use Some Order Lines to invoice a selection of the sales " "order lines." msgstr "" +"Stosuje Wszystko do fakturowania całościowego.\n" +" Stosuj Procentowo do fakturowania częściowego.\n" +" Stosuj Ustalona cena do fakturowania konkretnej kwoty " +"zaliczkowej.\n" +" Stosuj Część pozycji do fakturowania wybranych pozycji " +"zamówienia." #. module: sale #: view:sale.make.invoice:0 @@ -473,6 +479,7 @@ msgstr "Faks :" msgid "" "In order to delete a confirmed sales order, you must cancel it before !" msgstr "" +"Aby usunąć potwierdzone zamówienia sprzedaży, musisz najpierw je anulować." #. module: sale #: view:sale.order:0 @@ -508,7 +515,7 @@ msgstr "Zamówienie sprzedaży" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Włącz fakturowanie pozycji zamówienia sprzedaży" #. module: sale #: model:ir.model,name:sale.model_sale_order_line @@ -523,7 +530,7 @@ msgstr "Kwota zaliczki" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "To oznacza, że zamówienie ma co najmniej jedną fakturę." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -540,7 +547,7 @@ msgstr "jeden pracownik może mieć różne role dla umowy" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Fakturuj całe zamówienie sprzedaży" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -562,6 +569,8 @@ msgstr "Generuj faktury na podstawie karty czasu pracy" #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." msgstr "" +"Nie możesz anulować pozycji zamówienia sprzedaży, która już została " +"zafakturowana." #. module: sale #: view:account.invoice.report:0 @@ -589,7 +598,7 @@ msgstr "Pozwala stosowac różne jednostki miary" #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Zamówienie sprzedaży potwierdzone" #. module: sale #: view:sale.order:0 @@ -637,7 +646,7 @@ msgstr "Pełna cena" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Pozwala podać konto analityczne na zamówieniu sprzedaży" #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -709,7 +718,7 @@ msgstr "Rok zamówienia sprzedaży" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Adresy na zamówieniach sprzedaży" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -726,7 +735,7 @@ msgstr "Suma :" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Pozycje zamówienia sprzedaży gotowe do fakturowania" #. module: sale #: view:sale.report:0 @@ -866,7 +875,7 @@ msgstr "Utwórz i pokaż fakturę" #. module: sale #: view:sale.order.line:0 msgid "Sales order lines done" -msgstr "" +msgstr "Wykonane pozycje zamówienia sprzedaży" #. module: sale #: field:sale.make.invoice,grouped:0 @@ -948,7 +957,7 @@ msgstr "Miesiąc" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Waluta" #. module: sale #: view:sale.order.line:0 @@ -985,7 +994,7 @@ msgstr "Nazwa sklepu" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Moje zamówienia sprzedaży" #. module: sale #: report:sale.order:0 @@ -1010,6 +1019,8 @@ msgid "" "To allow your salesman to make invoices for sales order lines using the menu " "'Lines to Invoice'." msgstr "" +"Aby pozwolić sprzedawcy fakturować zamówienie po pozycjach przy pomocy menu " +"'Pozycje do fakturowania'." #. module: sale #: model:ir.actions.client,name:sale.action_client_sale_menu @@ -1020,7 +1031,7 @@ msgstr "Otwórz menu Sprzedaż" #: code:addons/sale/sale.py:592 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "" +msgstr "Nie możesz potwierdzić zamówienia sprzedaży bez pozycji." #. module: sale #: selection:sale.report,state:0 @@ -1036,7 +1047,7 @@ msgstr "Nie zdefiniowano żadnego klienta !" #. module: sale #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" -msgstr "" +msgstr "Uruchamia wydania automatycznie z zamówień sprzedaży." #. module: sale #: view:sale.make.invoice:0 @@ -1106,7 +1117,7 @@ msgstr "Kwota podatku" #. module: sale #: field:sale.order,invoiced_rate:0 msgid "Invoiced Ratio" -msgstr "" +msgstr "Współczynnik zafakturowanych" #. module: sale #: selection:sale.order,order_policy:0 @@ -1268,7 +1279,7 @@ msgstr "Styczeń" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Pozwól na upusty na pozycjach zamówienia sprzedaży" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1536,13 +1547,13 @@ msgstr "Brak cennika ! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Zamówienia sprzedaży " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Oferta wysłana" #. module: sale #: view:sale.order.line:0 @@ -1597,7 +1608,7 @@ msgstr "" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Fakturuj zamówienie sprzedaży" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -2063,7 +2074,7 @@ msgstr "Z zamówienia sprzedaży" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Potwierdzone zamówienia sprzedaży, jeszcze nie wydane" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2109,7 +2120,7 @@ msgstr "Zamówienia sprzedaży gotowe do fakturowania" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Generuj faktury na podstawie pozycji zamówień sprzedaży" #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/sale/i18n/pt.po b/addons/sale/i18n/pt.po index 8fd2ba36d46..970d07e5254 100644 --- a/addons/sale/i18n/pt.po +++ b/addons/sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 6d94c07d072..1495ed1d505 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -65,7 +65,7 @@ msgstr "Parceiro designado" #. module: sale #: model:ir.actions.act_window,name:sale.action_view_sale_advance_payment_inv msgid "Invoice Order" -msgstr "" +msgstr "Ordem de Fatura" #. module: sale #: view:sale.config.settings:0 @@ -168,7 +168,7 @@ msgstr "Itens Entregues e não Faturados." #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Cotação Confirmada" #. module: sale #: selection:sale.order,state:0 @@ -254,12 +254,12 @@ msgstr "O valor do Adiantamento deve ser positivo." #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 msgid "Allows you to apply some discount per sales order line." -msgstr "" +msgstr "Permite aplicar algum desconto por linha do pedido de venda" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Linhas do Pedido de Venda que estão como Concluído." #. module: sale #: selection:sale.order.line,type:0 @@ -413,6 +413,12 @@ msgid "" " Use Some Order Lines to invoice a selection of the sales " "order lines." msgstr "" +"Use Todos para criar a fatura final.\n" +"                 Use Porcentagem para faturar uma parte do valor total.\n" +"                 Use Valor Fixo para faturar um valor específico com " +"antecedência.\n" +"                 Use Algumas linhas do Pedido, para faturar uma seleção de " +"linhas do pedidos de vendas." #. module: sale #: view:sale.make.invoice:0 @@ -493,7 +499,7 @@ msgstr "Fax:" #, python-format msgid "" "In order to delete a confirmed sales order, you must cancel it before !" -msgstr "" +msgstr "Cancele o pedido antes de excluir um pedido de vendas confirmado!" #. module: sale #: view:sale.order:0 @@ -529,7 +535,7 @@ msgstr "Pedido de Venda" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Habilita Faturar sobre Linhas do Pedido de Venda" #. module: sale #: model:ir.model,name:sale.model_sale_order_line @@ -544,7 +550,7 @@ msgstr "Valor Antecipado" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "Indica que o pedido de vendas possui pelo menos uma fatura." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -564,7 +570,7 @@ msgstr "Um funcionário pode ter diferentes papéis por contrato" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Faturar o pedido de vendas inteiro." #. module: sale #: field:sale.shop,payment_default_id:0 @@ -586,6 +592,7 @@ msgstr "Preparar faturas baseada em planilha de horas" #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." msgstr "" +"Você não pode cancelar uma linha do pedido de vendas que já foi faturado." #. module: sale #: view:account.invoice.report:0 @@ -613,7 +620,7 @@ msgstr "Permite utilizar diferentes unidades de medida" #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Pedido de Vendas Confirmado" #. module: sale #: view:sale.order:0 @@ -662,7 +669,7 @@ msgstr "Preço Total" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Permite especificar uma conta analítica no pedido de vendas." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -743,7 +750,7 @@ msgstr "Ano do pedido de venda" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Endereços no Pedido de Vendas" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -760,7 +767,7 @@ msgstr "Total:" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Linhas do Pedido de Vendas pronta para ser faturada." #. module: sale #: view:sale.report:0 @@ -912,7 +919,7 @@ msgstr "Criar e Visualizar a Fatura" #. module: sale #: view:sale.order.line:0 msgid "Sales order lines done" -msgstr "" +msgstr "Linhas do Pedido de Vendas concluída" #. module: sale #: field:sale.make.invoice,grouped:0 @@ -994,7 +1001,7 @@ msgstr "Mês" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Moeda" #. module: sale #: view:sale.order.line:0 @@ -1031,7 +1038,7 @@ msgstr "Nome do Estabelecimento" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Meus Pedidos de Venda" #. module: sale #: report:sale.order:0 @@ -1056,6 +1063,8 @@ msgid "" "To allow your salesman to make invoices for sales order lines using the menu " "'Lines to Invoice'." msgstr "" +"Permite ao vendedor fazer faturas para linhas do pedido de vendas, usando o " +"menu 'Linhas para Faturar'." #. module: sale #: model:ir.actions.client,name:sale.action_client_sale_menu @@ -1067,6 +1076,8 @@ msgstr "Abrir Menu de Venda" #, python-format msgid "You cannot confirm a sales order which has no line." msgstr "" +"Você não pode confirmar um pedido de vendas que não possui ao menos uma " +"linha." #. module: sale #: selection:sale.report,state:0 @@ -1083,6 +1094,7 @@ msgstr "Sem Cliente definido!" #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" msgstr "" +"Disparar a ordem de entrega automaticamente a partir do pedido de vendas" #. module: sale #: view:sale.make.invoice:0 @@ -1152,7 +1164,7 @@ msgstr "Valor dos impostos." #. module: sale #: field:sale.order,invoiced_rate:0 msgid "Invoiced Ratio" -msgstr "" +msgstr "Razão Faturado" #. module: sale #: selection:sale.order,order_policy:0 @@ -1192,6 +1204,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo estabelecimento.\n" +"

\n" +" Cada cotação ou pedido de vendas precisa ser associado a um " +"estabelecimento. \n" +" O estabelecimento também define o armazém a partir do qual " +"os produtos \n" +" serão entregues para cada venda em particular.\n" +"

\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1216,6 +1238,8 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Linhas do Pedido de Vendas que estão confirmadas, concluídas ou em excessão " +"e não foram faturadas" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1317,7 +1341,7 @@ msgstr "Janeiro" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Permite configurar um desconto nas linhas do pedido de vendas" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1332,6 +1356,10 @@ msgid "" " or a fixed price (for advances) directly from the sales " "order form if you prefer." msgstr "" +"Todos os itens dessas linhas de pedido serão faturados. Você também pode " +"faturar um percentual do pedido de venda\n" +"                     ou um valor fixo (para adiantamentos) diretamente do " +"formulário de pedido de vendas, se você preferir." #. module: sale #: help:sale.config.settings,module_warning:0 @@ -1349,7 +1377,7 @@ msgstr "" #. module: sale #: field:sale.order,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Url do Paypal" #. module: sale #: help:sale.order,project_id:0 @@ -1589,13 +1617,13 @@ msgstr "Nenhuma Lista de Preços! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Pedido de Vendas " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Cotação enviada" #. module: sale #: view:sale.order.line:0 @@ -1652,7 +1680,7 @@ msgstr "" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Faturar Pedido de Vendas" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1661,6 +1689,8 @@ msgid "" "invoice). You have to choose " "if you want your invoice based on ordered " msgstr "" +"O pedido de vendas criará a fatura (provisória) automaticamente. Você " +"precisa escolher se deseja faturar com base no pedido " #. module: sale #: field:sale.config.settings,module_account_analytic_analysis:0 @@ -1812,6 +1842,91 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Olá ${object.partner_id.name},

\n" +" \n" +"

Aqui está a ${object.state in ('draft', 'sent') and 'quotation' or " +"'order confirmation'} from ${object.company_id.name}:

\n" +"\n" +"

\n" +"   REFERENCIA
\n" +"   Número do Pedido: ${object.name}
\n" +"   Total do Pedido: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Data do Pedido: ${object.date_order}
\n" +" % if object.origin:\n" +"   Referência do Pedido: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Sua referência: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Seu contato: ${object.user_id.name}\n" +" % endif\n" +"

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

Também é possível pagar diretamente com o Paypal:

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

Se você tiver alguma dúvida, não deixe de entrar em contato " +"conosco.

\n" +"

Obrigado por escolher ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1923,6 +2038,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma cotação, a primeira etapa de uma nova " +"venda.\n" +"

\n" +" O OpenERP vai ajudá-lo a lidar eficientemente com o fluxo " +"de vendas completo:\n" +"                 cotação, pedido de venda, entrega, faturação e pagamento.\n" +"

\n" +" The social feature helps you organize discussions on each " +"sales\n" +" order, and allow your customers to keep track of the " +"evolution\n" +" of the sales order.\n" +"

\n" +" " #. module: sale #: view:res.partner:0 @@ -1990,6 +2120,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma cotação que será convertida em um " +"pedido de vendas.\n" +"

\n" +" A característica social ajuda a organizar as discussões sobre " +"cada pedido de venda,\n" +" e permite que o seu cliente para acompanhe a evolução do " +"pedido de vendas.\n" +"

\n" +" " #. module: sale #: field:sale.order,invoice_quantity:0 @@ -2078,6 +2218,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma cotação ou pedido de vendas para este " +"cliente.\n" +"

\n" +" O OpenERP vai ajudá-lo a lidar eficientemente com o fluxo " +"de vendas completo:\n" +"                 cotação, pedido de venda, entrega, faturação e pagamento.\n" +"

\n" +" A característica social ajuda a organizar as discussões sobre " +"cada pedido de venda,\n" +" e permite que o seu cliente para acompanhe a evolução do " +"pedido de vendas.\n" +"

\n" +" " #. module: sale #: field:sale.order,message_summary:0 @@ -2128,7 +2282,7 @@ msgstr "A partir de pedido de venda" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Linhas do pedido de vendas confirmadas que ainda não foram entregues" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2173,7 +2327,7 @@ msgstr "Pedido de Venda pronto para ser faturado" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Gerar faturas baseadas nas linhas do pedido de vendas" #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/sale/i18n/ro.po b/addons/sale/i18n/ro.po index 571465b493d..bfd75158d5a 100644 --- a/addons/sale/i18n/ro.po +++ b/addons/sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index 181b7d15fcd..eec35f25c95 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sk.po b/addons/sale/i18n/sk.po index 7c92a725957..b7ac302ac29 100644 --- a/addons/sale/i18n/sk.po +++ b/addons/sale/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sl.po b/addons/sale/i18n/sl.po index e146d47fccc..e1dea626f7b 100644 --- a/addons/sale/i18n/sl.po +++ b/addons/sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sq.po b/addons/sale/i18n/sq.po index 06ce086ef41..6535b7eeff0 100644 --- a/addons/sale/i18n/sq.po +++ b/addons/sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index 726b54dea08..320d32d18f1 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr@latin.po b/addons/sale/i18n/sr@latin.po index 8701114a4e8..110a4d21954 100644 --- a/addons/sale/i18n/sr@latin.po +++ b/addons/sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index c6e54208d65..70b2c8ae8f3 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/th.po b/addons/sale/i18n/th.po index a5c03a23d23..927d8baa9d2 100644 --- a/addons/sale/i18n/th.po +++ b/addons/sale/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tlh.po b/addons/sale/i18n/tlh.po index 975be7240ed..37d5a257d5f 100644 --- a/addons/sale/i18n/tlh.po +++ b/addons/sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index d58c9640098..e592cb731ed 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index 1d9827bebea..fa6718b560c 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:32+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index 50be39b3bce..1f545842201 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index 6cac8c5367a..6467910bddd 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index 095164ca423..74283b6f638 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale_analytic_plans/i18n/ar.po b/addons/sale_analytic_plans/i18n/ar.po index 49917e4546c..e57212fa75d 100644 --- a/addons/sale_analytic_plans/i18n/ar.po +++ b/addons/sale_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bg.po b/addons/sale_analytic_plans/i18n/bg.po index 253e1fcec4d..71cd3a950c7 100644 --- a/addons/sale_analytic_plans/i18n/bg.po +++ b/addons/sale_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bs.po b/addons/sale_analytic_plans/i18n/bs.po index 0b449ec54de..04f9e2b3497 100644 --- a/addons/sale_analytic_plans/i18n/bs.po +++ b/addons/sale_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ca.po b/addons/sale_analytic_plans/i18n/ca.po index 9037fe10672..6f6947bbd2f 100644 --- a/addons/sale_analytic_plans/i18n/ca.po +++ b/addons/sale_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/cs.po b/addons/sale_analytic_plans/i18n/cs.po index bddc6b8153b..bceee35967f 100644 --- a/addons/sale_analytic_plans/i18n/cs.po +++ b/addons/sale_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/da.po b/addons/sale_analytic_plans/i18n/da.po index dc5234b983f..71f50766e47 100644 --- a/addons/sale_analytic_plans/i18n/da.po +++ b/addons/sale_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 21c70b5d0dc..3a121ad4c42 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/el.po b/addons/sale_analytic_plans/i18n/el.po index 5f1468b908b..d7a8dfc7275 100644 --- a/addons/sale_analytic_plans/i18n/el.po +++ b/addons/sale_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es.po b/addons/sale_analytic_plans/i18n/es.po index 8d86cf1e24e..7d71b2c7505 100644 --- a/addons/sale_analytic_plans/i18n/es.po +++ b/addons/sale_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index c0eb8bac66f..e9d77ffc89f 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CL.po b/addons/sale_analytic_plans/i18n/es_CL.po index 2a4e4e9cccb..86b1cf7723a 100644 --- a/addons/sale_analytic_plans/i18n/es_CL.po +++ b/addons/sale_analytic_plans/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CR.po b/addons/sale_analytic_plans/i18n/es_CR.po index cf12beb4bde..0038da5856b 100644 --- a/addons/sale_analytic_plans/i18n/es_CR.po +++ b/addons/sale_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/et.po b/addons/sale_analytic_plans/i18n/et.po index 59c8b4a6740..ec8c343d911 100644 --- a/addons/sale_analytic_plans/i18n/et.po +++ b/addons/sale_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fi.po b/addons/sale_analytic_plans/i18n/fi.po index 94c3cb21581..f1ec0bb5af9 100644 --- a/addons/sale_analytic_plans/i18n/fi.po +++ b/addons/sale_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fr.po b/addons/sale_analytic_plans/i18n/fr.po index 050a7f5e71f..ce4050961ce 100644 --- a/addons/sale_analytic_plans/i18n/fr.po +++ b/addons/sale_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/gl.po b/addons/sale_analytic_plans/i18n/gl.po index 49bf79f86b3..1dddeb51f3b 100644 --- a/addons/sale_analytic_plans/i18n/gl.po +++ b/addons/sale_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hr.po b/addons/sale_analytic_plans/i18n/hr.po index b926be6d641..52f4dac73e9 100644 --- a/addons/sale_analytic_plans/i18n/hr.po +++ b/addons/sale_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hu.po b/addons/sale_analytic_plans/i18n/hu.po index 0e831778e91..c5bce00d534 100644 --- a/addons/sale_analytic_plans/i18n/hu.po +++ b/addons/sale_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 @@ -25,7 +25,7 @@ msgstr "Analitikus felosztás" #. module: sale_analytic_plans #: model:ir.model,name:sale_analytic_plans.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Vevői megrendelés" #. module: sale_analytic_plans #: model:ir.model,name:sale_analytic_plans.model_sale_order_line diff --git a/addons/sale_analytic_plans/i18n/id.po b/addons/sale_analytic_plans/i18n/id.po index 5f475d2633f..57adfe0a302 100644 --- a/addons/sale_analytic_plans/i18n/id.po +++ b/addons/sale_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index 278e1c9050e..e62d1003278 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ja.po b/addons/sale_analytic_plans/i18n/ja.po index 001a5ebb714..df4baeb1011 100644 --- a/addons/sale_analytic_plans/i18n/ja.po +++ b/addons/sale_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ko.po b/addons/sale_analytic_plans/i18n/ko.po index fdd18a89cd4..5ffce0e8a16 100644 --- a/addons/sale_analytic_plans/i18n/ko.po +++ b/addons/sale_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/lt.po b/addons/sale_analytic_plans/i18n/lt.po index 57862c131ed..53fc1de5d89 100644 --- a/addons/sale_analytic_plans/i18n/lt.po +++ b/addons/sale_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mn.po b/addons/sale_analytic_plans/i18n/mn.po index 07180c50a2d..10792280e48 100644 --- a/addons/sale_analytic_plans/i18n/mn.po +++ b/addons/sale_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nb.po b/addons/sale_analytic_plans/i18n/nb.po index 48b4c4eaea3..ef45856e926 100644 --- a/addons/sale_analytic_plans/i18n/nb.po +++ b/addons/sale_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl.po b/addons/sale_analytic_plans/i18n/nl.po index fe06905977c..1429ff600e3 100644 --- a/addons/sale_analytic_plans/i18n/nl.po +++ b/addons/sale_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index 7544eb105c5..26f4fa26440 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/oc.po b/addons/sale_analytic_plans/i18n/oc.po index 8e6cd5ebd38..92362165516 100644 --- a/addons/sale_analytic_plans/i18n/oc.po +++ b/addons/sale_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pl.po b/addons/sale_analytic_plans/i18n/pl.po index f96f487c487..52a36a1cedd 100644 --- a/addons/sale_analytic_plans/i18n/pl.po +++ b/addons/sale_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt.po b/addons/sale_analytic_plans/i18n/pt.po index fbd5e630e9e..27c6603b801 100644 --- a/addons/sale_analytic_plans/i18n/pt.po +++ b/addons/sale_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 2aacb2bd5d9..53664f037fa 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ro.po b/addons/sale_analytic_plans/i18n/ro.po index bfbc9420a72..7ac61494f34 100644 --- a/addons/sale_analytic_plans/i18n/ro.po +++ b/addons/sale_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ru.po b/addons/sale_analytic_plans/i18n/ru.po index fdc2ea17523..ce80357edcb 100644 --- a/addons/sale_analytic_plans/i18n/ru.po +++ b/addons/sale_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sk.po b/addons/sale_analytic_plans/i18n/sk.po index f98aeec9041..cb84ade8c9b 100644 --- a/addons/sale_analytic_plans/i18n/sk.po +++ b/addons/sale_analytic_plans/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sl.po b/addons/sale_analytic_plans/i18n/sl.po index 60e716a4341..4b31520c099 100644 --- a/addons/sale_analytic_plans/i18n/sl.po +++ b/addons/sale_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sq.po b/addons/sale_analytic_plans/i18n/sq.po index 0f73b19b7ca..02089f46000 100644 --- a/addons/sale_analytic_plans/i18n/sq.po +++ b/addons/sale_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr.po b/addons/sale_analytic_plans/i18n/sr.po index 3b1c18038e2..e48f17a9811 100644 --- a/addons/sale_analytic_plans/i18n/sr.po +++ b/addons/sale_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr@latin.po b/addons/sale_analytic_plans/i18n/sr@latin.po index 9800b3b5d28..5b40c56bf3f 100644 --- a/addons/sale_analytic_plans/i18n/sr@latin.po +++ b/addons/sale_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sv.po b/addons/sale_analytic_plans/i18n/sv.po index e14f9a86484..6f260117140 100644 --- a/addons/sale_analytic_plans/i18n/sv.po +++ b/addons/sale_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tlh.po b/addons/sale_analytic_plans/i18n/tlh.po index 77536127c56..4dfa9c7df0b 100644 --- a/addons/sale_analytic_plans/i18n/tlh.po +++ b/addons/sale_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tr.po b/addons/sale_analytic_plans/i18n/tr.po index 07426ad5e69..1382d311152 100644 --- a/addons/sale_analytic_plans/i18n/tr.po +++ b/addons/sale_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/uk.po b/addons/sale_analytic_plans/i18n/uk.po index c08ca76ee73..0f6152d040a 100644 --- a/addons/sale_analytic_plans/i18n/uk.po +++ b/addons/sale_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/vi.po b/addons/sale_analytic_plans/i18n/vi.po index d775fef6bfa..c81da67d8f4 100644 --- a/addons/sale_analytic_plans/i18n/vi.po +++ b/addons/sale_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index dbefaeca68e..3bcaaffd601 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index 4958d2bd5a0..a73880ed45f 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_crm/i18n/ar.po b/addons/sale_crm/i18n/ar.po index 2067f182bd2..e34d351a84f 100644 --- a/addons/sale_crm/i18n/ar.po +++ b/addons/sale_crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/bg.po b/addons/sale_crm/i18n/bg.po index 598d4af63bd..993fe9ad27e 100644 --- a/addons/sale_crm/i18n/bg.po +++ b/addons/sale_crm/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/bs.po b/addons/sale_crm/i18n/bs.po index 5be2c369cc6..a47f7ec0cf2 100644 --- a/addons/sale_crm/i18n/bs.po +++ b/addons/sale_crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ca.po b/addons/sale_crm/i18n/ca.po index e6e586d35cb..67bafbcd37d 100644 --- a/addons/sale_crm/i18n/ca.po +++ b/addons/sale_crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/cs.po b/addons/sale_crm/i18n/cs.po index 6fdd21e78e1..2e1b928c9da 100644 --- a/addons/sale_crm/i18n/cs.po +++ b/addons/sale_crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/da.po b/addons/sale_crm/i18n/da.po index d038453905a..c4e08dd08ca 100644 --- a/addons/sale_crm/i18n/da.po +++ b/addons/sale_crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index 0fc7d545e29..ec0aa9c6a58 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/el.po b/addons/sale_crm/i18n/el.po index 827d44465b1..b496aeb3e0c 100644 --- a/addons/sale_crm/i18n/el.po +++ b/addons/sale_crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es.po b/addons/sale_crm/i18n/es.po index 3a1596c13d1..05281d6996e 100644 --- a/addons/sale_crm/i18n/es.po +++ b/addons/sale_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 @@ -59,11 +59,13 @@ msgstr "Usuarios" msgid "" "Check this to close the opportunity after having created the sales order." msgstr "" +"Marque esta casilla para cerrar la oportunidad después de crear el pedido de " +"venta." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_sent msgid "Quotation Send" -msgstr "" +msgstr "Presupuesto enviado" #. module: sale_crm #: field:sale.order,categ_ids:0 @@ -124,7 +126,7 @@ msgstr "No se han definido direcciones para este cliente." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Pedido de venta confirmado" #. module: sale_crm #: view:account.invoice:0 diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index 8c7ef2dca1e..23297142449 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es_CL.po b/addons/sale_crm/i18n/es_CL.po index 24f94cb1e84..16ab74c4106 100644 --- a/addons/sale_crm/i18n/es_CL.po +++ b/addons/sale_crm/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es_CR.po b/addons/sale_crm/i18n/es_CR.po index a5bd655fb01..1b4d791df79 100644 --- a/addons/sale_crm/i18n/es_CR.po +++ b/addons/sale_crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/et.po b/addons/sale_crm/i18n/et.po index 22c2a1c49ec..023123a63a9 100644 --- a/addons/sale_crm/i18n/et.po +++ b/addons/sale_crm/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/fi.po b/addons/sale_crm/i18n/fi.po index e32ecd02c11..c6b5facda89 100644 --- a/addons/sale_crm/i18n/fi.po +++ b/addons/sale_crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index 0fe6fcec256..db253d6b77f 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/gl.po b/addons/sale_crm/i18n/gl.po index 6730294e4f2..b0aa5dfd653 100644 --- a/addons/sale_crm/i18n/gl.po +++ b/addons/sale_crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/hr.po b/addons/sale_crm/i18n/hr.po index f208fbfc4e1..7ecde586014 100644 --- a/addons/sale_crm/i18n/hr.po +++ b/addons/sale_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/hu.po b/addons/sale_crm/i18n/hu.po index 83f608b4773..a6b9c4f5808 100644 --- a/addons/sale_crm/i18n/hu.po +++ b/addons/sale_crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/id.po b/addons/sale_crm/i18n/id.po index 92e47a5015a..ed5fc5cdc47 100644 --- a/addons/sale_crm/i18n/id.po +++ b/addons/sale_crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index 609704af420..d1aa1124338 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ja.po b/addons/sale_crm/i18n/ja.po index 7c6c0043653..b645c7f149a 100644 --- a/addons/sale_crm/i18n/ja.po +++ b/addons/sale_crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index 3914e9063dd..6943041d2aa 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/lt.po b/addons/sale_crm/i18n/lt.po index 3f1a65bfaff..13cc45f60c2 100644 --- a/addons/sale_crm/i18n/lt.po +++ b/addons/sale_crm/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/lv.po b/addons/sale_crm/i18n/lv.po index d47700eff87..0c1a3719dcc 100644 --- a/addons/sale_crm/i18n/lv.po +++ b/addons/sale_crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/mn.po b/addons/sale_crm/i18n/mn.po index 867582ef4ae..9946a9ea264 100644 --- a/addons/sale_crm/i18n/mn.po +++ b/addons/sale_crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nb.po b/addons/sale_crm/i18n/nb.po index a9b349dbb58..b7d4229cbbd 100644 --- a/addons/sale_crm/i18n/nb.po +++ b/addons/sale_crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nl.po b/addons/sale_crm/i18n/nl.po index 78c8d509dd0..598dd966a01 100644 --- a/addons/sale_crm/i18n/nl.po +++ b/addons/sale_crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-30 05:51+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index 1a5da4c85c8..94f5950d1f1 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pl.po b/addons/sale_crm/i18n/pl.po index 87779461bdb..0263d5559b5 100644 --- a/addons/sale_crm/i18n/pl.po +++ b/addons/sale_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pt.po b/addons/sale_crm/i18n/pt.po index 383d84b969b..6c3f663b151 100644 --- a/addons/sale_crm/i18n/pt.po +++ b/addons/sale_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 9f7ae6e9d52..fdf482cf8dc 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 @@ -59,11 +59,12 @@ msgstr "Usuários" msgid "" "Check this to close the opportunity after having created the sales order." msgstr "" +"Marque se desejar fechar esta oportunidade após criar o pedido de vendas." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_sent msgid "Quotation Send" -msgstr "" +msgstr "Cotação Enviada" #. module: sale_crm #: field:sale.order,categ_ids:0 @@ -123,7 +124,7 @@ msgstr "Nenhum endereço definido para o cliente." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Pedido de Vendas Confirmado" #. module: sale_crm #: view:account.invoice:0 diff --git a/addons/sale_crm/i18n/ro.po b/addons/sale_crm/i18n/ro.po index df5f634c580..009011240f5 100644 --- a/addons/sale_crm/i18n/ro.po +++ b/addons/sale_crm/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ru.po b/addons/sale_crm/i18n/ru.po index 4a51503f3b3..b0d8562db07 100644 --- a/addons/sale_crm/i18n/ru.po +++ b/addons/sale_crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sk.po b/addons/sale_crm/i18n/sk.po index e86e7812d4d..fcc17cbc165 100644 --- a/addons/sale_crm/i18n/sk.po +++ b/addons/sale_crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sl.po b/addons/sale_crm/i18n/sl.po index 3bc602fb376..2bf86595e6b 100644 --- a/addons/sale_crm/i18n/sl.po +++ b/addons/sale_crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sq.po b/addons/sale_crm/i18n/sq.po index 30003e0468f..de7fcb24eb7 100644 --- a/addons/sale_crm/i18n/sq.po +++ b/addons/sale_crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sv.po b/addons/sale_crm/i18n/sv.po index 530246f88ee..211a9b3f531 100644 --- a/addons/sale_crm/i18n/sv.po +++ b/addons/sale_crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/tlh.po b/addons/sale_crm/i18n/tlh.po index 770decf6b49..4602f4b76e7 100644 --- a/addons/sale_crm/i18n/tlh.po +++ b/addons/sale_crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/tr.po b/addons/sale_crm/i18n/tr.po index 5bc0984b813..d07baccafe7 100644 --- a/addons/sale_crm/i18n/tr.po +++ b/addons/sale_crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/uk.po b/addons/sale_crm/i18n/uk.po index 7469dacc647..746b9644b9c 100644 --- a/addons/sale_crm/i18n/uk.po +++ b/addons/sale_crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/vi.po b/addons/sale_crm/i18n/vi.po index 892a03c0c33..a1c705a16e0 100644 --- a/addons/sale_crm/i18n/vi.po +++ b/addons/sale_crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index d3700ebc170..8197a5b0376 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 @@ -58,12 +58,12 @@ msgstr "人员" #: help:crm.make.sale,close:0 msgid "" "Check this to close the opportunity after having created the sales order." -msgstr "" +msgstr "选中 此项,创建销售订单后,将关闭商机" #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_sent msgid "Quotation Send" -msgstr "" +msgstr "报价单已经发送" #. module: sale_crm #: field:sale.order,categ_ids:0 @@ -123,7 +123,7 @@ msgstr "这个客户没有定义地址" #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "销售订单已经确认" #. module: sale_crm #: view:account.invoice:0 diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index a15fd2d911f..b555cb1eb7a 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_journal/i18n/ar.po b/addons/sale_journal/i18n/ar.po index 7c4cbf02e56..c3e42aa85f7 100644 --- a/addons/sale_journal/i18n/ar.po +++ b/addons/sale_journal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bg.po b/addons/sale_journal/i18n/bg.po index ba327645a7d..954fadb80f0 100644 --- a/addons/sale_journal/i18n/bg.po +++ b/addons/sale_journal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bs.po b/addons/sale_journal/i18n/bs.po index 30be224adae..195a24c78c2 100644 --- a/addons/sale_journal/i18n/bs.po +++ b/addons/sale_journal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ca.po b/addons/sale_journal/i18n/ca.po index 8c95663ceee..2c9c99c4c59 100644 --- a/addons/sale_journal/i18n/ca.po +++ b/addons/sale_journal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/cs.po b/addons/sale_journal/i18n/cs.po index 748b9b91c23..0564d695030 100644 --- a/addons/sale_journal/i18n/cs.po +++ b/addons/sale_journal/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/da.po b/addons/sale_journal/i18n/da.po index 1f32677957c..7e29766c736 100644 --- a/addons/sale_journal/i18n/da.po +++ b/addons/sale_journal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index af68e950531..f0287c3d70f 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/el.po b/addons/sale_journal/i18n/el.po index b1a59d9d469..ac76fa40337 100644 --- a/addons/sale_journal/i18n/el.po +++ b/addons/sale_journal/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es.po b/addons/sale_journal/i18n/es.po index 3734c0b2874..401e82c7a3c 100644 --- a/addons/sale_journal/i18n/es.po +++ b/addons/sale_journal/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index ef8fd4b16b6..23b821a436d 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CL.po b/addons/sale_journal/i18n/es_CL.po index 03b4ac0bde2..c2589cdee51 100644 --- a/addons/sale_journal/i18n/es_CL.po +++ b/addons/sale_journal/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CR.po b/addons/sale_journal/i18n/es_CR.po index fd8bd68accc..9a6249a5b8b 100644 --- a/addons/sale_journal/i18n/es_CR.po +++ b/addons/sale_journal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/et.po b/addons/sale_journal/i18n/et.po index bdcdf93792c..c9b76cde713 100644 --- a/addons/sale_journal/i18n/et.po +++ b/addons/sale_journal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fi.po b/addons/sale_journal/i18n/fi.po index 89e1cb601cd..51d5e11415f 100644 --- a/addons/sale_journal/i18n/fi.po +++ b/addons/sale_journal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fr.po b/addons/sale_journal/i18n/fr.po index 52aa51413dc..859b4455ff6 100644 --- a/addons/sale_journal/i18n/fr.po +++ b/addons/sale_journal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/gl.po b/addons/sale_journal/i18n/gl.po index 09503292b5a..2781a755862 100644 --- a/addons/sale_journal/i18n/gl.po +++ b/addons/sale_journal/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hr.po b/addons/sale_journal/i18n/hr.po index 77384b80ed4..7075b50a085 100644 --- a/addons/sale_journal/i18n/hr.po +++ b/addons/sale_journal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index 618aa08e6f7..0a30e93e092 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/id.po b/addons/sale_journal/i18n/id.po index e4d9453ba6f..79579c11a76 100644 --- a/addons/sale_journal/i18n/id.po +++ b/addons/sale_journal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index fceba9dee32..668183be1c8 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ja.po b/addons/sale_journal/i18n/ja.po index fdf745b1639..9147e17bd1f 100644 --- a/addons/sale_journal/i18n/ja.po +++ b/addons/sale_journal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index 3784c3f4c62..a2c6d77f0cd 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lt.po b/addons/sale_journal/i18n/lt.po index 279e376e7e5..437a6563ff8 100644 --- a/addons/sale_journal/i18n/lt.po +++ b/addons/sale_journal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lv.po b/addons/sale_journal/i18n/lv.po index 1f8042ee67e..555941a1623 100644 --- a/addons/sale_journal/i18n/lv.po +++ b/addons/sale_journal/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mn.po b/addons/sale_journal/i18n/mn.po index 30a45fb1829..724e2d98448 100644 --- a/addons/sale_journal/i18n/mn.po +++ b/addons/sale_journal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nb.po b/addons/sale_journal/i18n/nb.po index 68c746083a3..9f76d9c8db1 100644 --- a/addons/sale_journal/i18n/nb.po +++ b/addons/sale_journal/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl.po b/addons/sale_journal/i18n/nl.po index 08bb0e9eafe..fa4f8eec572 100644 --- a/addons/sale_journal/i18n/nl.po +++ b/addons/sale_journal/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index 24c73738801..317c6fc3c0e 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index 812ea6ef5ae..7f925a60ee8 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index bb58910c2a8..71c02a38b09 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index 10efe548650..d401dec8a4c 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ro.po b/addons/sale_journal/i18n/ro.po index e3b96bcbfc7..70c1e23d928 100644 --- a/addons/sale_journal/i18n/ro.po +++ b/addons/sale_journal/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ru.po b/addons/sale_journal/i18n/ru.po index fe9da1ab5ea..f333eefa6fd 100644 --- a/addons/sale_journal/i18n/ru.po +++ b/addons/sale_journal/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sk.po b/addons/sale_journal/i18n/sk.po index 3bf96b256be..d0a2314cbce 100644 --- a/addons/sale_journal/i18n/sk.po +++ b/addons/sale_journal/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sl.po b/addons/sale_journal/i18n/sl.po index ec53f89c83e..5e4f26f74e8 100644 --- a/addons/sale_journal/i18n/sl.po +++ b/addons/sale_journal/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sq.po b/addons/sale_journal/i18n/sq.po index fbc2f157231..99894d36665 100644 --- a/addons/sale_journal/i18n/sq.po +++ b/addons/sale_journal/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sv.po b/addons/sale_journal/i18n/sv.po index a08db9f5bba..5ff5b4e238b 100644 --- a/addons/sale_journal/i18n/sv.po +++ b/addons/sale_journal/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tlh.po b/addons/sale_journal/i18n/tlh.po index 386dd6a05f9..8066c8ec431 100644 --- a/addons/sale_journal/i18n/tlh.po +++ b/addons/sale_journal/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index 299c1b8ea50..21071309787 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/uk.po b/addons/sale_journal/i18n/uk.po index 251aa01781a..aacf42ae172 100644 --- a/addons/sale_journal/i18n/uk.po +++ b/addons/sale_journal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/vi.po b/addons/sale_journal/i18n/vi.po index 5cf4994e969..3812236b8cc 100644 --- a/addons/sale_journal/i18n/vi.po +++ b/addons/sale_journal/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index 7612503e5b1..c4b30f7a831 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index 0a3a6e0c219..f2955c2b75e 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_margin/i18n/ar.po b/addons/sale_margin/i18n/ar.po index 560af02aa6d..d4d2b735ed9 100644 --- a/addons/sale_margin/i18n/ar.po +++ b/addons/sale_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bg.po b/addons/sale_margin/i18n/bg.po index bccd95f7358..8f6a1650f3f 100644 --- a/addons/sale_margin/i18n/bg.po +++ b/addons/sale_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ca.po b/addons/sale_margin/i18n/ca.po index 7ed5d6c6971..36b18b6cb67 100644 --- a/addons/sale_margin/i18n/ca.po +++ b/addons/sale_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/da.po b/addons/sale_margin/i18n/da.po index fbb3bf266bf..55e87fdcb36 100644 --- a/addons/sale_margin/i18n/da.po +++ b/addons/sale_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index 2e6c483b760..e4c9a3e2b70 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/el.po b/addons/sale_margin/i18n/el.po index 4cde72071f4..cf1c85b2bb8 100644 --- a/addons/sale_margin/i18n/el.po +++ b/addons/sale_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es.po b/addons/sale_margin/i18n/es.po index 5d58912f947..53d6d124605 100644 --- a/addons/sale_margin/i18n/es.po +++ b/addons/sale_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CL.po b/addons/sale_margin/i18n/es_CL.po index dffb82e4cc8..32e959969dc 100644 --- a/addons/sale_margin/i18n/es_CL.po +++ b/addons/sale_margin/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CR.po b/addons/sale_margin/i18n/es_CR.po index 2d37a11a7a6..acf1f7ba66e 100644 --- a/addons/sale_margin/i18n/es_CR.po +++ b/addons/sale_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/et.po b/addons/sale_margin/i18n/et.po index 264249c1962..0a50b42f7aa 100644 --- a/addons/sale_margin/i18n/et.po +++ b/addons/sale_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-27 05:53+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fi.po b/addons/sale_margin/i18n/fi.po index df47dd501be..d72c6983b1a 100644 --- a/addons/sale_margin/i18n/fi.po +++ b/addons/sale_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fr.po b/addons/sale_margin/i18n/fr.po index 31938664422..286882a0b10 100644 --- a/addons/sale_margin/i18n/fr.po +++ b/addons/sale_margin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hr.po b/addons/sale_margin/i18n/hr.po index 1ead59f8d4e..a83cd59f736 100644 --- a/addons/sale_margin/i18n/hr.po +++ b/addons/sale_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hu.po b/addons/sale_margin/i18n/hu.po index 5995e6ffe32..4a36c91c94e 100644 --- a/addons/sale_margin/i18n/hu.po +++ b/addons/sale_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/it.po b/addons/sale_margin/i18n/it.po index 3a6372af09f..4f705bfd164 100644 --- a/addons/sale_margin/i18n/it.po +++ b/addons/sale_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ja.po b/addons/sale_margin/i18n/ja.po index 92e802b82da..dbf821fa7ce 100644 --- a/addons/sale_margin/i18n/ja.po +++ b/addons/sale_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mn.po b/addons/sale_margin/i18n/mn.po index cc33f1cf72f..2393692a938 100644 --- a/addons/sale_margin/i18n/mn.po +++ b/addons/sale_margin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nb.po b/addons/sale_margin/i18n/nb.po index 026fb930adf..8ce5915eed9 100644 --- a/addons/sale_margin/i18n/nb.po +++ b/addons/sale_margin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nl.po b/addons/sale_margin/i18n/nl.po index d6f843964e4..f9a2a91d6ef 100644 --- a/addons/sale_margin/i18n/nl.po +++ b/addons/sale_margin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pl.po b/addons/sale_margin/i18n/pl.po index 243e932170d..19b78009233 100644 --- a/addons/sale_margin/i18n/pl.po +++ b/addons/sale_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt.po b/addons/sale_margin/i18n/pt.po index 7439faafe15..e669c9d9e83 100644 --- a/addons/sale_margin/i18n/pt.po +++ b/addons/sale_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po index 547c2cbd0a2..2a7d6a23169 100644 --- a/addons/sale_margin/i18n/pt_BR.po +++ b/addons/sale_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ro.po b/addons/sale_margin/i18n/ro.po index f558ed444f5..522cf0bef71 100644 --- a/addons/sale_margin/i18n/ro.po +++ b/addons/sale_margin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index de8ded5835f..45faee0a5cf 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sk.po b/addons/sale_margin/i18n/sk.po index 69723143483..e6ca4536850 100644 --- a/addons/sale_margin/i18n/sk.po +++ b/addons/sale_margin/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sl.po b/addons/sale_margin/i18n/sl.po index 664556d3447..bce9aa6e015 100644 --- a/addons/sale_margin/i18n/sl.po +++ b/addons/sale_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sv.po b/addons/sale_margin/i18n/sv.po index 946f66813b5..86a56be31ce 100644 --- a/addons/sale_margin/i18n/sv.po +++ b/addons/sale_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/tr.po b/addons/sale_margin/i18n/tr.po index 0c764fb2f62..e04c93b0851 100644 --- a/addons/sale_margin/i18n/tr.po +++ b/addons/sale_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/zh_CN.po b/addons/sale_margin/i18n/zh_CN.po index 14ed3ee86ea..47aee9133b0 100644 --- a/addons/sale_margin/i18n/zh_CN.po +++ b/addons/sale_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_mrp/i18n/ar.po b/addons/sale_mrp/i18n/ar.po index a67a27cfd22..7745531943a 100644 --- a/addons/sale_mrp/i18n/ar.po +++ b/addons/sale_mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bg.po b/addons/sale_mrp/i18n/bg.po index 769413d4590..0125de76032 100644 --- a/addons/sale_mrp/i18n/bg.po +++ b/addons/sale_mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ca.po b/addons/sale_mrp/i18n/ca.po index 33d919c046e..9463206008b 100644 --- a/addons/sale_mrp/i18n/ca.po +++ b/addons/sale_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/da.po b/addons/sale_mrp/i18n/da.po index 6c6ad5b8bba..6160ce8fcd2 100644 --- a/addons/sale_mrp/i18n/da.po +++ b/addons/sale_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index e891b4d2193..466d564e746 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es.po b/addons/sale_mrp/i18n/es.po index 52c62a91a7f..c08891e3532 100644 --- a/addons/sale_mrp/i18n/es.po +++ b/addons/sale_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CL.po b/addons/sale_mrp/i18n/es_CL.po index 9a06c3c76ec..3272a58d2e3 100644 --- a/addons/sale_mrp/i18n/es_CL.po +++ b/addons/sale_mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CR.po b/addons/sale_mrp/i18n/es_CR.po index 5cd60c7b186..4c09b63f9d0 100644 --- a/addons/sale_mrp/i18n/es_CR.po +++ b/addons/sale_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/et.po b/addons/sale_mrp/i18n/et.po index a892a8a65ee..1348bdc32c9 100644 --- a/addons/sale_mrp/i18n/et.po +++ b/addons/sale_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fi.po b/addons/sale_mrp/i18n/fi.po index 51b149fef69..fa1d99f0225 100644 --- a/addons/sale_mrp/i18n/fi.po +++ b/addons/sale_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fr.po b/addons/sale_mrp/i18n/fr.po index 4ae7423fe3d..fea0b827e67 100644 --- a/addons/sale_mrp/i18n/fr.po +++ b/addons/sale_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/gl.po b/addons/sale_mrp/i18n/gl.po index 741b85303b4..c4920ed2657 100644 --- a/addons/sale_mrp/i18n/gl.po +++ b/addons/sale_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hr.po b/addons/sale_mrp/i18n/hr.po index b36ec005c44..aaff285d9d1 100644 --- a/addons/sale_mrp/i18n/hr.po +++ b/addons/sale_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hu.po b/addons/sale_mrp/i18n/hu.po index 10be8f370a9..720e8dc34cc 100644 --- a/addons/sale_mrp/i18n/hu.po +++ b/addons/sale_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/it.po b/addons/sale_mrp/i18n/it.po index f847d23cbdd..f42d02ba83b 100644 --- a/addons/sale_mrp/i18n/it.po +++ b/addons/sale_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ja.po b/addons/sale_mrp/i18n/ja.po index 35bae028cd5..3c9b0bf270c 100644 --- a/addons/sale_mrp/i18n/ja.po +++ b/addons/sale_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/mn.po b/addons/sale_mrp/i18n/mn.po index 986b7a752b0..fb2e137a367 100644 --- a/addons/sale_mrp/i18n/mn.po +++ b/addons/sale_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nb.po b/addons/sale_mrp/i18n/nb.po index 12eddbfb622..279ec21f102 100644 --- a/addons/sale_mrp/i18n/nb.po +++ b/addons/sale_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl.po b/addons/sale_mrp/i18n/nl.po index b73c22ed100..3bf45779013 100644 --- a/addons/sale_mrp/i18n/nl.po +++ b/addons/sale_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl_BE.po b/addons/sale_mrp/i18n/nl_BE.po index 12c9b7d96bc..93c98995f2d 100644 --- a/addons/sale_mrp/i18n/nl_BE.po +++ b/addons/sale_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pl.po b/addons/sale_mrp/i18n/pl.po index 8caf8078ba8..23a1c555b11 100644 --- a/addons/sale_mrp/i18n/pl.po +++ b/addons/sale_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt.po b/addons/sale_mrp/i18n/pt.po index 0f2e850bc9f..7c520161432 100644 --- a/addons/sale_mrp/i18n/pt.po +++ b/addons/sale_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index 3af14c4895c..f59e10299dc 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ro.po b/addons/sale_mrp/i18n/ro.po index 135606f3d88..459cd423862 100644 --- a/addons/sale_mrp/i18n/ro.po +++ b/addons/sale_mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ru.po b/addons/sale_mrp/i18n/ru.po index 6bc8462f49d..6a57358ed82 100644 --- a/addons/sale_mrp/i18n/ru.po +++ b/addons/sale_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production @@ -35,9 +35,9 @@ msgstr "Указывает на заказчика из заказа прода #. module: sale_mrp #: field:mrp.production,sale_ref:0 msgid "Sale Reference" -msgstr "" +msgstr "Ссылка продажи" #. module: sale_mrp #: field:mrp.production,sale_name:0 msgid "Sale Name" -msgstr "" +msgstr "Название продажи" diff --git a/addons/sale_mrp/i18n/sl.po b/addons/sale_mrp/i18n/sl.po index 85249fc02b6..df16f02c697 100644 --- a/addons/sale_mrp/i18n/sl.po +++ b/addons/sale_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sr@latin.po b/addons/sale_mrp/i18n/sr@latin.po index a07c8bf5814..1dc8c9cd027 100644 --- a/addons/sale_mrp/i18n/sr@latin.po +++ b/addons/sale_mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sv.po b/addons/sale_mrp/i18n/sv.po index 93300e4acdc..7cd08034e33 100644 --- a/addons/sale_mrp/i18n/sv.po +++ b/addons/sale_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/tr.po b/addons/sale_mrp/i18n/tr.po index e5f0017209d..8c2865517bc 100644 --- a/addons/sale_mrp/i18n/tr.po +++ b/addons/sale_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/zh_CN.po b/addons/sale_mrp/i18n/zh_CN.po index ede9ba1e3eb..b8586c25d30 100644 --- a/addons/sale_mrp/i18n/zh_CN.po +++ b/addons/sale_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_order_dates/i18n/ar.po b/addons/sale_order_dates/i18n/ar.po index 87fbae1d474..b6b3d9bc5a0 100644 --- a/addons/sale_order_dates/i18n/ar.po +++ b/addons/sale_order_dates/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bg.po b/addons/sale_order_dates/i18n/bg.po index 0a74c8b34e0..a205f73985d 100644 --- a/addons/sale_order_dates/i18n/bg.po +++ b/addons/sale_order_dates/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ca.po b/addons/sale_order_dates/i18n/ca.po index 54f222bcb6c..914250590b1 100644 --- a/addons/sale_order_dates/i18n/ca.po +++ b/addons/sale_order_dates/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/da.po b/addons/sale_order_dates/i18n/da.po index 4a7428c6d30..3b3bc8cd3cc 100644 --- a/addons/sale_order_dates/i18n/da.po +++ b/addons/sale_order_dates/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index 7f7cb406ff7..35f5406e70a 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/el.po b/addons/sale_order_dates/i18n/el.po index bdb697637d7..d50a664b9f3 100644 --- a/addons/sale_order_dates/i18n/el.po +++ b/addons/sale_order_dates/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es.po b/addons/sale_order_dates/i18n/es.po index 7ecef4a7a7c..9acb9f7b5ef 100644 --- a/addons/sale_order_dates/i18n/es.po +++ b/addons/sale_order_dates/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CL.po b/addons/sale_order_dates/i18n/es_CL.po index e2c8682cf7c..919543bc17d 100644 --- a/addons/sale_order_dates/i18n/es_CL.po +++ b/addons/sale_order_dates/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CR.po b/addons/sale_order_dates/i18n/es_CR.po index 5b93e642e58..78f5c87d33a 100644 --- a/addons/sale_order_dates/i18n/es_CR.po +++ b/addons/sale_order_dates/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fi.po b/addons/sale_order_dates/i18n/fi.po index 7fbba060b6f..6756d561a21 100644 --- a/addons/sale_order_dates/i18n/fi.po +++ b/addons/sale_order_dates/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fr.po b/addons/sale_order_dates/i18n/fr.po index f743c40f3c5..4ae9b951f7d 100644 --- a/addons/sale_order_dates/i18n/fr.po +++ b/addons/sale_order_dates/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/gl.po b/addons/sale_order_dates/i18n/gl.po index fb66e7d0e17..f09d2c52e99 100644 --- a/addons/sale_order_dates/i18n/gl.po +++ b/addons/sale_order_dates/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hr.po b/addons/sale_order_dates/i18n/hr.po index ad3ce1aa744..5e629bbcc9b 100644 --- a/addons/sale_order_dates/i18n/hr.po +++ b/addons/sale_order_dates/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hu.po b/addons/sale_order_dates/i18n/hu.po index 0a950714cc4..d7998dcc19e 100644 --- a/addons/sale_order_dates/i18n/hu.po +++ b/addons/sale_order_dates/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/id.po b/addons/sale_order_dates/i18n/id.po index 752d643a133..72f3e9acf09 100644 --- a/addons/sale_order_dates/i18n/id.po +++ b/addons/sale_order_dates/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/it.po b/addons/sale_order_dates/i18n/it.po index faf91129ab8..14cb4860ac9 100644 --- a/addons/sale_order_dates/i18n/it.po +++ b/addons/sale_order_dates/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ja.po b/addons/sale_order_dates/i18n/ja.po index d4e4c6a2a13..a5f1b04865f 100644 --- a/addons/sale_order_dates/i18n/ja.po +++ b/addons/sale_order_dates/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mn.po b/addons/sale_order_dates/i18n/mn.po index 6750ef30c6c..d1e9de1029a 100644 --- a/addons/sale_order_dates/i18n/mn.po +++ b/addons/sale_order_dates/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nb.po b/addons/sale_order_dates/i18n/nb.po index eec4914f040..db1db1ab6fd 100644 --- a/addons/sale_order_dates/i18n/nb.po +++ b/addons/sale_order_dates/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nl.po b/addons/sale_order_dates/i18n/nl.po index be8a0a7b45c..ed137881b33 100644 --- a/addons/sale_order_dates/i18n/nl.po +++ b/addons/sale_order_dates/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pl.po b/addons/sale_order_dates/i18n/pl.po index 9e339f19447..e70cecff514 100644 --- a/addons/sale_order_dates/i18n/pl.po +++ b/addons/sale_order_dates/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index e8853ace6db..df8e4fbfa33 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po index 74c2f5258aa..07d8a11c3aa 100644 --- a/addons/sale_order_dates/i18n/pt_BR.po +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ro.po b/addons/sale_order_dates/i18n/ro.po index 2da82efebd5..dd321467343 100644 --- a/addons/sale_order_dates/i18n/ro.po +++ b/addons/sale_order_dates/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index aa47e34ef86..081470585c5 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 msgid "Dates" -msgstr "" +msgstr "Даты" #. module: sale_order_dates #: field:sale.order,commitment_date:0 @@ -40,7 +40,7 @@ msgstr "Дата на которую сделано комплектование #. module: sale_order_dates #: help:sale.order,requested_date:0 msgid "Date requested by the customer for the sale." -msgstr "" +msgstr "Дата продажи, требуемая заказчиком." #. module: sale_order_dates #: field:sale.order,requested_date:0 diff --git a/addons/sale_order_dates/i18n/sk.po b/addons/sale_order_dates/i18n/sk.po index de957c434a2..eca6638e21f 100644 --- a/addons/sale_order_dates/i18n/sk.po +++ b/addons/sale_order_dates/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sl.po b/addons/sale_order_dates/i18n/sl.po index 594033eb27d..ad519cec19a 100644 --- a/addons/sale_order_dates/i18n/sl.po +++ b/addons/sale_order_dates/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sr@latin.po b/addons/sale_order_dates/i18n/sr@latin.po index ddd5e4b7d10..3b517b58872 100644 --- a/addons/sale_order_dates/i18n/sr@latin.po +++ b/addons/sale_order_dates/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sv.po b/addons/sale_order_dates/i18n/sv.po index becead837ce..5fac6e7e548 100644 --- a/addons/sale_order_dates/i18n/sv.po +++ b/addons/sale_order_dates/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/tr.po b/addons/sale_order_dates/i18n/tr.po index f54eb23e9b8..a4292afb599 100644 --- a/addons/sale_order_dates/i18n/tr.po +++ b/addons/sale_order_dates/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/zh_CN.po b/addons/sale_order_dates/i18n/zh_CN.po index 9d6b6ee3c25..04334eb2814 100644 --- a/addons/sale_order_dates/i18n/zh_CN.po +++ b/addons/sale_order_dates/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_stock/i18n/ar.po b/addons/sale_stock/i18n/ar.po index 06c1dc863f0..ee135a8bd29 100644 --- a/addons/sale_stock/i18n/ar.po +++ b/addons/sale_stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bg.po b/addons/sale_stock/i18n/bg.po index e228cefa521..8569a644f8c 100644 --- a/addons/sale_stock/i18n/bg.po +++ b/addons/sale_stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bs.po b/addons/sale_stock/i18n/bs.po index 3232d4932b2..a930a0a16cc 100644 --- a/addons/sale_stock/i18n/bs.po +++ b/addons/sale_stock/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ca.po b/addons/sale_stock/i18n/ca.po index b5bca7e224e..250f6cf8d85 100644 --- a/addons/sale_stock/i18n/ca.po +++ b/addons/sale_stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/cs.po b/addons/sale_stock/i18n/cs.po index 1b8e6158faf..cc86136bbda 100644 --- a/addons/sale_stock/i18n/cs.po +++ b/addons/sale_stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/da.po b/addons/sale_stock/i18n/da.po index bf2d0015aa2..bff84a376cc 100644 --- a/addons/sale_stock/i18n/da.po +++ b/addons/sale_stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/de.po b/addons/sale_stock/i18n/de.po index 6d39ac19169..356f3ec169a 100644 --- a/addons/sale_stock/i18n/de.po +++ b/addons/sale_stock/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/el.po b/addons/sale_stock/i18n/el.po index 2a411e0e0d8..5f4322f114a 100644 --- a/addons/sale_stock/i18n/el.po +++ b/addons/sale_stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/es.po b/addons/sale_stock/i18n/es.po index 3f41b1df396..8b806912e41 100644 --- a/addons/sale_stock/i18n/es.po +++ b/addons/sale_stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 @@ -304,7 +304,7 @@ msgstr "" #. module: sale_stock #: help:sale.config.settings,group_mrp_properties:0 msgid "Allows you to tag sales order lines with properties." -msgstr "" +msgstr "Permite etiquetar las líneas de pedido de venta con propiedades." #. module: sale_stock #: field:sale.config.settings,group_invoice_deli_orders:0 @@ -343,6 +343,10 @@ msgid "" "prices.\n" " This installs the module delivery." msgstr "" +"Permite añadir métodos de entrega en los pedidos de venta y en las órdenes " +"de entrega.\n" +"Puede definir su propio transportista y las tarifas de envío.\n" +"Esto instala el módulo 'delivery'." #. module: sale_stock #: field:sale.config.settings,default_picking_policy:0 @@ -442,6 +446,8 @@ msgid "" "Allows you to specify different delivery and invoice addresses on a sales " "order." msgstr "" +"Permite especificar diversas direcciones de facturación y de entrega en los " +"pedidos de venta." #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleprocurement0 diff --git a/addons/sale_stock/i18n/et.po b/addons/sale_stock/i18n/et.po index 327176ee65a..883a4f7e24c 100644 --- a/addons/sale_stock/i18n/et.po +++ b/addons/sale_stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:44+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fi.po b/addons/sale_stock/i18n/fi.po index f000b54fd3e..bae48fe4ebd 100644 --- a/addons/sale_stock/i18n/fi.po +++ b/addons/sale_stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fr.po b/addons/sale_stock/i18n/fr.po index 250bf302679..24854533dba 100644 --- a/addons/sale_stock/i18n/fr.po +++ b/addons/sale_stock/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/gl.po b/addons/sale_stock/i18n/gl.po index 8e9cb1abfc6..0fc11dabb14 100644 --- a/addons/sale_stock/i18n/gl.po +++ b/addons/sale_stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hr.po b/addons/sale_stock/i18n/hr.po index 91aada2c1bb..02d0030249c 100644 --- a/addons/sale_stock/i18n/hr.po +++ b/addons/sale_stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hu.po b/addons/sale_stock/i18n/hu.po index 64d88fd1504..07539d654e9 100644 --- a/addons/sale_stock/i18n/hu.po +++ b/addons/sale_stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 @@ -23,6 +23,8 @@ msgid "" "To allow your salesman to make invoices for Delivery Orders using the menu " "'Deliveries to Invoice'." msgstr "" +"Engedélyezi az értékesítőnek a kiszállítási kézbesítési bizonylatra történő " +"számlázást a 'Kiszállítások számlázása' menüben." #. module: sale_stock #: model:process.node,name:sale_stock.process_node_deliveryorder0 @@ -33,13 +35,13 @@ msgstr "Kiszállítási megbízás" #: model:ir.actions.act_window,name:sale_stock.outgoing_picking_list_to_invoice #: model:ir.ui.menu,name:sale_stock.menu_action_picking_list_to_invoice msgid "Deliveries to Invoice" -msgstr "" +msgstr "Számlázandó kiszállítások" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:544 #, python-format msgid "Picking Information ! : " -msgstr "" +msgstr "Kiválogatási információ ! : " #. module: sale_stock #: model:process.node,name:sale_stock.process_node_packinglist0 @@ -55,6 +57,11 @@ msgid "" "Here is a proposition of quantities according to the packaging:\n" "EAN: %s Quantity: %s Type of ul: %s" msgstr "" +"Kiválasztott egy mennyiséget ezekben a mértékegységekben %d.\n" +"De ez nem kompatibilis a kiválasztott csomagolással.\n" +"Itt van egy javaslat a csomagolás szerinti mennyiségre:\n" +"Globális szabványalapú azonosító (EAN): %s Mennyiség: %s Csomagolás típusa: " +"%s" #. module: sale_stock #: model:process.node,note:sale_stock.process_node_packinglist0 @@ -64,7 +71,7 @@ msgstr "Dokumentum a gyártásnak vagy a vevőnek irányuló árumozgásról." #. module: sale_stock #: field:sale.config.settings,group_multiple_shops:0 msgid "Manage multiple shops" -msgstr "" +msgstr "Több eladási hely kezelése" #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_validate0 @@ -77,6 +84,8 @@ msgstr "Érvényesítés" msgid "" "You must first cancel all delivery order(s) attached to this sales order." msgstr "" +"Előszőr a megrendeléshez tartozó összes kiszállítási kézbesítési bizonylatot " +"törölnie kell." #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleprocurement0 @@ -101,7 +110,7 @@ msgstr "" #: code:addons/sale_stock/sale_stock.py:615 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: sale_stock #: field:sale.order,picking_policy:0 @@ -115,6 +124,8 @@ msgid "" "You cannot make an advance on a sales order that is " "defined as 'Automatic Invoice after delivery'." msgstr "" +"Nem végezhet előrelépést egy megrendelésen ami úgy van meghatározva, hogy " +"'Szállítás után automatikus számlázás'." #. module: sale_stock #: model:ir.ui.menu,name:sale_stock.menu_action_shop_form @@ -135,24 +146,24 @@ msgstr "Készletmozgás" #: code:addons/sale_stock/sale_stock.py:161 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Érvénytelen lépés!" #. module: sale_stock #: field:sale.config.settings,module_project_timesheet:0 msgid "Project Timesheet" -msgstr "" +msgstr "Projekt munkaidő-kimutatása" #. module: sale_stock #: field:sale.config.settings,group_sale_delivery_address:0 msgid "Allow a different address for delivery and invoicing " -msgstr "" +msgstr "Engedélyezze akülönböző címeket a szállításhoz és a számlázáshoz " #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:546 #: code:addons/sale_stock/sale_stock.py:597 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Beállítási hiba!" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleprocurement0 @@ -162,7 +173,7 @@ msgstr "Beszerzési megbízás" #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on deliveries" -msgstr "" +msgstr "Számla a szállítások alapján" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order @@ -173,7 +184,7 @@ msgstr "Értékesítési megbízás" #. module: sale_stock #: model:ir.model,name:sale_stock.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Kiszállítások kézbesítési bizonylatai" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order_line @@ -218,7 +229,7 @@ msgstr "Hozzárendelés eröltetése" #. module: sale_stock #: field:sale.config.settings,default_order_policy:0 msgid "The default invoicing method is" -msgstr "" +msgstr "Az alapértelmezett számlázási módszer a következő" #. module: sale_stock #: field:sale.order.line,delay:0 @@ -233,7 +244,7 @@ msgstr "Dokumentum a vevőnek történő mozgásról." #. module: sale_stock #: view:sale.order:0 msgid "View Delivery Order" -msgstr "" +msgstr "Kiszállítási kézbesítési bizonylatok áttekintése" #. module: sale_stock #: field:sale.order.line,move_ids:0 @@ -243,12 +254,12 @@ msgstr "Leltármozgás" #. module: sale_stock #: view:sale.config.settings:0 msgid "Default Options" -msgstr "" +msgstr "Alapértelmezett lehetőség" #. module: sale_stock #: field:sale.config.settings,module_project_mrp:0 msgid "Project MRP" -msgstr "" +msgstr "MRP Gyártás tervezési project" #. module: sale_stock #: model:process.transition,note:sale_stock.process_transition_invoiceafterdelivery0 @@ -294,22 +305,23 @@ msgstr "" #. module: sale_stock #: help:sale.config.settings,group_mrp_properties:0 msgid "Allows you to tag sales order lines with properties." -msgstr "" +msgstr "Lehetővé teszi a megrendelési sorok tulajdonságokal való kijelölését" #. module: sale_stock #: field:sale.config.settings,group_invoice_deli_orders:0 msgid "Generate invoices after and based on delivery orders" msgstr "" +"Számla generálása később és a kiszállítási kézbesítési bizonylatok alapján" #. module: sale_stock #: field:sale.config.settings,module_delivery:0 msgid "Allow adding shipping costs" -msgstr "" +msgstr "Szállítási ár hozzáadásának engedélyezése" #. module: sale_stock #: view:sale.order:0 msgid "days" -msgstr "" +msgstr "napok" #. module: sale_stock #: field:sale.order.line,product_packaging:0 @@ -322,6 +334,8 @@ msgid "" "International Commercial Terms are a series of predefined commercial terms " "used in international transactions." msgstr "" +"Nemzetközi üzleti feltételek, olyan előredefiniált üzleti feltételek, " +"melyeket nemzetközi ügyleteknél használnak." #. module: sale_stock #: help:sale.config.settings,module_delivery:0 @@ -331,16 +345,21 @@ msgid "" "prices.\n" " This installs the module delivery." msgstr "" +"Lehetővé teszi szállítási mód hozzáadását a megrendelésekhez és a " +"kiszállítási kézbesítési bizonylatokhoz.\n" +" Meghatározhatja a saját szállítóját és szállítási hálózatát " +"külön árárt.\n" +" Ez a delivery modult telepíti." #. module: sale_stock #: field:sale.config.settings,default_picking_policy:0 msgid "Deliver all at once when all products are available." -msgstr "" +msgstr "Egyszerre történő szállítás, ha az összes termék rendelkezésre áll." #. module: sale_stock #: model:res.groups,name:sale_stock.group_invoice_deli_orders msgid "Enable Invoicing Delivery orders" -msgstr "" +msgstr "Kiszállítási kézbesítési bizonylatok számlázásának bekapcsolása" #. module: sale_stock #: field:res.company,security_lead:0 @@ -357,12 +376,14 @@ msgstr "Az eladott anyagok beszerzése" msgid "" "Pick 'Deliver each product when available' if you allow partial delivery." msgstr "" +"Válasszon ki 'Szállítson ki egyesével terméket, amint az elérhető' ha rés " +"szállítmányt akar megengedni." #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:206 #, python-format msgid "Cannot cancel sales order!" -msgstr "" +msgstr "Megrendelést nem tudja törölni!" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_shop @@ -386,7 +407,7 @@ msgstr "Tulajdonságok" #. module: sale_stock #: field:sale.config.settings,group_mrp_properties:0 msgid "Product properties on order lines" -msgstr "" +msgstr "Termék tulajdonságok a megrendelés sorain" #. module: sale_stock #: help:sale.config.settings,default_order_policy:0 @@ -416,6 +437,14 @@ msgid "" "lines.\n" " This installs the modules project_timesheet and project_mrp." msgstr "" +"Lehetővé teszi a Terv szervezése alatt álló bevitt feladatok átmozgatását " +"egy\n" +" kiválasztott felhasználó és kiválasztott dátum időkimutatás " +"sor tételeibe, ennek értelmében bármilyen módon létrehozhat, szerkeszthet " +"és törölhet \n" +" és automatikusan létrehoz terv feladatokat a beszerzés " +"soraiból.\n" +" Ez a project_timesheet és project_mrp modult telepíti." #. module: sale_stock #: help:sale.config.settings,group_sale_delivery_address:0 @@ -423,6 +452,8 @@ msgid "" "Allows you to specify different delivery and invoice addresses on a sales " "order." msgstr "" +"Lehetővé teszi különböző szállítási és számlázási cím meghatározását a " +"megrendelésekhez." #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleprocurement0 @@ -442,7 +473,7 @@ msgstr "Hozzárendelés" #: code:addons/sale_stock/sale_stock.py:592 #, python-format msgid "Not enough stock ! : " -msgstr "" +msgstr "Nincs elég raktárkészlet!: " #. module: sale_stock #: help:sale.order.line,delay:0 @@ -450,6 +481,8 @@ msgid "" "Number of days between the order confirmation and the shipping of the " "products to the customer" msgstr "" +"A megrendelése visszaigazolás és a termék megrendelőhöz való kiszállítása " +"közti napok száma." #. module: sale_stock #: help:sale.config.settings,default_picking_policy:0 @@ -458,11 +491,14 @@ msgid "" "instead of delivering each product when it is available. This may have an " "impact on the shipping price." msgstr "" +"A megrendelések alapértelmezetten az összes termék egyszerre történő " +"kiszállítására van beállítva, nem pedig az egyes termékek elérhetőségétől " +"függően. Ez befolyással lehet a szállítási árra." #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on sales orders" -msgstr "" +msgstr "Megrendeléseken alapuló számla" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_invoiceafterdelivery0 @@ -483,6 +519,9 @@ msgid "" "In order to delete a confirmed sales order, you must cancel it.\n" "To do so, you must first cancel related picking for delivery orders." msgstr "" +"Egy visszaigazolt megrendelés törléséhez, először vissza kell azt vonni.\n" +"Ehhez, először az ide tartozó megrendelési kiválogatási listákat kell " +"törölni." #. module: sale_stock #: field:sale.order.line,number_packages:0 @@ -502,7 +541,7 @@ msgstr "Számla készítése" #. module: sale_stock #: field:sale.config.settings,task_work:0 msgid "Prepare invoices based on task's activities" -msgstr "" +msgstr "Számlák készítése a feladat tevékenységek alapján" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_advance_payment_inv @@ -532,7 +571,7 @@ msgstr "Nemzetközi Kereskedelmi Feltételek" #: code:addons/sale_stock/sale_stock.py:496 #, python-format msgid "Cannot cancel sales order line!" -msgstr "" +msgstr "A megrendelés sorát nem tudja visszavonni!" #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_cancelassignation0 @@ -547,7 +586,7 @@ msgstr "A kiszálított vagy a megrendelt mennyiség alapján." #. module: sale_stock #: selection:sale.order,picking_policy:0 msgid "Deliver all products at once" -msgstr "" +msgstr "Minden termék egyszerre történő szállítása" #. module: sale_stock #: field:sale.order,picking_ids:0 @@ -557,7 +596,7 @@ msgstr "Kapcsolódó kiszedések" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: sale_stock #: help:sale.order,picking_ids:0 @@ -565,6 +604,8 @@ msgid "" "This is a list of delivery orders that has been generated for this sales " "order." msgstr "" +"Ez az ehhez a megrendeléshez létrehozott kiszállítási Kiszolgáltatási jegyek " +"listája." #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleorderprocurement0 @@ -595,12 +636,12 @@ msgstr "" #. module: sale_stock #: view:sale.order:0 msgid "Recreate Delivery Order" -msgstr "" +msgstr "Kiszállítási Kiszolgáltatási jegy létrehozása" #. module: sale_stock #: help:sale.config.settings,group_multiple_shops:0 msgid "This allows to configure and use multiple shops." -msgstr "" +msgstr "Ez lehetővé teszi a többes eladóhelyek beállítását." #. module: sale_stock #: field:sale.order,picked_rate:0 @@ -610,7 +651,7 @@ msgstr "Kiszedve" #. module: sale_stock #: selection:sale.order,picking_policy:0 msgid "Deliver each product when available" -msgstr "" +msgstr "Mindegyik terméket akkor szállítsa, ha azok elérhetőek" #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_packing0 diff --git a/addons/sale_stock/i18n/id.po b/addons/sale_stock/i18n/id.po index 164c9ec9a46..9d1757c002e 100644 --- a/addons/sale_stock/i18n/id.po +++ b/addons/sale_stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/is.po b/addons/sale_stock/i18n/is.po index f04c46b5719..90e81940040 100644 --- a/addons/sale_stock/i18n/is.po +++ b/addons/sale_stock/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/it.po b/addons/sale_stock/i18n/it.po index b97b15ea1b7..196ed5ca193 100644 --- a/addons/sale_stock/i18n/it.po +++ b/addons/sale_stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ja.po b/addons/sale_stock/i18n/ja.po index 1af1fd7f7a1..5a3b6e5eec4 100644 --- a/addons/sale_stock/i18n/ja.po +++ b/addons/sale_stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index 73404400cc5..41de81cded5 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lo.po b/addons/sale_stock/i18n/lo.po index ad945cdc1cd..e0ba34bee0a 100644 --- a/addons/sale_stock/i18n/lo.po +++ b/addons/sale_stock/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lt.po b/addons/sale_stock/i18n/lt.po index 627d3318cda..704529ed2e6 100644 --- a/addons/sale_stock/i18n/lt.po +++ b/addons/sale_stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lv.po b/addons/sale_stock/i18n/lv.po index c83e4d7fa4b..963e0cd4377 100644 --- a/addons/sale_stock/i18n/lv.po +++ b/addons/sale_stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/mn.po b/addons/sale_stock/i18n/mn.po index 8095138fed6..d845c3c95d2 100644 --- a/addons/sale_stock/i18n/mn.po +++ b/addons/sale_stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nb.po b/addons/sale_stock/i18n/nb.po index 02d50e1c3c1..7a66531db84 100644 --- a/addons/sale_stock/i18n/nb.po +++ b/addons/sale_stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index 25fc501c098..7d52fd4839d 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/oc.po b/addons/sale_stock/i18n/oc.po index cf1ea2125a7..5bba1f1d525 100644 --- a/addons/sale_stock/i18n/oc.po +++ b/addons/sale_stock/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pl.po b/addons/sale_stock/i18n/pl.po index eafc3815ae1..5e53d056048 100644 --- a/addons/sale_stock/i18n/pl.po +++ b/addons/sale_stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt.po b/addons/sale_stock/i18n/pt.po index e4317f2a491..91f410e0f33 100644 --- a/addons/sale_stock/i18n/pt.po +++ b/addons/sale_stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt_BR.po b/addons/sale_stock/i18n/pt_BR.po index 836c45649c8..d5d48d4dbd1 100644 --- a/addons/sale_stock/i18n/pt_BR.po +++ b/addons/sale_stock/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 @@ -304,7 +304,7 @@ msgstr "" #. module: sale_stock #: help:sale.config.settings,group_mrp_properties:0 msgid "Allows you to tag sales order lines with properties." -msgstr "" +msgstr "Te permite marcar linhas do pedido de vendas com propriedades." #. module: sale_stock #: field:sale.config.settings,group_invoice_deli_orders:0 @@ -343,6 +343,11 @@ msgid "" "prices.\n" " This installs the module delivery." msgstr "" +"Permite que você adicione métodos de entrega em pedidos de venda e ordens de " +"entrega.\n" +"                 Você pode definir seu próprio portador e redes de " +"distribuição para os preços.\n" +"                 Isso instala o módulo delivery." #. module: sale_stock #: field:sale.config.settings,default_picking_policy:0 @@ -446,6 +451,8 @@ msgid "" "Allows you to specify different delivery and invoice addresses on a sales " "order." msgstr "" +"Permite especificar endereços de entrega e fatura diferentes em um pedido de " +"venda." #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleprocurement0 diff --git a/addons/sale_stock/i18n/ro.po b/addons/sale_stock/i18n/ro.po index 805adf2c5ed..4ac95055e89 100644 --- a/addons/sale_stock/i18n/ro.po +++ b/addons/sale_stock/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ru.po b/addons/sale_stock/i18n/ru.po index 8aa8e69084f..fed028e61fb 100644 --- a/addons/sale_stock/i18n/ru.po +++ b/addons/sale_stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 @@ -33,7 +33,7 @@ msgstr "Заказ на доставку" #: model:ir.actions.act_window,name:sale_stock.outgoing_picking_list_to_invoice #: model:ir.ui.menu,name:sale_stock.menu_action_picking_list_to_invoice msgid "Deliveries to Invoice" -msgstr "" +msgstr "Доставки в счета" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:544 @@ -55,6 +55,10 @@ msgid "" "Here is a proposition of quantities according to the packaging:\n" "EAN: %s Quantity: %s Type of ul: %s" msgstr "" +"Вы выбрали количество из %d единиц.\n" +"Но это не совместимо с выбранной упаковкой.\n" +"Вот предложение количеств в соответствии с упаковкой:\n" +"штрих-код: %s количество: %s тип ul: %s" #. module: sale_stock #: model:process.node,note:sale_stock.process_node_packinglist0 @@ -64,7 +68,7 @@ msgstr "Документ перемещения на выход или зака #. module: sale_stock #: field:sale.config.settings,group_multiple_shops:0 msgid "Manage multiple shops" -msgstr "" +msgstr "Управление несколькими магазинами" #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_validate0 @@ -77,6 +81,8 @@ msgstr "Утвердить" msgid "" "You must first cancel all delivery order(s) attached to this sales order." msgstr "" +"Сначала вы должны отменить все заказы доставки, приложенные к этому заказу " +"продаж." #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleprocurement0 @@ -101,7 +107,7 @@ msgstr "" #: code:addons/sale_stock/sale_stock.py:615 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: sale_stock #: field:sale.order,picking_policy:0 @@ -136,12 +142,12 @@ msgstr "Движение запасов" #: code:addons/sale_stock/sale_stock.py:161 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Неверное действие!" #. module: sale_stock #: field:sale.config.settings,module_project_timesheet:0 msgid "Project Timesheet" -msgstr "" +msgstr "Табель проекта" #. module: sale_stock #: field:sale.config.settings,group_sale_delivery_address:0 @@ -153,7 +159,7 @@ msgstr "" #: code:addons/sale_stock/sale_stock.py:597 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Ошибка конфигурации!" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleprocurement0 @@ -174,7 +180,7 @@ msgstr "Заказ на продажу" #. module: sale_stock #: model:ir.model,name:sale_stock.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Заказы доставки" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order_line @@ -220,7 +226,7 @@ msgstr "Назначить насильно" #. module: sale_stock #: field:sale.config.settings,default_order_policy:0 msgid "The default invoicing method is" -msgstr "" +msgstr "Метод выставления счета по умолчанию:" #. module: sale_stock #: field:sale.order.line,delay:0 @@ -245,7 +251,7 @@ msgstr "Движение запасов" #. module: sale_stock #: view:sale.config.settings:0 msgid "Default Options" -msgstr "" +msgstr "Параметры по умолчанию" #. module: sale_stock #: field:sale.config.settings,module_project_mrp:0 @@ -309,7 +315,7 @@ msgstr "" #. module: sale_stock #: view:sale.order:0 msgid "days" -msgstr "" +msgstr "дней" #. module: sale_stock #: field:sale.order.line,product_packaging:0 @@ -335,7 +341,7 @@ msgstr "" #. module: sale_stock #: field:sale.config.settings,default_picking_policy:0 msgid "Deliver all at once when all products are available." -msgstr "" +msgstr "Доставка всего сразу, если все готово." #. module: sale_stock #: model:res.groups,name:sale_stock.group_invoice_deli_orders @@ -362,7 +368,7 @@ msgstr "" #: code:addons/sale_stock/sale_stock.py:206 #, python-format msgid "Cannot cancel sales order!" -msgstr "" +msgstr "Нельзя отменить заказ продажи!" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_shop @@ -386,7 +392,7 @@ msgstr "Свойства" #. module: sale_stock #: field:sale.config.settings,group_mrp_properties:0 msgid "Product properties on order lines" -msgstr "" +msgstr "Свойства изделия в позиции заказа" #. module: sale_stock #: help:sale.config.settings,default_order_policy:0 diff --git a/addons/sale_stock/i18n/sk.po b/addons/sale_stock/i18n/sk.po index c4c2ddcff0d..e0ca51cb328 100644 --- a/addons/sale_stock/i18n/sk.po +++ b/addons/sale_stock/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sl.po b/addons/sale_stock/i18n/sl.po index 70d6de613a9..6dcfdd89415 100644 --- a/addons/sale_stock/i18n/sl.po +++ b/addons/sale_stock/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sq.po b/addons/sale_stock/i18n/sq.po index 1b568caefa5..b6dae2ba505 100644 --- a/addons/sale_stock/i18n/sq.po +++ b/addons/sale_stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr.po b/addons/sale_stock/i18n/sr.po index 22401a9c974..eeaf6baa871 100644 --- a/addons/sale_stock/i18n/sr.po +++ b/addons/sale_stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr@latin.po b/addons/sale_stock/i18n/sr@latin.po index 0d027cfd926..b15b5a10f68 100644 --- a/addons/sale_stock/i18n/sr@latin.po +++ b/addons/sale_stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sv.po b/addons/sale_stock/i18n/sv.po index 8b3f92740f1..b478cbc2845 100644 --- a/addons/sale_stock/i18n/sv.po +++ b/addons/sale_stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/th.po b/addons/sale_stock/i18n/th.po index 03abfe52b6d..1b05370b67e 100644 --- a/addons/sale_stock/i18n/th.po +++ b/addons/sale_stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tlh.po b/addons/sale_stock/i18n/tlh.po index b6a03ff00f5..de542c80a52 100644 --- a/addons/sale_stock/i18n/tlh.po +++ b/addons/sale_stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tr.po b/addons/sale_stock/i18n/tr.po index b3d7d27b60b..a67b2d1a987 100644 --- a/addons/sale_stock/i18n/tr.po +++ b/addons/sale_stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/uk.po b/addons/sale_stock/i18n/uk.po index 4a446da7c26..aacf0e957d8 100644 --- a/addons/sale_stock/i18n/uk.po +++ b/addons/sale_stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/vi.po b/addons/sale_stock/i18n/vi.po index 9cfff71b5ea..c9f2729a95e 100644 --- a/addons/sale_stock/i18n/vi.po +++ b/addons/sale_stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_CN.po b/addons/sale_stock/i18n/zh_CN.po index da9989ae9fa..aedf4bcd420 100644 --- a/addons/sale_stock/i18n/zh_CN.po +++ b/addons/sale_stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_TW.po b/addons/sale_stock/i18n/zh_TW.po index a7a894207e5..c0da3d122de 100644 --- a/addons/sale_stock/i18n/zh_TW.po +++ b/addons/sale_stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/share/i18n/ar.po b/addons/share/i18n/ar.po index 4aad651787c..162f75ee2e7 100644 --- a/addons/share/i18n/ar.po +++ b/addons/share/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/bg.po b/addons/share/i18n/bg.po index 87e1bc615b8..d600b878b7a 100644 --- a/addons/share/i18n/bg.po +++ b/addons/share/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ca.po b/addons/share/i18n/ca.po index b3352739e13..fc0251e2a19 100644 --- a/addons/share/i18n/ca.po +++ b/addons/share/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/cs.po b/addons/share/i18n/cs.po index 3b8a04a8de8..9c1191a6739 100644 --- a/addons/share/i18n/cs.po +++ b/addons/share/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/da.po b/addons/share/i18n/da.po index cd161daeeb6..a4b5ed1d292 100644 --- a/addons/share/i18n/da.po +++ b/addons/share/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 0dfdf69d53d..70f3abdbb65 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:05+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index 2ae37e05936..670e8be3750 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 @@ -138,7 +138,7 @@ msgstr "" #: code:addons/share/static/src/js/share.js:63 #, python-format msgid "Embed" -msgstr "" +msgstr "Incrustar" #. module: share #: code:addons/share/wizard/share_wizard.py:598 diff --git a/addons/share/i18n/es_CR.po b/addons/share/i18n/es_CR.po index bf2026e2107..c3cd33ef4d3 100644 --- a/addons/share/i18n/es_CR.po +++ b/addons/share/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/et.po b/addons/share/i18n/et.po index b434ab71bbc..5c7e0de7afd 100644 --- a/addons/share/i18n/et.po +++ b/addons/share/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/fi.po b/addons/share/i18n/fi.po index e219f86a0d3..114921d1757 100644 --- a/addons/share/i18n/fi.po +++ b/addons/share/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index af36cc4c56e..8512b2f987d 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/gl.po b/addons/share/i18n/gl.po index 930d74084a6..7cf52731ae5 100644 --- a/addons/share/i18n/gl.po +++ b/addons/share/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/hr.po b/addons/share/i18n/hr.po index f4693b0e029..eb358832b12 100644 --- a/addons/share/i18n/hr.po +++ b/addons/share/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/hu.po b/addons/share/i18n/hu.po index b9ae52bfffd..a2a2a7564eb 100644 --- a/addons/share/i18n/hu.po +++ b/addons/share/i18n/hu.po @@ -14,57 +14,58 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 #, python-format msgid "Invitation to collaborate about %s" -msgstr "" +msgstr "Meghívás az ebben %s való együttműködésre" #. module: share #: code:addons/share/wizard/share_wizard.py:779 #, python-format msgid "" "The share engine has not been able to fetch a record_id for your invitation." -msgstr "" +msgstr "A megosztó motor nem tud a meghívóhoz record_id azonosítót kiosztani" #. module: share #: view:share.wizard:0 msgid "Include an Optional Personal Message" -msgstr "" +msgstr "Egy tetszőleges személyes megjegyzés beillesztése" #. module: share #: field:share.wizard,embed_option_title:0 msgid "Display title" -msgstr "" +msgstr "Cím kijelzése" #. module: share #: view:share.wizard:0 msgid "Access granted!" -msgstr "" +msgstr "Kapcsolat létrehozva!" #. module: share #: field:share.wizard,record_name:0 msgid "Record name" -msgstr "" +msgstr "Jegyzet neve" #. module: share #: help:share.wizard,message:0 msgid "" "An optional personal message, to be included in the email notification." msgstr "" +"Egy tetszőleges személyes megjegyzés, hozzáadva az e-mail értesítéshez" #. module: share #: field:share.wizard,user_type:0 msgid "Sharing method" -msgstr "" +msgstr "Megosztási mód" #. module: share #: field:share.wizard,name:0 msgid "Share Title" -msgstr "" +msgstr "Megosztás címe" #. module: share #: code:addons/share/wizard/share_wizard.py:847 @@ -76,6 +77,9 @@ msgid "" " %s\n" "\n" msgstr "" +"A dokumentum nincs mellékelve, megnézheti online az OpenERP szerveren itt:\n" +" %s\n" +"\n" #. module: share #: model:ir.module.category,name:share.module_category_share @@ -90,67 +94,72 @@ msgid "" "Hello,\n" "\n" msgstr "" +"Tisztelt,\n" +"\n" #. module: share #: field:share.wizard,share_root_url:0 msgid "Share Access URL" -msgstr "" +msgstr "Elérési útvonal URL megosztása" #. module: share #: field:share.wizard,email_1:0 #: field:share.wizard,email_2:0 #: field:share.wizard,email_3:0 msgid "New user email" -msgstr "" +msgstr "Új felhasználói E-mail" #. module: share #: code:addons/share/wizard/share_wizard.py:886 #, python-format msgid "You may use your current login (%s) and password to view them.\n" msgstr "" +"A meglévő belépési adatot (%s) és jelszavat használja a megtekintéshez.\n" #. module: share #: code:addons/share/wizard/share_wizard.py:620 #, python-format msgid "(Modified)" -msgstr "" +msgstr "(Módosítva)" #. module: share #: code:addons/share/wizard/share_wizard.py:664 #, python-format msgid "You must be a member of the Share/User group to use the share wizard." msgstr "" +"A megosztás varázsló használatához Megosztás/Felhasználó csoport tagnak kell " +"lennie." #. module: share #. openerp-web #: code:addons/share/static/src/js/share.js:63 #, python-format msgid "Embed" -msgstr "" +msgstr "Beágyaz" #. module: share #: code:addons/share/wizard/share_wizard.py:598 #, python-format msgid "Sharing filter created by user %s (%s) for group %s" -msgstr "" +msgstr "Szűrőt hozott létre ez a felhasználó %s (%s) erre a csoportra %s" #. module: share #: field:share.wizard,embed_url:0 #: field:share.wizard.result.line,share_url:0 msgid "Share URL" -msgstr "" +msgstr "Útvonal URL megosztása" #. module: share #: code:addons/share/wizard/share_wizard.py:848 #: code:addons/share/wizard/share_wizard.py:880 #, python-format msgid "These are your credentials to access this protected area:\n" -msgstr "" +msgstr "Ezek az okmányai ennek a tiltott területnek az eléréséhez:\n" #. module: share #: view:share.wizard:0 msgid "Access info" -msgstr "" +msgstr "Hozzáférési információ" #. module: share #. openerp-web @@ -164,7 +173,7 @@ msgstr "Megosztás" #: code:addons/share/wizard/share_wizard.py:570 #, python-format msgid "(Duplicated for modified sharing permissions)" -msgstr "" +msgstr "(Megduplázva a módosított megosztás engedélyhez)" #. module: share #: code:addons/share/wizard/share_wizard.py:668 @@ -172,11 +181,13 @@ msgstr "" msgid "" "Please indicate the emails of the persons to share with, one per line." msgstr "" +"Kérem megmutatni a megosztáshoz megjelölt személyek e-mailjeit, soronként " +"egyet." #. module: share #: help:share.wizard,domain:0 msgid "Optional domain for further data filtering" -msgstr "" +msgstr "Tárgykör lehetőség további adat szűréshez" #. module: share #: view:share.wizard:0 @@ -188,6 +199,7 @@ msgstr "Következő" #, python-format msgid "Action and Access Mode are required to create a shared access." msgstr "" +"Műveleti és elérési mód szükséges a megosztott hozzáférés létrehozásához." #. module: share #: code:addons/share/wizard/share_wizard.py:849 @@ -199,24 +211,24 @@ msgstr "Felhasználónév" #. module: share #: view:share.wizard:0 msgid "Sharing Options" -msgstr "" +msgstr "Megosztás beállításai" #. module: share #. openerp-web #: code:addons/share/static/src/xml/share.xml:9 #, python-format msgid "Invite" -msgstr "" +msgstr "Meghívás" #. module: share #: view:share.wizard:0 msgid "Embedded code options" -msgstr "" +msgstr "Beágyazott kód lehetőség" #. module: share #: view:share.wizard:0 msgid "Configuration" -msgstr "" +msgstr "Beállítás" #. module: share #: view:share.wizard:0 @@ -224,6 +236,8 @@ msgid "" "Please select the action that opens the screen containing the data you want " "to share." msgstr "" +"Kérem válassza a műveletet ami megnyitja a megosztani kívánt adatot a " +"képernyőn" #. module: share #: field:res.groups,share:0 @@ -243,11 +257,13 @@ msgid "" "Optionally, you may specify an additional domain restriction that will be " "applied to the shared data." msgstr "" +"Lehetőségként, meghatározhat elérési tartomány korlátozást ami a megosztott " +"adatra érvényesítve lesz." #. module: share #: view:res.groups:0 msgid "Non-Share Groups" -msgstr "" +msgstr "Nem-osztott csoportok" #. module: share #: view:share.wizard:0 @@ -255,12 +271,13 @@ msgid "" "An email notification with instructions has been sent to the following " "people:" msgstr "" +"El lett küldve egy email értesítés útmutatásokkal a következő embereknek:" #. module: share #: code:addons/share/wizard/share_wizard.py:77 #, python-format msgid "Direct link or embed code" -msgstr "" +msgstr "Direk futtatható vagy beágyazott kód" #. module: share #: code:addons/share/wizard/share_wizard.py:855 @@ -271,61 +288,67 @@ msgid "" "Sales, HR, etc.)\n" "It is open source and can be found on http://www.openerp.com." msgstr "" +"OpenERP egy erőteljes és felhasználó-barát alkalmazás a Kereskedelmi " +"alkalmazásokhoz (CRM ügyfélkapcsolat kezelő , Kereskedelem , Személyzeti " +"ügyintézés (HR) , stb.)\n" +"Szabad forráskódú és megtalálható ezen az oldalon: http://www.openerp.com." #. module: share #: field:share.wizard,action_id:0 msgid "Action to share" -msgstr "" +msgstr "Művelet a megosztáshoz" #. module: share #: help:share.wizard,record_name:0 msgid "Name of the shared record, if sharing a precise record" -msgstr "" +msgstr "A megosztott rekord neve, ha egy pontos rekordot oszt meg" #. module: share #: field:res.users,share:0 msgid "Share User" -msgstr "" +msgstr "Felhasználó megosztás" #. module: share #: field:share.wizard.result.line,user_id:0 msgid "unknown" -msgstr "" +msgstr "ismeretlen" #. module: share #: code:addons/share/wizard/share_wizard.py:61 #: code:addons/share/wizard/share_wizard.py:656 #, python-format msgid "Sharing access cannot be created." -msgstr "" +msgstr "Megosztási hozzáférést nem lehet létrehozni." #. module: share #: code:addons/share/wizard/share_wizard.py:779 #, python-format msgid "Record id not found" -msgstr "" +msgstr "Feljegyzési azonosító nem található" #. module: share #: help:res.groups,share:0 msgid "Group created to set access rights for sharing data with some users." msgstr "" +"Néhány felhasználóval megosztani kívánt adat elérési jogosultságaihoz " +"csoport létrehozva." #. module: share #: view:res.groups:0 msgid "Share Groups" -msgstr "" +msgstr "Csoportok megosztása" #. module: share #: help:share.wizard,action_id:0 msgid "" "The action that opens the screen containing the data you wish to share." -msgstr "" +msgstr "A megosztani kívánt adatokat tartalmazó képernyőt megnyitó művelet." #. module: share #: code:addons/share/wizard/share_wizard.py:545 #, python-format msgid "(Copy for sharing)" -msgstr "" +msgstr "(másolás a megosztáshoz)" #. module: share #: field:share.wizard.result.line,newly_created:0 @@ -336,17 +359,20 @@ msgstr "Újonnan létrehozott" #: help:share.wizard,name:0 msgid "Title for the share (displayed to users as menu and shortcut name)" msgstr "" +"Cím a megosztáshoz (a felhasználóknak kijelzett mint menü és rövidített név)" #. module: share #: code:addons/share/wizard/share_wizard.py:635 #, python-format msgid "Indirect sharing filter created by user %s (%s) for group %s" msgstr "" +"Közvetett megosztási szűrő ettől a felhasználótól %s (%s) erre a csoportra %s" #. module: share #: help:share.wizard,share_root_url:0 msgid "Main access page for users that are granted shared access" msgstr "" +"A megosztási hozzáférést létrehozó felhasználókhoz a fő hozzáférési oldal" #. module: share #: code:addons/share/wizard/share_wizard.py:206 @@ -355,11 +381,13 @@ msgid "" "You must configure your email address in the user preferences before using " "the Share button." msgstr "" +"Be kell állítania az email címet a felhasználó részleteinél, mielőtt a " +"Megosztás gombot használni tudná." #. module: share #: model:res.groups,name:share.group_share_user msgid "User" -msgstr "" +msgstr "Felhasználó" #. module: share #: code:addons/share/wizard/share_wizard.py:657 @@ -369,11 +397,14 @@ msgid "" "supported at the moment.\n" "You may want to try a simpler filter." msgstr "" +"Bocsánat, a megjelenített képernyő és szűrő, amit meg szeretne osztani, nem " +"támogatott jelenleg.\n" +"Megpróbálhat egy egyszerűbb szűrőt." #. module: share #: view:share.wizard:0 msgid "Use this link" -msgstr "" +msgstr "Használja ezt a linket" #. module: share #: code:addons/share/wizard/share_wizard.py:851 @@ -385,7 +416,7 @@ msgstr "Adatbázis" #. module: share #: view:share.wizard:0 msgid "Share with these People (one email per line)" -msgstr "" +msgstr "Ossza meg ezekkel az emberekkel (egy email egy sorba)" #. module: share #: field:share.wizard,domain:0 @@ -395,7 +426,7 @@ msgstr "Domain" #. module: share #: view:res.groups:0 msgid "{'search_default_no_share':1}" -msgstr "" +msgstr "{'search_default_no_share':1}" #. module: share #: view:share.wizard:0 @@ -408,28 +439,31 @@ msgstr "Összegzés" msgid "" "Embed this code in your documents to provide a link to the shared document." msgstr "" +"Beágyazza ezt a kódot a dokumentumába ahhoz, hogy a megosztott dokumentumhoz " +"egy linket adjon." #. module: share #: code:addons/share/wizard/share_wizard.py:512 #, python-format msgid "Copied access for sharing" -msgstr "" +msgstr "Átmásolt hozzáférések a megosztáshoz" #. module: share #: code:addons/share/wizard/share_wizard.py:816 #, python-format msgid "Invitation" -msgstr "" +msgstr "Meghívó" #. module: share #: model:ir.actions.act_window,name:share.action_share_wizard_step1 msgid "Share your documents" -msgstr "" +msgstr "Dokumentumainak megosztása" #. module: share #: view:share.wizard:0 msgid "Or insert the following code where you want to embed your documents" msgstr "" +"Vagy illessze be a következő kódot ahova a dokumentumait be akarja ágyazni" #. module: share #: code:addons/share/wizard/share_wizard.py:885 @@ -438,6 +472,7 @@ msgid "" "The documents have been automatically added to your current OpenERP " "documents.\n" msgstr "" +"A dokumentum automatikusan hozzá lett adva az OpenERP dokumentumokhoz.\n" #. module: share #: model:ir.model,name:share.model_share_wizard_result_line @@ -447,12 +482,13 @@ msgstr "share.wizard.result.line" #. module: share #: field:share.wizard,embed_code:0 msgid "Code" -msgstr "" +msgstr "Kód" #. module: share #: help:share.wizard,user_type:0 msgid "Select the type of user(s) you would like to share data with." msgstr "" +"Válassza ki a fálhasználó(k) típusát akikkel az adatokat megkívánja osztani." #. module: share #: code:addons/share/wizard/share_wizard.py:843 @@ -461,21 +497,23 @@ msgid "" "I have shared %s (%s) with you!\n" "\n" msgstr "" +"Én megosztottam %s (%s) veled!\n" +"\n" #. module: share #: field:share.wizard,view_type:0 msgid "Current View Type" -msgstr "" +msgstr "Aktuális nézet típus" #. module: share #: selection:share.wizard,access_mode:0 msgid "Can view" -msgstr "" +msgstr "Kanban nézet" #. module: share #: selection:share.wizard,access_mode:0 msgid "Can edit" -msgstr "" +msgstr "Kanban szerkesztés" #. module: share #: view:share.wizard:0 @@ -488,19 +526,21 @@ msgid "" "External user with limited access, created only for the purpose of sharing " "data." msgstr "" +"Külső felhasználó korlátozott hozzáféréssel, az adat megosztás céljából " +"létrehozva." #. module: share #: model:ir.actions.act_window,name:share.action_share_wizard #: model:ir.model,name:share.model_share_wizard #: field:share.wizard.result.line,share_wizard_id:0 msgid "Share Wizard" -msgstr "" +msgstr "Megosztás varázsló" #. module: share #: code:addons/share/wizard/share_wizard.py:792 #, python-format msgid "Shared access created!" -msgstr "" +msgstr "Megosztási hozzáférés létrehozva!" #. module: share #: model:res.groups,comment:share.group_share_user @@ -509,6 +549,10 @@ msgid "" "Members of this groups have access to the sharing wizard, which allows them " "to invite external users to view or edit some of their documents." msgstr "" +"\n" +"A csoport tagjai hozzáférnek a megosztó varázslóhoz, ami lehetővé teszi " +"részükre a külső felhasználók meghívását megtekintésre vagy egyes " +"dokumentumaik szerkesztésére." #. module: share #: code:addons/share/wizard/share_wizard.py:852 @@ -517,11 +561,13 @@ msgid "" "The documents have been automatically added to your subscriptions.\n" "\n" msgstr "" +"A dokumentum hozzá lett adva automatikusan a feliratkozásához.\n" +"\n" #. module: share #: model:ir.model,name:share.model_res_users msgid "Users" -msgstr "" +msgstr "Felhasználók" #. module: share #: code:addons/share/wizard/share_wizard.py:875 @@ -530,16 +576,18 @@ msgid "" "I've shared %s with you!\n" "\n" msgstr "" +"Megosztottam ezt %s veled!\n" +"\n" #. module: share #: model:ir.model,name:share.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Csoportok hozzáférése" #. module: share #: field:share.wizard,invite:0 msgid "Invite users to OpenSocial record" -msgstr "" +msgstr "Felhasználók meghívása nyitott-szociális rekordhoz" #. module: share #: code:addons/share/wizard/share_wizard.py:850 @@ -554,17 +602,17 @@ msgstr "Jelszó" #: field:share.wizard,new_users:0 #, python-format msgid "Emails" -msgstr "" +msgstr "Emailek" #. module: share #: field:share.wizard,embed_option_search:0 msgid "Display search view" -msgstr "" +msgstr "Keresési nézet megjelenítése" #. module: share #: field:share.wizard,message:0 msgid "Personal Message" -msgstr "" +msgstr "Személyes üzenet" #. module: share #: code:addons/share/wizard/share_wizard.py:834 @@ -574,44 +622,46 @@ msgid "" "The current user must have an email address configured in User Preferences " "to be able to send outgoing emails." msgstr "" +"Az aktuális felhasználónak kell legyen email címe a Felhasználó " +"részleteinél, hogy email-eket tudjon küldeni." #. module: share #: code:addons/share/wizard/share_wizard.py:205 #, python-format msgid "No email address configured" -msgstr "" +msgstr "Nincs email cím beállítva" #. module: share #: field:share.wizard.result.line,login:0 msgid "Login" -msgstr "" +msgstr "Bejelentkezés" #. module: share #: view:res.users:0 msgid "Regular users only (no share user)" -msgstr "" +msgstr "Csak szabályos felhasználó (nem megosztott felhasználó)" #. module: share #: field:share.wizard,access_mode:0 msgid "Access Mode" -msgstr "" +msgstr "Hozzáférés mód" #. module: share #: view:share.wizard:0 msgid "Sharing: preparation" -msgstr "" +msgstr "Megosztás: előkészítés" #. module: share #: model:ir.model,name:share.model_ir_model_access msgid "ir.model.access" -msgstr "" +msgstr "ir.model.access" #. module: share #: view:share.wizard:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: share #: help:share.wizard,access_mode:0 msgid "Access rights to be granted on the shared documents." -msgstr "" +msgstr "Hozzáférési jogok létrehozva a megosztott dokumentumokhoz." diff --git a/addons/share/i18n/it.po b/addons/share/i18n/it.po index ba8cb8b5807..e436e04cd40 100644 --- a/addons/share/i18n/it.po +++ b/addons/share/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ja.po b/addons/share/i18n/ja.po index 0a63428c5d5..cc4b9ce2819 100644 --- a/addons/share/i18n/ja.po +++ b/addons/share/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/mn.po b/addons/share/i18n/mn.po index f4c056a05bb..5db416db0c4 100644 --- a/addons/share/i18n/mn.po +++ b/addons/share/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/nl.po b/addons/share/i18n/nl.po index f4f9f25f5d2..1fe2f2bfc8e 100644 --- a/addons/share/i18n/nl.po +++ b/addons/share/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pl.po b/addons/share/i18n/pl.po index 5b540ed4762..6a90f318449 100644 --- a/addons/share/i18n/pl.po +++ b/addons/share/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pt.po b/addons/share/i18n/pt.po index 7ad8c6da894..c917f3e4151 100644 --- a/addons/share/i18n/pt.po +++ b/addons/share/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pt_BR.po b/addons/share/i18n/pt_BR.po index 1d23a53b0ed..c77e1558400 100644 --- a/addons/share/i18n/pt_BR.po +++ b/addons/share/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 @@ -138,7 +138,7 @@ msgstr "" #: code:addons/share/static/src/js/share.js:63 #, python-format msgid "Embed" -msgstr "" +msgstr "Embutir" #. module: share #: code:addons/share/wizard/share_wizard.py:598 diff --git a/addons/share/i18n/ro.po b/addons/share/i18n/ro.po index 72185a35930..c02e947b362 100644 --- a/addons/share/i18n/ro.po +++ b/addons/share/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ru.po b/addons/share/i18n/ru.po index 5662694a084..cc9da4e78df 100644 --- a/addons/share/i18n/ru.po +++ b/addons/share/i18n/ru.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 #, python-format msgid "Invitation to collaborate about %s" -msgstr "" +msgstr "Приглашение по сотрудничеству над %s" #. module: share #: code:addons/share/wizard/share_wizard.py:779 @@ -48,7 +48,7 @@ msgstr "Доступ предоставлен!" #. module: share #: field:share.wizard,record_name:0 msgid "Record name" -msgstr "" +msgstr "Название записи" #. module: share #: help:share.wizard,message:0 @@ -90,6 +90,8 @@ msgid "" "Hello,\n" "\n" msgstr "" +"Здравствуйте,\n" +"\n" #. module: share #: field:share.wizard,share_root_url:0 @@ -127,7 +129,7 @@ msgstr "" #: code:addons/share/static/src/js/share.js:63 #, python-format msgid "Embed" -msgstr "" +msgstr "Встроить" #. module: share #: code:addons/share/wizard/share_wizard.py:598 @@ -174,6 +176,8 @@ msgstr "(Дублирован для измененных прав совмес msgid "" "Please indicate the emails of the persons to share with, one per line." msgstr "" +"Пожалуйста укажите эл. адреса лиц для совместного доступа, по одному на " +"строку." #. module: share #: help:share.wizard,domain:0 @@ -208,17 +212,17 @@ msgstr "Параметры общего доступа" #: code:addons/share/static/src/xml/share.xml:9 #, python-format msgid "Invite" -msgstr "" +msgstr "Приглашение" #. module: share #: view:share.wizard:0 msgid "Embedded code options" -msgstr "" +msgstr "Настройка встраиваемого кода" #. module: share #: view:share.wizard:0 msgid "Configuration" -msgstr "" +msgstr "Настройка" #. module: share #: view:share.wizard:0 @@ -267,7 +271,7 @@ msgstr "" #: code:addons/share/wizard/share_wizard.py:77 #, python-format msgid "Direct link or embed code" -msgstr "" +msgstr "Прямая ссылка или встраиваемый код" #. module: share #: code:addons/share/wizard/share_wizard.py:855 @@ -291,6 +295,8 @@ msgstr "Действие совместного доступа" #: help:share.wizard,record_name:0 msgid "Name of the shared record, if sharing a precise record" msgstr "" +"Название записи для совместного доступа, если совместный доступ к конкретной " +"записи" #. module: share #: field:res.users,share:0 @@ -307,13 +313,13 @@ msgstr "неизвесно" #: code:addons/share/wizard/share_wizard.py:656 #, python-format msgid "Sharing access cannot be created." -msgstr "" +msgstr "Совместный доступ не возможен." #. module: share #: code:addons/share/wizard/share_wizard.py:779 #, python-format msgid "Record id not found" -msgstr "" +msgstr "Идентификатор записи не найден" #. module: share #: help:res.groups,share:0 @@ -325,7 +331,7 @@ msgstr "" #. module: share #: view:res.groups:0 msgid "Share Groups" -msgstr "" +msgstr "Группы совместного доступа" #. module: share #: help:share.wizard,action_id:0 @@ -420,7 +426,7 @@ msgstr "Ограничение" #. module: share #: view:res.groups:0 msgid "{'search_default_no_share':1}" -msgstr "" +msgstr "{'search_default_no_share':1}" #. module: share #: view:share.wizard:0 @@ -432,7 +438,7 @@ msgstr "Содержание" #: help:share.wizard,embed_code:0 msgid "" "Embed this code in your documents to provide a link to the shared document." -msgstr "" +msgstr "Вставьте код в ваши документы для совместного доступа к ним." #. module: share #: code:addons/share/wizard/share_wizard.py:512 @@ -444,7 +450,7 @@ msgstr "Скопированы права совместного доступа" #: code:addons/share/wizard/share_wizard.py:816 #, python-format msgid "Invitation" -msgstr "" +msgstr "Приглашение" #. module: share #: model:ir.actions.act_window,name:share.action_share_wizard_step1 @@ -474,7 +480,7 @@ msgstr "share.wizard.result.line" #. module: share #: field:share.wizard,embed_code:0 msgid "Code" -msgstr "" +msgstr "Код" #. module: share #: help:share.wizard,user_type:0 @@ -490,6 +496,8 @@ msgid "" "I have shared %s (%s) with you!\n" "\n" msgstr "" +"Я предоставил вам совместный доступ к %s (%s)!\n" +"\n" #. module: share #: field:share.wizard,view_type:0 @@ -552,11 +560,13 @@ msgid "" "The documents have been automatically added to your subscriptions.\n" "\n" msgstr "" +"Документы были автоматически добавлены в ваши подписки.\n" +"\n" #. module: share #: model:ir.model,name:share.model_res_users msgid "Users" -msgstr "" +msgstr "Пользователи" #. module: share #: code:addons/share/wizard/share_wizard.py:875 @@ -565,6 +575,8 @@ msgid "" "I've shared %s with you!\n" "\n" msgstr "" +"Я предоставил вам совместный доступ к %s!\n" +"\n" #. module: share #: model:ir.model,name:share.model_res_groups @@ -646,7 +658,7 @@ msgstr "ir.model.access" #. module: share #: view:share.wizard:0 msgid "or" -msgstr "" +msgstr "или" #. module: share #: help:share.wizard,access_mode:0 diff --git a/addons/share/i18n/sv.po b/addons/share/i18n/sv.po index e8c71e6c8e1..0673ab0e960 100644 --- a/addons/share/i18n/sv.po +++ b/addons/share/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/tr.po b/addons/share/i18n/tr.po index b751ce4f62d..fa0cddb0ab5 100644 --- a/addons/share/i18n/tr.po +++ b/addons/share/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:33+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/zh_CN.po b/addons/share/i18n/zh_CN.po index 90c8a7dabf0..a8887500f43 100644 --- a/addons/share/i18n/zh_CN.po +++ b/addons/share/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/stock/i18n/ar.po b/addons/stock/i18n/ar.po index 8c6e8dc33e6..4993a12b9b7 100644 --- a/addons/stock/i18n/ar.po +++ b/addons/stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bg.po b/addons/stock/i18n/bg.po index 424269ec840..3fdb2caf159 100644 --- a/addons/stock/i18n/bg.po +++ b/addons/stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index 5b74fa98152..b0cb22ca8ab 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ca.po b/addons/stock/i18n/ca.po index 75583b7b9dd..c7fcf36560c 100644 --- a/addons/stock/i18n/ca.po +++ b/addons/stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/cs.po b/addons/stock/i18n/cs.po index 230fbfd567e..efa21bdaf6a 100644 --- a/addons/stock/i18n/cs.po +++ b/addons/stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/da.po b/addons/stock/i18n/da.po index 52c913411b3..4a77e2d5250 100644 --- a/addons/stock/i18n/da.po +++ b/addons/stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index 2e2182af8a7..952c357389f 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:06+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/el.po b/addons/stock/i18n/el.po index f7034b16778..55649d44074 100644 --- a/addons/stock/i18n/el.po +++ b/addons/stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index b0a35145247..af79af7eded 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -93,7 +93,7 @@ msgstr "Trazabilidad hacia arriba" #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "" +msgstr "Fecha de transferencia" #. module: stock #: field:product.product,track_outgoing:0 @@ -1188,6 +1188,7 @@ msgstr "Revertir transferencia" #: field:stock.config.settings,group_uos:0 msgid "Invoice products in a different unit of measure than the sales order" msgstr "" +"Facturar productos en una unidad de medida diferente a la del pedido de venta" #. module: stock #: help:stock.location,active:0 @@ -2976,7 +2977,7 @@ msgstr "" #. module: stock #: report:stock.inventory.move:0 msgid "Manual Quantity" -msgstr "" +msgstr "Cantidad manual" #. module: stock #: view:product.product:0 @@ -3064,7 +3065,7 @@ msgstr "Diario de inventario" #: code:addons/stock/wizard/stock_return_picking.py:171 #, python-format msgid "%s-%s-return" -msgstr "" +msgstr "%s-%s-devolver" #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:82 @@ -3533,7 +3534,7 @@ msgstr "No urgente" #. module: stock #: view:stock.move:0 msgid "Scheduled" -msgstr "" +msgstr "Planificado" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -4326,7 +4327,7 @@ msgstr "Categoría de producto" #. module: stock #: view:stock.move:0 msgid "Serial Number" -msgstr "" +msgstr "Nº de serie" #. module: stock #: view:stock.invoice.onshipping:0 @@ -4651,7 +4652,7 @@ msgstr "¿Desea fusionar estos inventarios?" #. module: stock #: view:stock.picking.out:0 msgid "Date of Delivery" -msgstr "" +msgstr "Fecha de entrega" #. module: stock #: field:stock.location,posy:0 @@ -5077,7 +5078,7 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Date of Reception" -msgstr "" +msgstr "Fecha de recepción" #. module: stock #: help:stock.config.settings,group_stock_multiple_locations:0 diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index 96a70575825..e756056c2c0 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CL.po b/addons/stock/i18n/es_CL.po index 6808b56ece6..4eee2aa87a4 100644 --- a/addons/stock/i18n/es_CL.po +++ b/addons/stock/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CR.po b/addons/stock/i18n/es_CR.po index 5c6d8d7cbed..5d9df85eab9 100644 --- a/addons/stock/i18n/es_CR.po +++ b/addons/stock/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_DO.po b/addons/stock/i18n/es_DO.po index 646b6874239..c10c9aab8ea 100644 --- a/addons/stock/i18n/es_DO.po +++ b/addons/stock/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_EC.po b/addons/stock/i18n/es_EC.po index 78a114b7d0d..3b072d2f725 100644 --- a/addons/stock/i18n/es_EC.po +++ b/addons/stock/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index 9f2234d5ff0..5b6d0d56f1c 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_VE.po b/addons/stock/i18n/es_VE.po index 096a7d81452..ce729afd971 100644 --- a/addons/stock/i18n/es_VE.po +++ b/addons/stock/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index 86f974d4c02..bda87875561 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-07 05:45+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index 43d7f549f28..8460446355b 100644 --- a/addons/stock/i18n/fi.po +++ b/addons/stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index 227b8c70b72..f2c6a649f9b 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/gl.po b/addons/stock/i18n/gl.po index 94eb5c026a2..8a16fc7f6c3 100644 --- a/addons/stock/i18n/gl.po +++ b/addons/stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hr.po b/addons/stock/i18n/hr.po index b0ad1c0c6a7..e7f9ac00ef9 100644 --- a/addons/stock/i18n/hr.po +++ b/addons/stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -24,7 +24,7 @@ msgstr "" #: field:stock.move.split,line_exist_ids:0 #: field:stock.move.split,line_ids:0 msgid "Serial Numbers" -msgstr "" +msgstr "Serijski brojevi" #. module: stock #: help:stock.config.settings,group_product_variant:0 diff --git a/addons/stock/i18n/hu.po b/addons/stock/i18n/hu.po index 9be5dfa2859..6d79d089561 100644 --- a/addons/stock/i18n/hu.po +++ b/addons/stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:06+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -1025,8 +1025,8 @@ msgid "" "You cannot cancel the picking as some moves have been done. You should " "cancel the picking lines." msgstr "" -"Nem tudja a kiválogatást érvényteleníteni, mivel egyes mozgások már " -"megtörténtek. A kiválogatás sorait érvénytelenítheti." +"Nem tudja a kiválogatást megszakítani, mivel egyes mozgások már " +"megtörténtek. A kiválogatás sorait kell megszakítani." #. module: stock #: field:stock.config.settings,decimal_precision:0 @@ -1153,7 +1153,7 @@ msgstr "Készen áll a befogadásra" #: view:stock.move:0 #: view:stock.picking:0 msgid "_Cancel" -msgstr "_Mégsem" +msgstr "Megszakítás" #. module: stock #: field:report.stock.move,day_diff:0 @@ -1377,8 +1377,8 @@ msgid "" "In order to cancel this inventory, you must first unpost related journal " "entries." msgstr "" -"Ahhoz, hogy visszavonja ezt a készletet, először az idevonatkozó napló " -"belyegyzéseket kell kiiktatnia." +"Ahhoz, hogy megszakítsa ezt a készletet, először az idevonatkozó napló " +"bejegyzéseket kell megszakítania." #. module: stock #: code:addons/stock/product.py:113 @@ -1891,7 +1891,7 @@ msgstr "Kérem határozzon meg pozitív számot a hulladékra" #. module: stock #: model:stock.location,name:stock.stock_location_shop1 msgid "Your Company, Birmingham shop" -msgstr "" +msgstr "Vállakozása, Birmingham eladótér" #. module: stock #: view:product.product:0 @@ -1998,7 +1998,7 @@ msgstr "Termék kategóriák" #. module: stock #: view:stock.move:0 msgid "Cancel Availability" -msgstr "Hozzáférés törlése" +msgstr "Hozzáférés megszakítása" #. module: stock #: code:addons/stock/wizard/stock_location_product.py:49 @@ -2284,7 +2284,7 @@ msgstr "" #: view:stock.return.picking:0 #: view:stock.split.into:0 msgid "Cancel" -msgstr "Mégsem" +msgstr "Megszakítás" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking @@ -2608,6 +2608,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson készlet mozgatáshoz.\n" +"

\n" +" Ez a menü konkrét termékre vonatkozó készlet műveletekre\n" +" teljes nyomon követhetőséget biztosít. Szűrést végezhet \n" +" a termékre a termelést megelőző vagy jövőbeni mozgásra.\n" +"

\n" +" " #. module: stock #: view:stock.location:0 @@ -2639,7 +2647,7 @@ msgstr "Több termékhely és raktérépület kezelés" #. module: stock #: field:stock.config.settings,group_stock_production_lot:0 msgid "Track serial number on products" -msgstr "" +msgstr "A termékek szériaszám nyomonkövetése" #. module: stock #: field:stock.picking,message_unread:0 @@ -2943,12 +2951,12 @@ msgstr "Kiszedési lista" #. module: stock #: view:stock.inventory:0 msgid "Cancel Inventory" -msgstr "Leltár törlése" +msgstr "Készlet megszakítása" #. module: stock #: field:stock.config.settings,group_product_variant:0 msgid "Support multiple variants per products " -msgstr "" +msgstr "Egy terméken több variáció támogatása " #. module: stock #: code:addons/stock/stock.py:2246 @@ -3776,7 +3784,7 @@ msgstr "Termékek telephely szerint" #. module: stock #: view:stock.config.settings:0 msgid "Logistic" -msgstr "" +msgstr "Logisztika" #. module: stock #: model:ir.actions.act_window,help:stock.action_location_form @@ -4172,7 +4180,7 @@ msgstr "" #: selection:stock.picking.in,state:0 #: selection:stock.picking.out,state:0 msgid "Cancelled" -msgstr "Törölt" +msgstr "Megszakított" #. module: stock #: view:stock.picking:0 @@ -4886,6 +4894,8 @@ msgid "" "If this shipment was split, then this field links to the shipment which " "contains the already processed part." msgstr "" +"Ha ez a szállítmány részekre bontott, akkor ez a mező átvisz a már elvégzett " +"szállítási műveletek részleteihez." #. module: stock #: view:stock.inventory:0 @@ -5180,6 +5190,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson kiszállítási kiszolgáltatási jegy készítéséhez. \n" +"

\n" +" Ez az összes a különböző vevői megrendelések és logisztikai\n" +" szabályok szerint elkészített kiszállítási kiszolgáltatási " +"jegyek listája.\n" +"

\n" +" " #. module: stock #: help:stock.tracking,name:0 @@ -5187,6 +5205,8 @@ msgid "" "By default, the pack reference is generated following the sscc standard. " "(Serial number + 1 check digit)" msgstr "" +"Alapértelmezésben, a csomag referencia az SSCC szabványt követve lesz " +"létrehozva. (széria szám + 1 ellenörző szám)" #. module: stock #: model:ir.model,name:stock.model_stock_inventory @@ -5204,6 +5224,9 @@ msgid "" "empty to automatically detect the type based on the source and destination " "locations)." msgstr "" +"A kiválogatási listán a szállítás típusa tartalmazni fogja a láncolt mozgást " +"(hagyja üresen a típus automatikus érzékelését a forrás és a végcél " +"termékhelyei alapján)." #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:192 @@ -5213,16 +5236,19 @@ msgid "" "would let a quantity of \"%s %s\" to ship and only roundings of \"%s %s\" is " "accepted by the uom." msgstr "" +"A kezdeti mértékegység kerekítése nem teszi lehetővé a \"%s %s\" szállítást, " +"mivel ezzel lehetővé tenné a \"%s %s\" mennyiség szállítását de a \"%s %s\" " +"kerekítését engedélyezi a mértékegység." #. module: stock #: help:stock.move,move_dest_id:0 msgid "Optional: next stock move when chaining them" -msgstr "" +msgstr "Lehetőség: következő raktár művelet ha láncolva lesznek" #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "" +msgstr "Szállító levél nyomtatása" #. module: stock #: view:report.stock.inventory:0 @@ -5240,9 +5266,9 @@ msgstr "Fizikai helyek" #. module: stock #: view:stock.picking.in:0 msgid "Ready to Process" -msgstr "" +msgstr "Feldolgozásra kész" #. module: stock #: report:stock.picking.list:0 msgid "Warehouse Address :" -msgstr "" +msgstr "Rektárépület címe:" diff --git a/addons/stock/i18n/id.po b/addons/stock/i18n/id.po index 92d0eb027a4..b0a9457e7d7 100644 --- a/addons/stock/i18n/id.po +++ b/addons/stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index 84e84cd3393..be605eb13de 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-10 05:36+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index 1190939e8a7..b30cb634713 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index f8b99c2a4f1..146b5c6a9b9 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lt.po b/addons/stock/i18n/lt.po index 685caa341df..89ebe4df7db 100644 --- a/addons/stock/i18n/lt.po +++ b/addons/stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po index e463408522f..7fefc232f9c 100644 --- a/addons/stock/i18n/lv.po +++ b/addons/stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -3861,7 +3861,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree #: view:stock.picking.out:0 msgid "Delivery Orders" -msgstr "Piegādes Pasūtījumi" +msgstr "Preču Piegādes" #. module: stock #: view:stock.picking:0 diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index 6b1e66c6585..5405f9ba553 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/mn.po b/addons/stock/i18n/mn.po index e0b61381513..e4298b125a8 100644 --- a/addons/stock/i18n/mn.po +++ b/addons/stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nb.po b/addons/stock/i18n/nb.po index 36c6b0e126c..a3b338e9b6d 100644 --- a/addons/stock/i18n/nb.po +++ b/addons/stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl.po b/addons/stock/i18n/nl.po index 3e97eb928f2..75f5ff22ff1 100644 --- a/addons/stock/i18n/nl.po +++ b/addons/stock/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 78ff8e3952c..aec311bff71 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index 7726a81bbe6..b12265c3eac 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -90,7 +90,7 @@ msgstr "Śledzenie wstecz" #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "" +msgstr "Data przesunięcia" #. module: stock #: field:product.product,track_outgoing:0 @@ -959,7 +959,7 @@ msgstr "Produkty uszkodzone" #. module: stock #: view:product.product:0 msgid "- update" -msgstr "" +msgstr "- aktualizacja" #. module: stock #: report:stock.picking.list:0 @@ -1173,7 +1173,7 @@ msgstr "Pobranie odwrotne" #. module: stock #: field:stock.config.settings,group_uos:0 msgid "Invoice products in a different unit of measure than the sales order" -msgstr "" +msgstr "Fakturuj produkty w innej jednostce miary niż w zamówieniu sprzedaży" #. module: stock #: help:stock.location,active:0 @@ -2064,6 +2064,20 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"\n" +" * Projekt: Jeszcze nie potwierdzone i nie zaplanowane\n" +"\n" +" * Oczekiwanie na inną operację: Po wykonaniu innej operacji " +"będzie dostępne automatycznie (zwykle przy pobraniach Na zamówienie)\n" +"\n" +" * Oczekiwanie na dostępność: oczekuje na uzupełnienie zapasów\n" +"\n" +" * Gotowe do pobrania: produkty są zarezerwowane, oczekiwanie na " +"zatwierdzenie.\n" +"\n" +" * Pobrane: zostało wykonane, nie można modyfikować lub anulować\n" +"\n" +" * Anulowano: nie może być potwierdzone" #. module: stock #: view:report.stock.inventory:0 @@ -2128,6 +2142,19 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"* Projekt: Jeszcze nie potwierdzone i nie zaplanowane\n" +"\n" +"* Oczekiwanie na inną operację: Po wykonaniu innej operacji będzie dostępne " +"automatycznie (zwykle przy pobraniach Na zamówienie)\n" +"\n" +"* Oczekiwanie na dostępność: oczekuje na uzupełnienie zapasów\n" +"\n" +"* Gotowe do pobrania: produkty są zarezerwowane, oczekiwanie na " +"zatwierdzenie.\n" +"\n" +"* Pobrane: zostało wykonane, nie można modyfikować lub anulować\n" +"\n" +"* Anulowano: nie może być potwierdzone" #. module: stock #: field:stock.incoterms,code:0 @@ -2143,7 +2170,7 @@ msgstr "Numer partii" #: model:ir.actions.act_window,name:stock.action_deliver_move #: view:product.product:0 msgid "Deliveries" -msgstr "" +msgstr "Dostawy" #. module: stock #: model:ir.actions.act_window,help:stock.action_reception_picking_move @@ -2889,7 +2916,7 @@ msgstr "" #. module: stock #: report:stock.inventory.move:0 msgid "Manual Quantity" -msgstr "" +msgstr "Ręczna ilość" #. module: stock #: view:product.product:0 @@ -2969,7 +2996,7 @@ msgstr "Dziennik magazynowy" #: code:addons/stock/wizard/stock_return_picking.py:171 #, python-format msgid "%s-%s-return" -msgstr "" +msgstr "%s-%s-zwrot" #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:82 @@ -2998,6 +3025,8 @@ msgstr "Przesunięcie odpadu" #: help:stock.move,prodlot_id:0 msgid "Serial number is used to put a serial number on the production" msgstr "" +"Numer seryjny jest stosowany do identyfikacji konkretnego egzemplarza " +"produktu" #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:100 @@ -3422,7 +3451,7 @@ msgstr "Nie pilne" #. module: stock #: view:stock.move:0 msgid "Scheduled" -msgstr "" +msgstr "Zaplanowane" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -4196,7 +4225,7 @@ msgstr "Kategoria Produktu" #. module: stock #: view:stock.move:0 msgid "Serial Number" -msgstr "" +msgstr "Numer seryjny" #. module: stock #: view:stock.invoice.onshipping:0 @@ -4510,7 +4539,7 @@ msgstr "Chcesz połączyć te inwentaryzacje ?" #. module: stock #: view:stock.picking.out:0 msgid "Date of Delivery" -msgstr "" +msgstr "Data pobrania" #. module: stock #: field:stock.location,posy:0 @@ -4910,7 +4939,7 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Date of Reception" -msgstr "" +msgstr "Data pobrania" #. module: stock #: help:stock.config.settings,group_stock_multiple_locations:0 diff --git a/addons/stock/i18n/pt.po b/addons/stock/i18n/pt.po index ad65c6a15b3..4b8e802e6be 100644 --- a/addons/stock/i18n/pt.po +++ b/addons/stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index b2d6fd1829c..216db94e34b 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -33,6 +33,9 @@ msgid "" "Shirts, for the same \"Linux T-Shirt\", you may have variants on sizes or " "colors; S, M, L, XL, XXL." msgstr "" +"Permite gerenciar diversas variantes por produto. Por exemplo, se você vende " +"Camisetas, para a mesma 'Camiseta' você pode ter variantes como tamanho ou " +"cores; P,M, G, GG" #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines @@ -89,7 +92,7 @@ msgstr "Rastreabilidade Posterior" #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "" +msgstr "Data da Transferência" #. module: stock #: field:product.product,track_outgoing:0 @@ -257,7 +260,7 @@ msgstr "Ordens de Entrega Atribuídas" #: code:addons/stock/wizard/stock_change_standard_price.py:107 #, python-format msgid "Active ID is not set in Context." -msgstr "" +msgstr "O ID Ativo não está definido no contexto." #. module: stock #: selection:stock.picking,invoice_state:0 @@ -271,7 +274,7 @@ msgstr "Não Aplicável" #: help:stock.picking.in,message_unread:0 #: help:stock.picking.out,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: stock #: help:stock.tracking,serial:0 @@ -301,7 +304,7 @@ msgstr "Sem Fat" #: view:stock.tracking:0 #, python-format msgid "Downstream Traceability" -msgstr "Rastreabilidade de Abastecimento" +msgstr "Rastreabilidade anterior" #. module: stock #: view:stock.move:0 @@ -330,13 +333,13 @@ msgid "" "If checked, all product quantities will be set to zero to help ensure a real " "physical inventory is done" msgstr "" -"Se estiver assinalada, todas as quantidades de produtos serão fixados em " -"zero para ajudar a garantir um inventário físico real" +"Se estiver marcada, todas as quantidades de produtos serão fixados em zero " +"para ajudar a garantir um inventário físico real" #. module: stock #: view:product.product:0 msgid "Forecasted:" -msgstr "" +msgstr "Prevista:" #. module: stock #: view:stock.partial.move:0 @@ -351,6 +354,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: stock #: code:addons/stock/stock.py:768 @@ -383,7 +389,7 @@ msgstr "Agrupar por Parceiro" #: help:stock.picking.in,move_type:0 #: help:stock.picking.out,move_type:0 msgid "It specifies goods to be deliver partially or all at once" -msgstr "" +msgstr "Especifica mercadorias para entregar parcialmente ou tudo de uma vez" #. module: stock #: model:ir.model,name:stock.model_res_partner @@ -401,7 +407,7 @@ msgstr "Parceiro" #. module: stock #: field:stock.config.settings,module_claim_from_delivery:0 msgid "Allow claim on deliveries" -msgstr "" +msgstr "Permite solicitações nas entregas" #. module: stock #: selection:stock.return.picking,invoice_state:0 @@ -417,12 +423,12 @@ msgstr "Movimentação de Estoque que foram processadas" #: field:stock.inventory.line.split,use_exist:0 #: field:stock.move.split,use_exist:0 msgid "Existing Serial Numbers" -msgstr "" +msgstr "Números de Série existentes" #. module: stock #: model:res.groups,name:stock.group_inventory_valuation msgid "Manage Inventory valuation" -msgstr "" +msgstr "Gerenciar Valorização do Estoque" #. module: stock #: model:stock.location,name:stock.stock_location_suppliers @@ -453,7 +459,7 @@ msgstr "Localização Interna" #. module: stock #: view:stock.move:0 msgid "Split in Serial Number" -msgstr "" +msgstr "Dividir em Números de Série" #. module: stock #: view:stock.location:0 @@ -473,7 +479,7 @@ msgstr "Atraso (Dias)" #. module: stock #: selection:stock.picking.out,state:0 msgid "Ready to Deliver" -msgstr "" +msgstr "Pronto para Entregar" #. module: stock #: model:ir.model,name:stock.model_action_traceability @@ -511,7 +517,7 @@ msgstr "Qtde Ent" #. module: stock #: model:ir.actions.client,name:stock.action_client_warehouse_menu msgid "Open Warehouse Menu" -msgstr "" +msgstr "Abrir o Menu do Armazém" #. module: stock #: field:stock.warehouse,lot_output_id:0 @@ -527,7 +533,7 @@ msgstr "Dividido em" #. module: stock #: field:stock.config.settings,module_product_expiry:0 msgid "Expiry date on serial numbers" -msgstr "" +msgstr "Data de Expiração nos Números de Série" #. module: stock #: field:stock.move,price_currency_id:0 @@ -537,7 +543,7 @@ msgstr "Moeda para preço médio" #. module: stock #: view:product.product:0 msgid "Stock and Expected Variations" -msgstr "" +msgstr "Estoque e Variações esperadas" #. module: stock #: help:product.category,property_stock_valuation_account_id:0 @@ -551,7 +557,7 @@ msgstr "" #. module: stock #: field:stock.config.settings,group_stock_tracking_lot:0 msgid "Track serial number on logistic units (pallets)" -msgstr "" +msgstr "Rastrear números de série em unidades logísticas (pallets)" #. module: stock #: help:product.template,sale_delay:0 @@ -560,6 +566,8 @@ msgid "" "the delivery of the finished products. It's the time you promise to your " "customers." msgstr "" +"O prazo médio em dias entre a confirmação da ordem do cliente e a entrega " +"dos produtos acabados. É o tempo que você promete a seus clientes." #. module: stock #: code:addons/stock/product.py:196 @@ -585,6 +593,9 @@ msgid "" "Quantities, Units of Measure, Products and Locations cannot be modified on " "stock moves that have already been processed (except by the Administrator)." msgstr "" +"Quantidades, unidades de medida, produtos e locais não podem ser modificados " +"em movimentos de estoque que já foram processados ​​(exceto pelo " +"Administrador)." #. module: stock #: help:report.stock.move,type:0 @@ -608,6 +619,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma solicitação de movimentação interna. \n" +"

\n" +"A maioria das operações são preparadas automaticamente pelo OpenERP de " +"acordo\n" +"                 com as regras pré-configuradas de logística, mas você " +"também pode gravar\n" +"                 movimentos de estoque manuais.\n" +"

\n" +" " #. module: stock #: model:ir.actions.report.xml,name:stock.report_move_labels @@ -618,7 +639,7 @@ msgstr "Etiquetas de Itens" #: code:addons/stock/stock.py:1356 #, python-format msgid "Back order %s has been created." -msgstr "" +msgstr "Back order %s foi criada." #. module: stock #: model:ir.model,name:stock.model_report_stock_move @@ -630,11 +651,13 @@ msgstr "Estatísticas de Movimentação" msgid "" "Allows you to select and maintain different units of measure for products." msgstr "" +"Permite a você escolher e manter diferentes unidades de medidas para os " +"produtos." #. module: stock #: model:ir.model,name:stock.model_stock_report_tracklots msgid "Stock report by logistic serial number" -msgstr "" +msgstr "Relatório do Estoque por número de série logístico" #. module: stock #: help:product.product,track_outgoing:0 @@ -642,11 +665,13 @@ msgid "" "Forces to specify a Serial Number for all moves containing this product and " "going to a Customer Location" msgstr "" +"Forçar a especificação do número de série para todos os movimentos que " +"contenham este produto e vão para um local do Cliente" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_products_moves msgid "Receive/Deliver Products" -msgstr "" +msgstr "Receber/Entregar Produtos" #. module: stock #: field:stock.move,move_history_ids:0 @@ -689,6 +714,8 @@ msgstr "" msgid "" "Serial number quantity %d of %s is larger than available quantity (%d)!" msgstr "" +"A quantidade do Número de Série %d de %s é maior do que a quantidade " +"disponível (%d)!" #. module: stock #: report:stock.picking.list:0 @@ -698,7 +725,7 @@ msgstr "Pedido (Origem)" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_uom_categ_form_action msgid "Unit of Measure Categories" -msgstr "" +msgstr "Categorias de Unidade de Medida" #. module: stock #: report:lot.stock.overview:0 @@ -743,7 +770,7 @@ msgstr "Referência Adicional" #. module: stock #: view:stock.partial.picking.line:0 msgid "Stock Picking Line" -msgstr "" +msgstr "Linha de Separação de Estoque" #. module: stock #: field:stock.location,complete_name:0 @@ -783,7 +810,7 @@ msgstr "Ano Planejado" #: report:stock.picking.list:0 #: field:stock.picking.out,state:0 msgid "Status" -msgstr "Status" +msgstr "Situação" #. module: stock #: model:stock.location,name:stock.stock_location_customers @@ -807,12 +834,12 @@ msgstr "Embalagens" #. module: stock #: selection:stock.location.product,type:0 msgid "Analyse Current Inventory" -msgstr "" +msgstr "Analise o Inventário Atual" #. module: stock #: view:stock.move:0 msgid "To Do" -msgstr "A Ser Feito" +msgstr "A Fazer" #. module: stock #: selection:report.stock.inventory,month:0 @@ -826,6 +853,8 @@ msgid "" "Forces to specify a Serial Number for all moves containing this product and " "coming from a Supplier Location" msgstr "" +"Força a especificação de um Número de Série para todos os movimentos que " +"contém este produto e vai para um local de Fornecedor." #. module: stock #: help:stock.config.settings,group_uos:0 @@ -835,11 +864,15 @@ msgid "" " For instance, you can sell pieces of meat that you invoice " "based on their weight." msgstr "" +"Permite a você vender unidades de um produto, mas faturar com base em outra " +"unidade de medida.\n" +"                 Por exemplo, você pode vender pedaços de carne que você " +"fatura com base em seu peso." #. module: stock #: field:product.template,property_stock_procurement:0 msgid "Procurement Location" -msgstr "Localização da Aquisição" +msgstr "Local da Aquisição" #. module: stock #: model:ir.actions.act_window,name:stock.action_location_tree @@ -874,18 +907,20 @@ msgid "" "Please define stock output account for this product or its category: \"%s\" " "(id: %d)" msgstr "" +"Por favor defina a conta de saída de estoque para este produto ou categoria: " +"\"%s\" (id: %d)" #. module: stock #: field:stock.picking,message_summary:0 #: field:stock.picking.in,message_summary:0 #: field:stock.picking.out,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: stock #: view:product.category:0 msgid "Account Stock Properties" -msgstr "" +msgstr "Propriedades da Conta de Estoque" #. module: stock #: sql_constraint:stock.picking:0 @@ -899,7 +934,7 @@ msgstr "A referência deve ser única por empresa!" #: field:stock.picking.in,date:0 #: field:stock.picking.out,date:0 msgid "Time" -msgstr "" +msgstr "Tempo" #. module: stock #: code:addons/stock/product.py:447 @@ -915,7 +950,7 @@ msgstr "Urgente" #. module: stock #: selection:stock.picking.out,state:0 msgid "Delivered" -msgstr "" +msgstr "Entregue" #. module: stock #: field:stock.move,move_dest_id:0 @@ -937,7 +972,7 @@ msgstr "Produtos Sucata" #. module: stock #: view:product.product:0 msgid "- update" -msgstr "" +msgstr "- atualizar" #. module: stock #: report:stock.picking.list:0 @@ -956,6 +991,8 @@ msgid "" "This field is for internal purpose. It is used to decide if the column " "production lot has to be shown on the moves or not." msgstr "" +"Este campo é para uso interno. Ele é usado para decidir se a coluna lote de " +"produção será mostrada nos movimentos ou não." #. module: stock #: selection:product.product,valuation:0 @@ -975,7 +1012,7 @@ msgstr "Fornecedores de TI" #. module: stock #: view:stock.config.settings:0 msgid "Location & Warehouse" -msgstr "" +msgstr "Local & Armazém" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -990,11 +1027,13 @@ msgid "" "You cannot cancel the picking as some moves have been done. You should " "cancel the picking lines." msgstr "" +"Você não pode cancelar a separação já que alguns movimentos já foram feitos. " +"Você deve cancelar as linhas de separação." #. module: stock #: field:stock.config.settings,decimal_precision:0 msgid "Decimal precision on weight" -msgstr "" +msgstr "Precisão decimal no peso" #. module: stock #: view:stock.production.lot:0 @@ -1034,23 +1073,23 @@ msgstr "Localização do Inventário" #. module: stock #: constraint:stock.move:0 msgid "You must assign a serial number for this product." -msgstr "" +msgstr "Você precisa definir um número de série para este produto." #. module: stock #: code:addons/stock/stock.py:2255 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)" -msgstr "" +msgstr "Por favor defina o diário, na categoria do produto: \"%s\" (id: %d)" #. module: stock #: view:stock.move:0 msgid "Details" -msgstr "" +msgstr "Detalhes" #. module: stock #: selection:stock.picking,state:0 msgid "Ready to Transfer" -msgstr "" +msgstr "Pronto para ser Transferido" #. module: stock #: report:lot.stock.overview:0 @@ -1090,7 +1129,7 @@ msgstr "Diário" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_invoice_onshipping msgid "Create Draft Invoices" -msgstr "" +msgstr "Criar Faturas Provisórias" #. module: stock #: help:stock.picking,location_id:0 @@ -1101,14 +1140,14 @@ msgid "" "needed.Set a location if you produce at a fixed location. This can be a " "partner location if you subcontract the manufacturing operations." msgstr "" -"Mantenha vazio se você produzir no local onde são necessários produtos " -"acabados. Defina um local se você produz em um local fixo. Isto pode ser um " -"local de parceiro se você tem operações de subcontratação." +"Mantenha vazio se você produzir no local onde os produtos acabados são " +"necessários. Defina um local se você produz em um local fixo. Isto pode ser " +"um local de parceiro se você tem operações de subcontratação." #. module: stock #: selection:stock.picking.in,state:0 msgid "Ready to Receive" -msgstr "" +msgstr "Pronto para receber" #. module: stock #: view:stock.move:0 @@ -1134,22 +1173,23 @@ msgstr "Estoque por Local" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_warehouse_mgmt msgid "Receive/Deliver By Orders" -msgstr "" +msgstr "Recebimento/Entrega por Ordens" #. module: stock #: view:stock.production.lot:0 msgid "Product Lots" -msgstr "" +msgstr "Lotes do Produto" #. module: stock #: view:stock.picking:0 msgid "Reverse Transfer" -msgstr "" +msgstr "Transferência Reversa" #. module: stock #: field:stock.config.settings,group_uos:0 msgid "Invoice products in a different unit of measure than the sales order" msgstr "" +"Faturar produtos em uma unidade de medida diferente do que o pedido de vendas" #. module: stock #: help:stock.location,active:0 @@ -1172,12 +1212,14 @@ msgid "" "No products to return (only lines in Done state and not fully returned yet " "can be returned)!" msgstr "" +"Nenhum produto a retornar (somente linhas Concluídas e que não foram " +"integralmente devolvidas podem ser retornadas)!" #. module: stock #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Back Orders" -msgstr "Devoluções" +msgstr "Back Orders" #. module: stock #: field:stock.location,stock_virtual:0 @@ -1203,12 +1245,12 @@ msgstr "Conta de Valorização do Estoque" #. module: stock #: view:stock.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Aplicar" #. module: stock #: field:product.template,loc_row:0 msgid "Row" -msgstr "" +msgstr "Linha" #. module: stock #: field:product.template,property_stock_production:0 @@ -1219,7 +1261,7 @@ msgstr "Local de Produção" #: code:addons/stock/product.py:121 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)." -msgstr "" +msgstr "Por favor defina o diário na categoria de produto: \"%s\" (id: %d)." #. module: stock #: field:report.stock.lines.date,date:0 @@ -1294,16 +1336,18 @@ msgstr "Autor" msgid "" "You are moving %.2f %s but only %.2f %s available for this serial number." msgstr "" +"Você está movimentando %.2f %s mas só existe %.2f %s disponível para este " +"número de série." #. module: stock #: report:stock.picking.list:0 msgid "Internal Shipment :" -msgstr "" +msgstr "Entrega Interna:" #. module: stock #: view:stock.inventory.line:0 msgid "Split Inventory Line" -msgstr "" +msgstr "Dividir linha do inventário" #. module: stock #: selection:stock.location,chained_auto_packing:0 @@ -1314,7 +1358,7 @@ msgstr "Operação Manual" #: view:report.stock.move:0 #: field:report.stock.move,picking_id:0 msgid "Shipment" -msgstr "" +msgstr "Remessa" #. module: stock #: view:stock.location:0 @@ -1337,7 +1381,7 @@ msgstr "" #: code:addons/stock/product.py:113 #, python-format msgid "Please specify company in Location." -msgstr "" +msgstr "Por favor especifique a empresa em Local." #. module: stock #: view:stock.move:0 @@ -1350,6 +1394,8 @@ msgid "" "Allows you to create and manage your packaging dimensions and types you want " "to be maintained in your system." msgstr "" +"Permite criar e gerenciar dimensões e tipos de embalagens que você quer ser " +"manter em seu sistema." #. module: stock #: selection:report.stock.inventory,month:0 @@ -1374,7 +1420,7 @@ msgstr "Inventário Físico" #: code:addons/stock/wizard/stock_move.py:214 #, python-format msgid "Processing Error!" -msgstr "" +msgstr "Erro de Processamento!" #. module: stock #: help:stock.location,chained_company_id:0 @@ -1397,6 +1443,14 @@ msgid "" "* Available: When products are reserved, it is set to 'Available'.\n" "* Done: When the shipment is processed, the state is 'Done'." msgstr "" +"* Novo: Quando o movimento do estoque é criado e ainda não confirmado.\n" +"* Esperando um outro movimento: Este estado pode ser visto quando um " +"movimento está à espera de um outro, por exemplo, em um fluxo encadeado.\n" +"* Esperando Disponibilidade: Este estado é atingido quando a resolução de " +"aquisição não é direta. Existe um passo adicional não concluído ...\n" +"* Disponível: Quando os produtos são reservados, ela é definida como " +"\"Disponível\".\n" +"* Concluído: Quando a transferência é processada, o estado é \"Concluído\"." #. module: stock #: model:stock.location,name:stock.stock_location_locations_partner @@ -1406,7 +1460,7 @@ msgstr "Local dos Parceiros" #. module: stock #: selection:stock.picking.in,state:0 msgid "Received" -msgstr "" +msgstr "Recebido" #. module: stock #: view:report.stock.inventory:0 @@ -1419,7 +1473,7 @@ msgstr "Quantidade total" #: field:stock.picking.in,min_date:0 #: field:stock.picking.out,min_date:0 msgid "Scheduled Time" -msgstr "" +msgstr "Hora agendada" #. module: stock #: model:ir.actions.act_window,name:stock.move_consume @@ -1430,7 +1484,7 @@ msgstr "Movimento de Consumo" #. module: stock #: report:stock.picking.list:0 msgid "Delivery Order :" -msgstr "" +msgstr "Ordem de Entrega" #. module: stock #: help:stock.location,chained_delay:0 @@ -1453,6 +1507,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo diário. \n" +"

\n" +"O diário do estoque permite atribuir a cada unidade\n" +"                 operação um diário específico de acordo com o tipo de\n" +"                 operação executada ou o funcionário / equipe que deve " +"realizar o\n" +"                 operação. Exemplos de diários de ações podem ser: controle " +"de qualidade,\n" +"                 listas de seleção, embalagem, etc\n" +"

\n" +" " #. module: stock #: help:stock.location,chained_auto_packing:0 @@ -1493,7 +1559,7 @@ msgstr "Aguardando Outra Movimentação" #: help:stock.change.product.qty,new_quantity:0 msgid "" "This quantity is expressed in the Default Unit of Measure of the product." -msgstr "" +msgstr "Esta quantidade é expressa na Unidade de Medida padrão do produto." #. module: stock #: help:stock.move,price_unit:0 @@ -1508,7 +1574,7 @@ msgstr "" #: code:addons/stock/stock.py:1890 #, python-format msgid "Warning: No Back Order" -msgstr "" +msgstr "Aviso: Nenhuma Back Order" #. module: stock #: model:ir.model,name:stock.model_stock_move @@ -1537,11 +1603,12 @@ msgstr "Você só pode apagar movimentação provisórias" #, python-format msgid "You cannot move product %s to a location of type view %s." msgstr "" +"Você não pode mover um produto %s para um local %s do tipo Visualização." #. module: stock #: view:stock.inventory:0 msgid "Split in serial numbers" -msgstr "" +msgstr "Dividir em Números de Série" #. module: stock #: view:stock.move:0 @@ -1562,7 +1629,7 @@ msgstr "Provisório" #. module: stock #: field:product.template,sale_delay:0 msgid "Customer Lead Time" -msgstr "" +msgstr "Prazo de Entrega ao Cliente" #. module: stock #: view:stock.picking:0 @@ -1573,7 +1640,7 @@ msgstr "Informação Adicional" #: code:addons/stock/stock.py:2648 #, python-format msgid "Missing partial picking data for move #%s." -msgstr "" +msgstr "Está faltando dados da separação parcial para o movimento #%s." #. module: stock #: field:stock.location.product,from_date:0 @@ -1733,6 +1800,18 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Prezado Senhor / Senhora,\n" +"\n" +"Nossos registros indicam que alguns pagamentos em sua conta estão em aberto. " +"Por favor, veja os detalhes abaixo.\n" +"Se o valor já tiver sido pago, por favor desconsidere este aviso. Caso " +"contrário, regularize os pagamentos o mais breve possível.\n" +"Se você tiver alguma dúvida sobre seus pagamentos, por favor, entre em " +"contato conosco.\n" +"\n" +"Obrigado antecipadamente pela sua colaboração.\n" +"\n" +"Atenciosamente," #. module: stock #: help:stock.incoterms,active:0 @@ -1764,6 +1843,8 @@ msgstr "Local Pai" #, python-format msgid "Please define stock output account for this product: \"%s\" (id: %d)." msgstr "" +"Por favor defina a conta de saída de estoque para o produto: \"%s\" (id: " +"%d)." #. module: stock #: help:stock.location,company_id:0 @@ -1779,7 +1860,7 @@ msgstr "Prazo de Encadeamento" #. module: stock #: field:stock.config.settings,group_uom:0 msgid "Manage different units of measure for products" -msgstr "" +msgstr "Gerencia as diferentes unidades de medidas para produtos" #. module: stock #: model:ir.model,name:stock.model_stock_invoice_onshipping @@ -1790,18 +1871,18 @@ msgstr "Faturar Estoque no Envio" #: code:addons/stock/stock.py:2475 #, python-format msgid "Please provide a positive quantity to scrap." -msgstr "" +msgstr "Por favor forneça um valor positivo para sucatear." #. module: stock #: model:stock.location,name:stock.stock_location_shop1 msgid "Your Company, Birmingham shop" -msgstr "" +msgstr "Sua Empresa" #. module: stock #: view:product.product:0 #: view:product.template:0 msgid "Storage Location" -msgstr "" +msgstr "Local de armazenamento" #. module: stock #: help:stock.partial.move.line,currency:0 @@ -1814,7 +1895,7 @@ msgstr "Moeda do preço unitário de custo" #: selection:stock.picking.in,move_type:0 #: selection:stock.picking.out,move_type:0 msgid "Partial" -msgstr "" +msgstr "Parcial" #. module: stock #: selection:report.stock.inventory,month:0 @@ -1825,7 +1906,7 @@ msgstr "Setembro" #. module: stock #: view:product.product:0 msgid "days" -msgstr "" +msgstr "dias" #. module: stock #: model:ir.model,name:stock.model_report_stock_inventory @@ -1842,18 +1923,18 @@ msgstr "Mês Planejado" #: help:stock.picking.in,origin:0 #: help:stock.picking.out,origin:0 msgid "Reference of the document" -msgstr "" +msgstr "Referência do documento" #. module: stock #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Is a Back Order" -msgstr "É uma Devolução" +msgstr "É uma Back Order" #. module: stock #: report:stock.picking.list:0 msgid "Incoming Shipment :" -msgstr "" +msgstr "Recebimentos:" #. module: stock #: field:stock.location,valuation_out_account_id:0 @@ -1863,7 +1944,7 @@ msgstr "Conta de Valorização do Estoque (Saindo)" #. module: stock #: view:stock.return.picking.memory:0 msgid "Return Picking Memory" -msgstr "" +msgstr "Retornar Memória da Separação" #. module: stock #: model:ir.actions.act_window,name:stock.action_move_form2 @@ -1872,7 +1953,7 @@ msgstr "" #: view:stock.move:0 #: view:stock.production.lot:0 msgid "Stock Moves" -msgstr "Movimentos de Estoque" +msgstr "Movimentação de Estoque" #. module: stock #: help:stock.inventory.line.split,use_exist:0 @@ -1881,6 +1962,8 @@ msgid "" "Check this option to select existing serial numbers in the list below, " "otherwise you should enter new ones line by line." msgstr "" +"Marque esta opção para seleccionar os números de série existentes na lista " +"abaixo, caso contrário, você deve digitar os novos linha por linha." #. module: stock #: selection:report.stock.move,type:0 @@ -1906,7 +1989,7 @@ msgstr "Cancelar Disponibilidade" #: code:addons/stock/wizard/stock_location_product.py:49 #, python-format msgid "Current Inventory" -msgstr "" +msgstr "Inventário Atual" #. module: stock #: help:product.template,property_stock_production:0 @@ -1914,6 +1997,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated by manufacturing orders." msgstr "" +"Esta localização de estoque será usada, em vez do padrão, como o local de " +"origem dos movimentos de estoque gerados por ordens de fabricação." #. module: stock #: help:stock.move,date_expected:0 @@ -1939,7 +2024,7 @@ msgstr "Box 2" #: code:addons/stock/stock.py:529 #, python-format msgid "You cannot remove a lot line." -msgstr "" +msgstr "Você não pode remover uma linha de lote." #. module: stock #: help:stock.location,posx:0 @@ -1968,7 +2053,7 @@ msgstr "Quantidade Entregue" #. module: stock #: view:stock.partial.picking:0 msgid "Transfer Products" -msgstr "" +msgstr "Transferir Produtos" #. module: stock #: help:product.template,property_stock_inventory:0 @@ -1976,6 +2061,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated when you do an inventory." msgstr "" +"Esta localização de estoque será usada, em vez do padrão, como o local de " +"origem dos movimentos de estoque geradas quando você faz um inventário." #. module: stock #: help:product.template,property_stock_account_output:0 @@ -2016,6 +2103,24 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"\n" +" * Provisória: não confirmado ainda e não vai ser agendada até " +"confirmado\n" +"\n" +"             * Esperando uma outra operação: à espera de um outro movimento " +"finalizar antes que se torne automaticamente disponível (por exemplo, Fluxos " +"Fazer a Pedido)\n" +"\n" +"             * Aguardando Disponibilidade: ainda à espera da disponibilidade " +"de produtos\n" +"\n" +"             * Pronto para transferir: produtos reservados, simplesmente à " +"espera de confirmação.\n" +"\n" +"             * Transferidos: foi processado, não pode mais ser modificado ou " +"anulado.\n" +"\n" +"             * Cancelado: foi cancelada, não pode ser mais confirmada." #. module: stock #: view:report.stock.inventory:0 @@ -2035,7 +2140,7 @@ msgstr "Data" #: field:stock.picking.in,message_is_follower:0 #: field:stock.picking.out,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: stock #: view:report.stock.inventory:0 @@ -2052,7 +2157,7 @@ msgstr "Localizacão do Estoque" #: code:addons/stock/wizard/stock_partial_picking.py:97 #, python-format msgid "_Deliver" -msgstr "" +msgstr "_(D)Entregar" #. module: stock #: code:addons/stock/wizard/stock_inventory_merge.py:64 @@ -2080,6 +2185,22 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"* Provisória: não confirmado ainda e não vai ser agendada até confirmado\n" +"\n" +"             * Esperando uma outra operação: à espera de um outro movimento " +"finalizar antes que se torne automaticamente disponível (por exemplo, Fluxos " +"Fazer a Pedido)\n" +"\n" +"             * Aguardando Disponibilidade: ainda à espera da disponibilidade " +"de produtos\n" +"\n" +"             * Pronto para transferir: produtos reservados, simplesmente à " +"espera de confirmação.\n" +"\n" +"             * Transferidos: foi processado, não pode mais ser modificado ou " +"anulado.\n" +"\n" +"             * Cancelado: foi cancelada, não pode ser mais confirmada." #. module: stock #: field:stock.incoterms,code:0 @@ -2095,7 +2216,7 @@ msgstr "Números de Lote" #: model:ir.actions.act_window,name:stock.action_deliver_move #: view:product.product:0 msgid "Deliveries" -msgstr "" +msgstr "Entregas" #. module: stock #: model:ir.actions.act_window,help:stock.action_reception_picking_move @@ -2116,6 +2237,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar a recepção de um produto. \n" +"

\n" +"Aqui você pode receber os produtos individuais, não importa qual\n" +"                 ordem de compra ou ordem de separação eles vêm. Você vai " +"encontrar\n" +"                 a lista de todos os produtos que você está esperando. " +"Depois de receber\n" +"                 uma ordem, você pode filtrar com base no nome do fornecedor " +"ou\n" +"                 da referência da ordem de compra. Depois, você pode " +"confirmar todos os produtos\n" +"                 que recebeu usando os botões do lado direito de cada " +"linha.\n" +"

\n" +" " #. module: stock #: view:stock.change.product.qty:0 @@ -2146,7 +2283,7 @@ msgstr "Retornar Separação" #: model:ir.actions.act_window,name:stock.act_stock_return_picking_in #: model:ir.actions.act_window,name:stock.act_stock_return_picking_out msgid "Return Shipment" -msgstr "" +msgstr "Retornar Expedição" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_merge @@ -2200,7 +2337,7 @@ msgstr "" #: sql_constraint:stock.production.lot:0 msgid "" "The combination of Serial Number and internal reference must be unique !" -msgstr "" +msgstr "A combinação do número de série e referência interna deve ser única!" #. module: stock #: field:stock.warehouse,partner_id:0 @@ -2223,6 +2360,7 @@ msgstr "" #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product." msgstr "" +"Você está tentando associar um lote que não pertence ao mesmo produto." #. module: stock #: field:report.stock.move,day_diff1:0 @@ -2237,7 +2375,7 @@ msgstr "Preço" #. module: stock #: field:stock.config.settings,module_stock_invoice_directly:0 msgid "Create and open the invoice when the user finish a delivery order" -msgstr "" +msgstr "Criar e abrir a fatura quando o usuário finalizar a ordem de entrega" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking_memory @@ -2247,7 +2385,7 @@ msgstr "stock.return.picking.memory" #. module: stock #: field:stock.config.settings,group_stock_inventory_valuation:0 msgid "Generate accounting entries per stock movement" -msgstr "" +msgstr "Gerar lançamentos contábeis por movimentação de estoque" #. module: stock #: code:addons/stock/product.py:449 @@ -2275,6 +2413,8 @@ msgid "" "Forces to specify a Serial Number for all moves containing this product and " "generated by a Manufacturing Order" msgstr "" +"Força a especificação de um número de série para toda movimentação contendo " +"este produto e gerada por uma Ordem de Produção" #. module: stock #: model:ir.model,name:stock.model_stock_fill_inventory @@ -2291,7 +2431,7 @@ msgstr "Nome" #. module: stock #: report:stock.picking.list:0 msgid "Supplier Address :" -msgstr "" +msgstr "Endereço do Fornecedor:" #. module: stock #: view:stock.inventory.line:0 @@ -2323,24 +2463,24 @@ msgstr "Local do Cliente" #: code:addons/stock/stock.py:2858 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erro de Usuário!" #. module: stock #: view:stock.partial.picking:0 msgid "Stock partial Picking" -msgstr "" +msgstr "Separação Parcial do Estoque" #. module: stock #: view:stock.picking:0 msgid "Create Invoice/Refund" -msgstr "" +msgstr "Criar Fatura/Reembolso" #. module: stock #: help:stock.picking,message_ids:0 #: help:stock.picking.in,message_ids:0 #: help:stock.picking.out,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: stock #: view:report.stock.inventory:0 @@ -2368,7 +2508,7 @@ msgstr "Localizacão dos Fornecedores" #. module: stock #: view:stock.location.product:0 msgid "View Products Inventory" -msgstr "" +msgstr "Ver Inventário do Produto" #. module: stock #: view:stock.move:0 @@ -2379,7 +2519,7 @@ msgstr "Criação" #: code:addons/stock/stock.py:1776 #, python-format msgid "Operation forbidden !" -msgstr "" +msgstr "Operação Proibida!" #. module: stock #: view:report.stock.inventory:0 @@ -2409,7 +2549,7 @@ msgstr "Tipo de transporte especificar, mercadorias entrando ou saindo" #. module: stock #: view:stock.config.settings:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidade" #. module: stock #: model:ir.ui.menu,name:stock.menu_warehouse_config @@ -2454,6 +2594,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um movimento de estoque.\n" +"

\n" +"Este menu fornece total rastreabilidade de operações de estoque\n" +"em um produto específico. Você pode filtrar o produto\n" +"                 para ver todos os movimentos do passado ou do futuro para o " +"produto.\n" +"

\n" +" " #. module: stock #: view:stock.location:0 @@ -2480,19 +2629,19 @@ msgstr "Unidade de Medida" #. module: stock #: field:stock.config.settings,group_stock_multiple_locations:0 msgid "Manage multiple locations and warehouses" -msgstr "" +msgstr "Gerenciar múltiplos locais e armazéns" #. module: stock #: field:stock.config.settings,group_stock_production_lot:0 msgid "Track serial number on products" -msgstr "" +msgstr "Rastrear número de série em produtos" #. module: stock #: field:stock.picking,message_unread:0 #: field:stock.picking.in,message_unread:0 #: field:stock.picking.out,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: stock #: help:stock.production.lot,stock_available:0 @@ -2500,6 +2649,8 @@ msgid "" "Current quantity of products with this Serial Number available in company " "warehouses" msgstr "" +"Quantidade de produtos atualmente disponível com este Número de Série nos " +"armazéns da empresa" #. module: stock #: view:stock.inventory:0 @@ -2521,7 +2672,7 @@ msgstr "Lotes" #. module: stock #: view:stock.partial.picking:0 msgid "_Transfer" -msgstr "" +msgstr "_Transferir" #. module: stock #: selection:report.stock.move,type:0 @@ -2547,7 +2698,7 @@ msgstr "Localizações Internas" #. module: stock #: view:board.board:0 msgid "Warehouse board" -msgstr "Placa de armazém" +msgstr "Quadro do Armazém" #. module: stock #: code:addons/stock/product.py:469 @@ -2558,7 +2709,7 @@ msgstr "Qtde Futura" #. module: stock #: model:res.groups,name:stock.group_production_lot msgid "Manage Serial Numbers" -msgstr "" +msgstr "Gerenciar Números de Série" #. module: stock #: field:stock.move,note:0 @@ -2571,7 +2722,7 @@ msgstr "Observações" #. module: stock #: selection:stock.picking,state:0 msgid "Transferred" -msgstr "" +msgstr "Transferido" #. module: stock #: report:lot.stock.overview:0 @@ -2592,7 +2743,7 @@ msgstr "Tipo de Envio" #. module: stock #: view:stock.move:0 msgid "Process Partially" -msgstr "" +msgstr "Processar Parcialmente" #. module: stock #: view:stock.move:0 @@ -2619,6 +2770,8 @@ msgid "" "Cannot create Journal Entry, Output Account of this product and Valuation " "account on category of this product are same." msgstr "" +"Não é possível criar uma Entrada de Diário, a Conta de Saida e Conta de " +"Avaliação na categoria deste produto são as mesmas." #. module: stock #: selection:stock.location,chained_location_type:0 @@ -2659,6 +2812,8 @@ msgid "" "Please define stock input account for this product or its category: \"%s\" " "(id: %d)" msgstr "" +"Por favor defina a conta de entrada de estoque para este produto ou " +"categoria: \"%s\" (id: %d)" #. module: stock #: view:report.stock.move:0 @@ -2681,7 +2836,7 @@ msgstr "Qtd P&L" #. module: stock #: model:ir.model,name:stock.model_stock_config_settings msgid "stock.config.settings" -msgstr "" +msgstr "stock.config.settings" #. module: stock #: view:stock.production.lot:0 @@ -2708,7 +2863,7 @@ msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_4 msgid "Big Suppliers" -msgstr "" +msgstr "Grandes Fornecedores" #. module: stock #: model:ir.actions.act_window,help:stock.action_stock_inventory_report @@ -2739,7 +2894,7 @@ msgstr "Criar" #. module: stock #: field:stock.change.product.qty,new_quantity:0 msgid "New Quantity on Hand" -msgstr "" +msgstr "Nova Quantidade na Mão" #. module: stock #: field:stock.move,priority:0 @@ -2789,7 +2944,7 @@ msgstr "Cancelar Inventário" #. module: stock #: field:stock.config.settings,group_product_variant:0 msgid "Support multiple variants per products " -msgstr "" +msgstr "Suporte a múltiplas variantes por produtos " #. module: stock #: code:addons/stock/stock.py:2246 @@ -2798,6 +2953,8 @@ msgid "" "Cannot create Journal Entry, Input Account of this product and Valuation " "account on category of this product are same." msgstr "" +"Não é possível criar uma entrada de diário, a Conta de entrada e Conta de " +"Avaliação da categoria deste produto são as mesmas." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_unit_measure_stock @@ -2813,7 +2970,7 @@ msgstr "Localização Fixa" #. module: stock #: field:report.stock.inventory,scrap_location:0 msgid "scrap" -msgstr "" +msgstr "sucata" #. module: stock #: code:addons/stock/stock.py:1891 @@ -2822,21 +2979,23 @@ msgid "" "By changing the quantity here, you accept the new quantity as complete: " "OpenERP will not automatically generate a Back Order." msgstr "" +"Alterando a quantidade aqui, você aceita que a nova quantidade está " +"completa: O OpenERP não irá gerar uma Back Order automaticamente." #. module: stock #: report:stock.inventory.move:0 msgid "Manual Quantity" -msgstr "" +msgstr "Quantidade Manual" #. module: stock #: view:product.product:0 msgid "On hand:" -msgstr "" +msgstr "Na mão" #. module: stock #: model:ir.model,name:stock.model_stock_report_prodlots msgid "Stock report by serial number" -msgstr "" +msgstr "Relatório de Estoque por número de série" #. module: stock #: selection:report.stock.inventory,month:0 @@ -2866,7 +3025,7 @@ msgstr "" #: code:addons/stock/wizard/stock_invoice_onshipping.py:112 #, python-format msgid "Please create Invoices." -msgstr "" +msgstr "Por favor gere as faturas." #. module: stock #: help:stock.config.settings,module_product_expiry:0 @@ -2879,12 +3038,19 @@ msgid "" " - alert date.\n" "This installs the module product_expiry." msgstr "" +"Controlar diferentes datas em produtos e números de serie.\n" +"As seguintes datas podem ser monitorados:\n" +"     - Fim da vida\n" +"     - Melhor antes de data\n" +"     - Data de remoção\n" +"     - Data de alerta.\n" +"Isso instala o módulo product_expiry." #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:174 #, python-format msgid "Please provide proper Quantity." -msgstr "" +msgstr "Por favor informe a Quantidade apropriada" #. module: stock #: model:ir.actions.report.xml,name:stock.report_product_history @@ -2907,7 +3073,7 @@ msgstr "Diário de Estoque" #: code:addons/stock/wizard/stock_return_picking.py:171 #, python-format msgid "%s-%s-return" -msgstr "" +msgstr "%s-%s - retorno" #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:82 @@ -2924,7 +3090,7 @@ msgstr "Forçar Disponibilidade" #. module: stock #: field:product.template,loc_rack:0 msgid "Rack" -msgstr "" +msgstr "Rack" #. module: stock #: model:ir.actions.act_window,name:stock.move_scrap @@ -2935,7 +3101,7 @@ msgstr "Movimentação de Sucata" #. module: stock #: help:stock.move,prodlot_id:0 msgid "Serial number is used to put a serial number on the production" -msgstr "" +msgstr "Número de série usado para colocar um número de série na produção" #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:100 @@ -2982,6 +3148,7 @@ msgstr "Data de Conclusão" #, python-format msgid "You cannot move product %s from a location of type view %s." msgstr "" +"Você não pode movimentar um produto %s de um local %s do tipo visualização." #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -3035,6 +3202,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um local.\n" +"

\n" +" Esta é a estrutura de armazéns da sua empresa e\n" +"                 locais. Você pode clicar em um local para obter a lista de\n" +"                 produtos e nível de estoque neste determinado local e\n" +"                 todos os seus filhos.\n" +"

\n" +" " #. module: stock #: field:stock.location,stock_real:0 @@ -3044,7 +3220,7 @@ msgstr "Estoque Real" #. module: stock #: field:stock.report.tracklots,tracking_id:0 msgid "Logistic Serial Number" -msgstr "" +msgstr "Número de Série da Logística" #. module: stock #: field:stock.production.lot.revision,date:0 @@ -3065,11 +3241,13 @@ msgid "" "Total quantity after split exceeds the quantity to split for this product: " "\"%s\" (id: %d)." msgstr "" +"A quantidade total após a divisão excede a quantidade a dividir para este " +"produto: \"%s\" (id: %d)." #. module: stock #: view:stock.partial.move.line:0 msgid "Stock Partial Move Line" -msgstr "" +msgstr "Linha de Movimentação Parcial do Estoque" #. module: stock #: field:stock.move,product_uos_qty:0 @@ -3092,12 +3270,14 @@ msgid "" "When you select a serial number on product moves, you can get the upstream " "or downstream traceability of that product." msgstr "" +"Quando você seleciona um número de série na movimentação do produto, você " +"obtém a rastreabilidade anterior ou posterior do produto." #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:95 #, python-format msgid "_Receive" -msgstr "" +msgstr "_Receber" #. module: stock #: field:stock.incoterms,active:0 @@ -3168,6 +3348,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar uma recepção para este produto. \n" +"

\n" +" Aqui você vai encontrar ao histórico de todas as recepções " +"relacionadas com\n" +"                 este produto, bem como todas as recepções futuras está à " +"espera\n" +"                 de seus fornecedores.\n" +"\n" +"

\n" +" " #. module: stock #: help:stock.fill.inventory,recursive:0 @@ -3183,6 +3374,8 @@ msgstr "" msgid "" "Allows to configure inventory valuations on products and product categories." msgstr "" +"Permite configurar uma valorização de inventário nos produtos e categorias " +"de produtos." #. module: stock #: help:stock.config.settings,module_stock_location:0 @@ -3194,6 +3387,13 @@ msgid "" "needs, etc.\n" " This installs the module stock_location." msgstr "" +"Fornece fluxos de entrada e saida de estoque. Os usos típicos deste recurso " +"são:\n" +"                 gestão de cadeias de fabricação de produtos, gerenciar " +"locais padrão por produto,\n" +"                 definir rotas dentro do seu armazém de acordo com as " +"necessidades de negócios, etc\n" +"                 Isso instala o módulo stock_location." #. module: stock #: view:stock.inventory:0 @@ -3220,6 +3420,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar uma entrega de produto.\n" +"

\n" +"

\n" +"Você vai encontrar nesta lista todos os produtos que você tem para entregar " +"a\n" +"                 seus clientes. Você pode processar as entregas diretamente " +"desta\n" +"                 lista usando os botões do lado direito de cada linha. você " +"pode\n" +"                 filtrar os produtos para entregar por clientes, produtos ou " +"pedido de\n" +" venda (usando o campo de origem).\n" +"

\n" +" " #. module: stock #: view:stock.move:0 @@ -3234,7 +3449,7 @@ msgstr "Nome de Revisão" #. module: stock #: model:res.groups,name:stock.group_tracking_lot msgid "Manage Logistic Serial Numbers" -msgstr "" +msgstr "Gerenciar Números de Série da Logística" #. module: stock #: view:stock.inventory:0 @@ -3255,12 +3470,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um número de rastreamento.\n" +"

\n" +"Esta é a lista de todas as suas embalagens. Quando você seleciona uma\n" +"embalagem, você pode obter a rastreabilidade anterior ou posterior\n" +"dos produtos contido na embalagem.\n" +"

\n" +" " #. module: stock #: code:addons/stock/stock.py:2496 #, python-format msgid "%s %s %s has been moved to scrap." -msgstr "" +msgstr "%s %s %s foram movidos para sucata." #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_out @@ -3315,14 +3538,14 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Confirm & Receive" -msgstr "" +msgstr "Confirmar & Receber" #. module: stock #: field:stock.picking,origin:0 #: field:stock.picking.in,origin:0 #: field:stock.picking.out,origin:0 msgid "Source Document" -msgstr "" +msgstr "Documento de Origem" #. module: stock #: selection:stock.move,priority:0 @@ -3332,7 +3555,7 @@ msgstr "Não urgente" #. module: stock #: view:stock.move:0 msgid "Scheduled" -msgstr "" +msgstr "Agendado" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -3348,7 +3571,7 @@ msgstr "Responsável" #. module: stock #: view:stock.move:0 msgid "Process Entirely" -msgstr "" +msgstr "Processar Totalmente" #. module: stock #: help:product.template,property_stock_procurement:0 @@ -3356,6 +3579,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated by procurements." msgstr "" +"Este local de estoque será usado, em vez do padrão, como origem de " +"movimentos de estoque gerados por aquisições." #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_inventory_report @@ -3379,7 +3604,7 @@ msgstr "Estoque" #: code:addons/stock/wizard/stock_return_picking.py:219 #, python-format msgid "Returned Picking" -msgstr "" +msgstr "Separação Devolvida" #. module: stock #: model:ir.model,name:stock.model_product_product @@ -3425,6 +3650,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar um inventário. \n" +"

\n" +" Inventários periódicos são usados ​​para contar o número de " +"produtos\n" +"                 disponíveis por localidade. Você pode usá-lo uma vez por " +"ano, quando você faz\n" +"                 o inventário geral ou sempre que necessário, para adaptar " +"o\n" +"                 nível de estoque atual de um produto.\n" +"

\n" +" " #. module: stock #: view:stock.return.picking:0 @@ -3445,12 +3682,12 @@ msgstr "Movimentação Interna Atribuída" #: code:addons/stock/stock.py:790 #, python-format msgid "You cannot process picking without stock moves." -msgstr "" +msgstr "Você não pode processar uma separação sem movimentos de estoque." #. module: stock #: field:stock.production.lot,move_ids:0 msgid "Moves for this serial number" -msgstr "" +msgstr "Movimentos para este número de série" #. module: stock #: field:stock.move,product_uos:0 @@ -3487,7 +3724,7 @@ msgstr "Corredor (X)" #. module: stock #: field:stock.config.settings,group_stock_packaging:0 msgid "Allow to define several packaging methods on products" -msgstr "" +msgstr "Permite definir diversos métodos de empacotamento nos produtos" #. module: stock #: model:stock.location,name:stock.stock_location_7 @@ -3538,7 +3775,7 @@ msgstr "Produtos por Localização" #. module: stock #: view:stock.config.settings:0 msgid "Logistic" -msgstr "" +msgstr "Logística" #. module: stock #: model:ir.actions.act_window,help:stock.action_location_form @@ -3568,6 +3805,28 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um local.\n" +"

\n" +"Definir os locais para refletir sua estrutura de armazém e\n" +"                 organização. O OpenERP é capaz de gerenciar os locais " +"físicos\n" +"                 (armazéns, prateleiras, caixa, etc), locais parceiros " +"(clientes,\n" +"                 fornecedores) e locais virtuais que são a contrapartida " +"das\n" +"                 operações de estoque como as ordens de produção\n" +"                 consumos, estoques, etc\n" +"

\n" +"Cada operação de estoque no OpenERP move os produtos de um\n" +"                 local para outro. Por exemplo, se você receber produtos\n" +"                 de um fornecedor, OpenERP vai movimentar os produtos\n" +" local do Fornecedor para o local do Estoque. Cada " +"relatório\n" +" pode ser realizado em locais físicos, de parceiro ou locais " +"virtuais.\n" +"

\n" +" " #. module: stock #: field:stock.fill.inventory,recursive:0 @@ -3584,7 +3843,7 @@ msgstr "Box 1" #: help:stock.picking.in,date:0 #: help:stock.picking.out,date:0 msgid "Creation time, usually the time of the order." -msgstr "" +msgstr "Data de Criação, geralmente o horário do pedido." #. module: stock #: field:stock.tracking,name:0 @@ -3623,7 +3882,7 @@ msgstr "Ativar Conta Relacionada" #. module: stock #: field:stock.location.product,type:0 msgid "Analyse Type" -msgstr "" +msgstr "Tipo de Análise" #. module: stock #: model:ir.actions.act_window,help:stock.action_picking_tree4 @@ -3639,6 +3898,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para registrar um recebimento. \n" +"

\n" +"Recebimentos é lista de todos os pedidos que você vai\n" +"                 receber de seus fornecedores. Uma expedição recebida contém " +"uma\n" +"                 lista de produtos a ser recebida de acordo com o pedido de " +"compra original\n" +"

\n" +" " #. module: stock #: view:stock.move:0 @@ -3655,7 +3924,7 @@ msgstr "Tudo de uma vez" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_open msgid "Inventory Move" -msgstr "" +msgstr "Movimentação de Inventário" #. module: stock #: code:addons/stock/product.py:475 @@ -3683,12 +3952,28 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"* Provisório: não confirmado ainda e não vai ser agendada até confirmado\n" +"\n" +"                  * Esperando uma outra operação: à espera de um outro " +"movimento para finalizar antes que se torne automaticamente disponível (por " +"exemplo, Fluxos Fazer a Pedido)\n" +"\n" +"                  * Aguardando Disponibilidade: à espera da disponibilidade " +"de produtos\n" +"\n" +"                  * Pronto para Receber: produtos reservados, simplesmente à " +"espera de confirmação.\n" +"\n" +"                  * Recebido: foi processado, não pode mais ser modificado " +"ou cancelado\n" +"\n" +"                  * Cancelado: foi cancelada, não pode mais ser confirmada" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_config_settings #: view:stock.config.settings:0 msgid "Configure Warehouse" -msgstr "" +msgstr "Configurar Armazém" #. module: stock #: view:stock.picking:0 @@ -3716,7 +4001,7 @@ msgstr "Datas dos Inventários" #: model:ir.actions.act_window,name:stock.action_receive_move #: view:product.product:0 msgid "Receptions" -msgstr "" +msgstr "Recebimentos" #. module: stock #: view:report.stock.move:0 @@ -3751,7 +4036,7 @@ msgstr "Empresa" #: field:stock.move.consume,product_uom:0 #: field:stock.move.scrap,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de Medida do Produto" #. module: stock #: view:stock.move:0 @@ -3784,7 +4069,7 @@ msgstr "Lote de Inventário" #: field:stock.production.lot.revision,lot_id:0 #: field:stock.report.prodlots,prodlot_id:0 msgid "Serial Number" -msgstr "" +msgstr "Número de Série" #. module: stock #: model:ir.model,name:stock.model_stock_partial_picking @@ -3832,7 +4117,7 @@ msgstr "" #: field:stock.picking.in,message_ids:0 #: field:stock.picking.out,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: stock #: model:stock.location,name:stock.stock_location_8 @@ -3874,6 +4159,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo armazém.\n" +"

\n" +" " #. module: stock #: selection:report.stock.inventory,state:0 @@ -3911,11 +4200,13 @@ msgid "" "The unit of measure rounding does not allow you to ship \"%s %s\", only " "roundings of \"%s %s\" is accepted by the Unit of Measure." msgstr "" +"O arredondamento da unidade de medida não te permite enviar \"%s %s\", " +"apenas múltiplos de \"%s %s\" são aceitos pela unidade de medida." #. module: stock #: model:stock.location,name:stock.stock_location_shop0 msgid "Your Company, Chicago shop" -msgstr "" +msgstr "Sua Empresa, Loja de Chicago" #. module: stock #: selection:report.stock.move,type:0 @@ -3959,11 +4250,13 @@ msgid "" "By changing this quantity here, you accept the new quantity as complete: " "OpenERP will not automatically generate a back order." msgstr "" +"Alterando esta quantidade aqui, você aceita que a nova quantidade como " +"completa: O OpenERP não irá gerar uma back order." #. module: stock #: view:stock.production.lot.revision:0 msgid "Serial Number Revisions" -msgstr "" +msgstr "Revisões de Número de Série" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree @@ -3981,7 +4274,7 @@ msgstr "Ordens de entrega já processada" #. module: stock #: field:product.template,loc_case:0 msgid "Case" -msgstr "" +msgstr "Caso" #. module: stock #: selection:report.stock.inventory,state:0 @@ -4024,13 +4317,13 @@ msgstr "" #: field:stock.picking.in,message_follower_ids:0 #: field:stock.picking.out,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: stock #: code:addons/stock/stock.py:2585 #, python-format msgid "Cannot consume a move with negative or zero quantity." -msgstr "" +msgstr "Não pode consumir um movimento com uma quantidade negativa ou zero." #. module: stock #: help:stock.config.settings,decimal_precision:0 @@ -4038,6 +4331,8 @@ msgid "" "As an example, a decimal precision of 2 will allow weights like: 9.99 kg, " "whereas a decimal precision of 4 will allow weights like: 0.0231 kg." msgstr "" +"Como exemplo, uma precisão decimal de 2 irá permitir pesos como: 9.99 kg, ou " +"uma precisão decimal de 4 irá permitir pesos como: 0.0231 kg." #. module: stock #: view:report.stock.move:0 @@ -4050,7 +4345,7 @@ msgstr "Quantidade total saindo" #: field:stock.picking.in,backorder_id:0 #: field:stock.picking.out,backorder_id:0 msgid "Back Order of" -msgstr "Devolução de" +msgstr "Back Order de" #. module: stock #: help:stock.partial.move.line,cost:0 @@ -4070,7 +4365,7 @@ msgstr "Categoria de Produto" #. module: stock #: view:stock.move:0 msgid "Serial Number" -msgstr "" +msgstr "Número de Série" #. module: stock #: view:stock.invoice.onshipping:0 @@ -4090,7 +4385,7 @@ msgstr "Configuração" #. module: stock #: model:res.groups,name:stock.group_locations msgid "Manage Multiple Locations and Warehouses" -msgstr "" +msgstr "Gerenciar Múltiplos Locais e Armazéns" #. module: stock #: help:stock.change.standard.price,new_price:0 @@ -4111,7 +4406,7 @@ msgstr "" #: code:addons/stock/stock.py:2811 #, python-format msgid "INV:" -msgstr "" +msgstr "FAT:" #. module: stock #: help:stock.config.settings,module_stock_invoice_directly:0 @@ -4120,6 +4415,10 @@ msgid "" " to be invoiced when you send or deliver goods.\n" " This installs the module stock_invoice_directly." msgstr "" +"Isso permite iniciar automaticamente o assistente de faturamento se a " +"entrega é\n" +"                 a faturar quando você enviar ou entregar mercadorias.\n" +"                 Isso instala o módulo stock_invoice_directly." #. module: stock #: field:stock.location,chained_journal_id:0 @@ -4147,6 +4446,12 @@ msgid "" "this quantity on assigned moves affects the product reservation, and should " "be done with care." msgstr "" +"Esta é a quantidade de produtos a partir de um ponto de vista de inventário. " +"Para movimentos em situação \"Concluido\", esta é a quantidade de produtos " +"que foram realmente movidoss. Para outros movimentos, esta é a quantidade de " +"produto previsto para ser movida. A redução desta quantidade não gera uma " +"backorder. Mudar essa quantidade em movimentos atribuídos afeta a reserva do " +"produto, e deve ser feito com cuidado." #. module: stock #: help:stock.location,valuation_in_account_id:0 @@ -4190,7 +4495,7 @@ msgstr "Auto Validar" #: code:addons/stock/stock.py:1821 #, python-format msgid "Insufficient Stock for Serial Number !" -msgstr "" +msgstr "Estoque insuficiente para o Número de Série!" #. module: stock #: model:ir.model,name:stock.model_product_template @@ -4222,7 +4527,7 @@ msgstr "Retornar Produtos" #. module: stock #: view:stock.inventory:0 msgid "Validate Inventory" -msgstr "Validar Inventório" +msgstr "Validar Inventário" #. module: stock #: help:stock.move,price_currency_id:0 @@ -4230,31 +4535,33 @@ msgid "" "Technical field used to record the currency chosen by the user during a " "picking confirmation (when average price costing method is used)" msgstr "" -"Campo técnico usado para gravar a moeda escolhida pelo usuário durante a " -"confirmação da separação (quando o método de custificação por preço médio é " +"Campo técnico usado para registrar a moeda escolhida pelo usuário durante a " +"confirmação da separação (quando o método de valorização por preço médio é " "usado)" #. module: stock #: help:stock.production.lot,name:0 msgid "Unique Serial Number, will be displayed as: PREFIX/SERIAL [INT_REF]" -msgstr "" +msgstr "Número de Série Único, será mostrado como: PREFIXO/SERIAL [INT_REF]" #. module: stock #: code:addons/stock/product.py:142 #, python-format msgid "Please define stock input account for this product: \"%s\" (id: %d)." msgstr "" +"Por favor defina a conta de entrada de estoque para este produto: \"%s\" " +"(id: %d)." #. module: stock #: model:ir.actions.act_window,name:stock.action_reception_picking_move #: model:ir.ui.menu,name:stock.menu_action_pdct_in msgid "Incoming Products" -msgstr "" +msgstr "Recebimentos de Produtos" #. module: stock #: view:product.product:0 msgid "update" -msgstr "" +msgstr "atualizar" #. module: stock #: view:stock.change.product.qty:0 @@ -4273,7 +4580,7 @@ msgstr "" #: view:stock.return.picking:0 #: view:stock.split.into:0 msgid "or" -msgstr "" +msgstr "ou" #. module: stock #: selection:stock.picking,invoice_state:0 @@ -4293,7 +4600,7 @@ msgstr "Informação" #: code:addons/stock/stock.py:1199 #, python-format msgid "You cannot remove the picking which is in %s state!" -msgstr "" +msgstr "Você não pode movimentar uma separação no estado %s !" #. module: stock #: help:res.partner,property_stock_customer:0 @@ -4327,7 +4634,7 @@ msgstr "Separação Automática" #. module: stock #: report:stock.picking.list:0 msgid "Customer Address :" -msgstr "" +msgstr "Endereço do Cliente:" #. module: stock #: field:stock.location,chained_auto_packing:0 @@ -4384,7 +4691,7 @@ msgstr "Você deseja mesclar estes inventários?" #. module: stock #: view:stock.picking.out:0 msgid "Date of Delivery" -msgstr "" +msgstr "Data de Entrega" #. module: stock #: field:stock.location,posy:0 @@ -4398,17 +4705,19 @@ msgid "" "Please define inventory valuation account on the product category: \"%s\" " "(id: %d)" msgstr "" +"Por favor defina a conta de valorização do inventário para a categoria de " +"produto: \"%s\" (id: %d)" #. module: stock #: model:ir.model,name:stock.model_stock_production_lot_revision msgid "Serial Number Revision" -msgstr "" +msgstr "Revisão do Número de Série" #. module: stock #: code:addons/stock/product.py:96 #, python-format msgid "Specify valuation Account for Product Category: %s." -msgstr "" +msgstr "Especifique a conta de valorização para a Categoria de Produto: %s." #. module: stock #: help:stock.config.settings,module_claim_from_delivery:0 @@ -4416,12 +4725,15 @@ msgid "" "Adds a Claim link to the delivery order.\n" " This installs the module claim_from_delivery." msgstr "" +"Adiciona um link de Solicitações para a ordem de entrega.\n" +" " +" Insto instala o módulo claim_from_delivery." #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:205 #, python-format msgid "Please specify at least one non-zero quantity." -msgstr "" +msgstr "Por favor espeficique pelo menos uma quantidade diferente de zero." #. module: stock #: field:stock.fill.inventory,set_stock_zero:0 @@ -4436,7 +4748,7 @@ msgstr "Usuário" #. module: stock #: field:stock.config.settings,module_stock_location:0 msgid "Create push/pull logistic rules" -msgstr "" +msgstr "Crie regras de logística push/pull" #. module: stock #: code:addons/stock/wizard/stock_invoice_onshipping.py:98 @@ -4476,6 +4788,7 @@ msgstr "Janeiro" #: constraint:stock.move:0 msgid "You cannot move products from or to a location of the type view." msgstr "" +"Você não pode movimentar produtos de/para um local do tipo visualização." #. module: stock #: help:stock.config.settings,group_stock_production_lot:0 @@ -4484,6 +4797,9 @@ msgid "" "a serial number on product moves, you can get the upstream or downstream " "traceability of that product." msgstr "" +"Isso permite que você gerencie produtos usando números de série. Quando você " +"seleciona um número de série em movimentação de produtos, você pode obter a " +"rastreabilidade a anterior ou posterior do produto." #. module: stock #: code:addons/stock/wizard/stock_fill_inventory.py:124 @@ -4491,6 +4807,8 @@ msgstr "" msgid "" "No product in this location. Please select a location in the product form." msgstr "" +"Nenhum produto neste local. Por favor selecione um local no formulário do " +"produto." #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open @@ -4542,6 +4860,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar uma ordem de entrega para este " +"produto.\n" +"

\n" +"Aqui você vai encontrar a histórico de todos as entregas anteriores " +"relacionadas com\n" +"este produto, assim como todos os produtos que devem ser fornecidos a " +"clientes.\n" +"

\n" +" " #. module: stock #: model:ir.actions.act_window,name:stock.action_location_form @@ -4559,6 +4887,8 @@ msgid "" "If this shipment was split, then this field links to the shipment which " "contains the already processed part." msgstr "" +"Se esta entrega for dividida, então este campo associa a entrega que contém " +"a parte já processada." #. module: stock #: view:stock.inventory:0 @@ -4577,7 +4907,7 @@ msgstr "Prefixo" #: view:stock.move:0 #: view:stock.move.split:0 msgid "Split in Serial Numbers" -msgstr "" +msgstr "Dividir em Números de Série" #. module: stock #: help:product.template,property_stock_account_input:0 @@ -4625,12 +4955,12 @@ msgstr "" #. module: stock #: view:product.product:0 msgid "Delays" -msgstr "" +msgstr "Atrasos" #. module: stock #: report:stock.picking.list:0 msgid "Schedule Date" -msgstr "" +msgstr "Data Agendada" #. module: stock #: field:stock.location.product,to_date:0 @@ -4681,7 +5011,7 @@ msgstr "Maio" #: code:addons/stock/product.py:110 #, python-format msgid "No difference between standard price and new price!" -msgstr "" +msgstr "Nenhuma diferença entre o preço padrão e o novo preço!" #. module: stock #: view:stock.picking.out:0 @@ -4691,12 +5021,12 @@ msgstr "Entrega" #. module: stock #: field:product.product,delivery_count:0 msgid "Delivery" -msgstr "" +msgstr "Entrega" #. module: stock #: view:stock.fill.inventory:0 msgid "Import the current inventory" -msgstr "" +msgstr "Importar o inventário atual" #. module: stock #: model:ir.actions.act_window,name:stock.action5 @@ -4732,7 +5062,7 @@ msgstr "Tipo de Local Encadeado" #: help:stock.picking.in,min_date:0 #: help:stock.picking.out,min_date:0 msgid "Scheduled time for the shipment to be processed" -msgstr "" +msgstr "Data agendada para o embarque a ser processado" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -4773,11 +5103,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um número de série.\n" +"

\n" +"Esta é a lista de todos os lotes de produção que você registrou. Quando\n" +"                 você selecionar um lote, você pode obter a rastreabilidade\n" +"                 anterior ou posterior dos produtos contidos no lote. Por " +"padrão, a\n" +"                 lista é filtrada sobre os números de série que estão " +"disponíveis no\n" +"                 seu armazém, mas você pode desmarcar o botão 'disponível' " +"para\n" +"                 obter todos os lotes produzidos, recebidos ou entregues\n" +"                 clientes.\n" +"

\n" +" " #. module: stock #: view:stock.picking.in:0 msgid "Date of Reception" -msgstr "" +msgstr "Data da Recepção" #. module: stock #: help:stock.config.settings,group_stock_multiple_locations:0 @@ -4785,11 +5130,13 @@ msgid "" "This allows to configure and use multiple stock locations and warehouses,\n" " instead of having a single default one." msgstr "" +"Isso permite configurar e usar várias localidades de estoque e armazéns,\n" +"                 em vez de ter um único." #. module: stock #: view:stock.picking:0 msgid "Confirm & Transfer" -msgstr "" +msgstr "Confirmar & Transferir" #. module: stock #: field:stock.location,scrap_location:0 @@ -4835,6 +5182,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma ordem de entrega. \n" +"

\n" +"Esta é a lista de todas as ordens de entrega que têm de ser\n" +"                 preparada, de acordo com suas diferentes pedidos de vendas " +"e suas\n" +"                 regras de logística.\n" +"

\n" +" " #. module: stock #: help:stock.tracking,name:0 @@ -4873,9 +5229,9 @@ msgid "" "would let a quantity of \"%s %s\" to ship and only roundings of \"%s %s\" is " "accepted by the uom." msgstr "" -"O arredondamento da UdM inicial não permite que você envie \"% s% s\", como " -"seria deixar uma quantidade de \"% s% s\" para enviar se apenas " -"arredondamentos de \"% s% s\" são aceito pela UdM." +"O arredondamento da UdM inicial não permite que você envie \"%s %s\", como " +"seria deixar uma quantidade de \"%s %s\" para enviar se apenas " +"arredondamentos de \"%s %s\" são aceito pela UdM." #. module: stock #: help:stock.move,move_dest_id:0 @@ -4908,4 +5264,4 @@ msgstr "Pronto para Processar" #. module: stock #: report:stock.picking.list:0 msgid "Warehouse Address :" -msgstr "" +msgstr "Endereço do Armazém:" diff --git a/addons/stock/i18n/ro.po b/addons/stock/i18n/ro.po index c75d7c4834a..c9f3149f69f 100644 --- a/addons/stock/i18n/ro.po +++ b/addons/stock/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index 0f4d5ee0858..2a335827d13 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -24,7 +24,7 @@ msgstr "" #: field:stock.move.split,line_exist_ids:0 #: field:stock.move.split,line_ids:0 msgid "Serial Numbers" -msgstr "" +msgstr "Серийные номера" #. module: stock #: help:stock.config.settings,group_product_variant:0 @@ -33,6 +33,9 @@ msgid "" "Shirts, for the same \"Linux T-Shirt\", you may have variants on sizes or " "colors; S, M, L, XL, XXL." msgstr "" +"Позволяет управлять несколькими вариантами для каждого продукта. Например, " +"если вы продаете футболки, на одну и ту же футболку, вы можете иметь " +"варианты размеров или цветов; S, M, L, XL, XXL." #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines @@ -56,13 +59,13 @@ msgstr "" #. module: stock #: view:stock.picking.out:0 msgid "Confirm & Deliver" -msgstr "" +msgstr "Подтвердить и доставить" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_change_product_quantity #: view:stock.change.product.qty:0 msgid "Update Product Quantity" -msgstr "" +msgstr "Обновить количество товаров" #. module: stock #: field:stock.location,chained_location_id:0 @@ -88,7 +91,7 @@ msgstr "Отслеживание вверх" #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "" +msgstr "Дата перемещения" #. module: stock #: field:product.product,track_outgoing:0 @@ -130,7 +133,7 @@ msgstr "Перемещения ТМЦ" #: code:addons/stock/stock.py:2580 #, python-format msgid "Please provide proper quantity." -msgstr "" +msgstr "Пожалуйста введите правильное количество." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_inventory_control @@ -202,7 +205,7 @@ msgstr "Физические инвентаризации" #. module: stock #: selection:stock.location.product,type:0 msgid "Analyse a Period" -msgstr "" +msgstr "Анализ периода" #. module: stock #: view:report.stock.move:0 @@ -232,7 +235,7 @@ msgstr "" #. module: stock #: model:ir.actions.server,name:stock.action_partial_move_server msgid "Deliver/Receive Products" -msgstr "Отгрузка/Получение ТМЦ" +msgstr "Отгрузка/получение товара" #. module: stock #: code:addons/stock/report/report_stock.py:78 @@ -269,7 +272,7 @@ msgstr "Неприменимо" #: help:stock.picking.in,message_unread:0 #: help:stock.picking.out,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: stock #: help:stock.tracking,serial:0 @@ -334,7 +337,7 @@ msgstr "" #. module: stock #: view:product.product:0 msgid "Forecasted:" -msgstr "" +msgstr "Прогнозируется:" #. module: stock #: view:stock.partial.move:0 @@ -349,6 +352,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 "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: stock #: code:addons/stock/stock.py:768 @@ -381,7 +386,7 @@ msgstr "Группировать по партнерам" #: help:stock.picking.in,move_type:0 #: help:stock.picking.out,move_type:0 msgid "It specifies goods to be deliver partially or all at once" -msgstr "" +msgstr "Это определяет будут ли товары доставлены по частями или все сразу" #. module: stock #: model:ir.model,name:stock.model_res_partner @@ -399,7 +404,7 @@ msgstr "Партнер" #. module: stock #: field:stock.config.settings,module_claim_from_delivery:0 msgid "Allow claim on deliveries" -msgstr "" +msgstr "Разрешить претензии по доставкам" #. module: stock #: selection:stock.return.picking,invoice_state:0 @@ -415,12 +420,12 @@ msgstr "Складские перемещения, которые были об #: field:stock.inventory.line.split,use_exist:0 #: field:stock.move.split,use_exist:0 msgid "Existing Serial Numbers" -msgstr "" +msgstr "Существующие серийные номера" #. module: stock #: model:res.groups,name:stock.group_inventory_valuation msgid "Manage Inventory valuation" -msgstr "" +msgstr "Управление оценкой запасов" #. module: stock #: model:stock.location,name:stock.stock_location_suppliers @@ -451,7 +456,7 @@ msgstr "Внутреннее место хранения" #. module: stock #: view:stock.move:0 msgid "Split in Serial Number" -msgstr "" +msgstr "Разделить по серийным номерам" #. module: stock #: view:stock.location:0 @@ -471,7 +476,7 @@ msgstr "Задержка (в днях)" #. module: stock #: selection:stock.picking.out,state:0 msgid "Ready to Deliver" -msgstr "" +msgstr "Готово к доставке" #. module: stock #: model:ir.model,name:stock.model_action_traceability @@ -509,7 +514,7 @@ msgstr "В кол-ве" #. module: stock #: model:ir.actions.client,name:stock.action_client_warehouse_menu msgid "Open Warehouse Menu" -msgstr "" +msgstr "Открыть меню склада" #. module: stock #: field:stock.warehouse,lot_output_id:0 @@ -525,7 +530,7 @@ msgstr "Разделить на" #. module: stock #: field:stock.config.settings,module_product_expiry:0 msgid "Expiry date on serial numbers" -msgstr "" +msgstr "Срок годности по серийным номерам" #. module: stock #: field:stock.move,price_currency_id:0 @@ -549,7 +554,7 @@ msgstr "" #. module: stock #: field:stock.config.settings,group_stock_tracking_lot:0 msgid "Track serial number on logistic units (pallets)" -msgstr "" +msgstr "Отслеживать серийный номер по логистическим единицам (паллетам)" #. module: stock #: help:product.template,sale_delay:0 @@ -558,6 +563,8 @@ msgid "" "the delivery of the finished products. It's the time you promise to your " "customers." msgstr "" +"Средняя задержка в днях между подтверждением клиентского заказа и доставкой " +"завершенных товаров. Это время которое вы обещаете клиенту." #. module: stock #: code:addons/stock/product.py:196 @@ -583,6 +590,9 @@ msgid "" "Quantities, Units of Measure, Products and Locations cannot be modified on " "stock moves that have already been processed (except by the Administrator)." msgstr "" +"Количества, единицы измерения, товары и расположения не могут быть изменены " +"при движении остатков которые уже были выполнены (за исключением " +"Администратора)." #. module: stock #: help:report.stock.move,type:0 @@ -616,7 +626,7 @@ msgstr "Метки изделия" #: code:addons/stock/stock.py:1356 #, python-format msgid "Back order %s has been created." -msgstr "" +msgstr "Возврат %s был создан." #. module: stock #: model:ir.model,name:stock.model_report_stock_move @@ -628,11 +638,12 @@ msgstr "Статистика перемещений" msgid "" "Allows you to select and maintain different units of measure for products." msgstr "" +"Позволяет выбирать и поддерживать различные единицы измерения товаров." #. module: stock #: model:ir.model,name:stock.model_stock_report_tracklots msgid "Stock report by logistic serial number" -msgstr "" +msgstr "Отчет остатков по логистическим серийным номерам" #. module: stock #: help:product.product,track_outgoing:0 @@ -644,7 +655,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_products_moves msgid "Receive/Deliver Products" -msgstr "" +msgstr "Получить/доставить товары" #. module: stock #: field:stock.move,move_history_ids:0 @@ -687,6 +698,7 @@ msgstr "" msgid "" "Serial number quantity %d of %s is larger than available quantity (%d)!" msgstr "" +"Количество серийных номеров %d из %s больше допустимого количества (%d)!" #. module: stock #: report:stock.picking.list:0 @@ -696,7 +708,7 @@ msgstr "Заказ(Происхождение)" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_uom_categ_form_action msgid "Unit of Measure Categories" -msgstr "" +msgstr "Категории единиц измерения" #. module: stock #: report:lot.stock.overview:0 @@ -741,7 +753,7 @@ msgstr "Дополнительная ссылка" #. module: stock #: view:stock.partial.picking.line:0 msgid "Stock Picking Line" -msgstr "" +msgstr "Позиция комплектования" #. module: stock #: field:stock.location,complete_name:0 @@ -805,7 +817,7 @@ msgstr "Пакет" #. module: stock #: selection:stock.location.product,type:0 msgid "Analyse Current Inventory" -msgstr "" +msgstr "Анализировать текущую инвентаризацию" #. module: stock #: view:stock.move:0 @@ -877,12 +889,12 @@ msgstr "" #: field:stock.picking.in,message_summary:0 #: field:stock.picking.out,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Описание" #. module: stock #: view:product.category:0 msgid "Account Stock Properties" -msgstr "" +msgstr "Свойства счета запасов" #. module: stock #: sql_constraint:stock.picking:0 @@ -896,7 +908,7 @@ msgstr "Ссылка должна быть уникальна для каждо #: field:stock.picking.in,date:0 #: field:stock.picking.out,date:0 msgid "Time" -msgstr "" +msgstr "Время" #. module: stock #: code:addons/stock/product.py:447 @@ -912,7 +924,7 @@ msgstr "Срочно" #. module: stock #: selection:stock.picking.out,state:0 msgid "Delivered" -msgstr "" +msgstr "Доставлено" #. module: stock #: field:stock.move,move_dest_id:0 @@ -934,7 +946,7 @@ msgstr "Бракованная продукция" #. module: stock #: view:product.product:0 msgid "- update" -msgstr "" +msgstr "- обновить" #. module: stock #: report:stock.picking.list:0 @@ -972,7 +984,7 @@ msgstr "ИТ поставщики" #. module: stock #: view:stock.config.settings:0 msgid "Location & Warehouse" -msgstr "" +msgstr "Расположение и склад" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -987,11 +999,13 @@ msgid "" "You cannot cancel the picking as some moves have been done. You should " "cancel the picking lines." msgstr "" +"Вы не можете отменить комплектацию, так как некоторые перемещения уже были " +"сделаны. Вы должны отменить строки комплектации." #. module: stock #: field:stock.config.settings,decimal_precision:0 msgid "Decimal precision on weight" -msgstr "" +msgstr "Десятичная точность веса" #. module: stock #: view:stock.production.lot:0 @@ -1015,7 +1029,7 @@ msgstr "Будущие п/у" #: model:ir.ui.menu,name:stock.menu_action_picking_tree4 #: view:stock.picking.in:0 msgid "Incoming Shipments" -msgstr "Поступающие ТМЦ" +msgstr "Поступающие грузы" #. module: stock #: view:report.stock.inventory:0 @@ -1031,23 +1045,23 @@ msgstr "Место инвентаризации" #. module: stock #: constraint:stock.move:0 msgid "You must assign a serial number for this product." -msgstr "" +msgstr "Вы должны назначить серийный номер этому товару." #. module: stock #: code:addons/stock/stock.py:2255 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)" -msgstr "" +msgstr "Пожалуйста, определите журнал в категории товара: \"%s\" (id: %d)" #. module: stock #: view:stock.move:0 msgid "Details" -msgstr "" +msgstr "Подробности" #. module: stock #: selection:stock.picking,state:0 msgid "Ready to Transfer" -msgstr "" +msgstr "Готово к перемещению" #. module: stock #: report:lot.stock.overview:0 @@ -1087,7 +1101,7 @@ msgstr "Журнал" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_invoice_onshipping msgid "Create Draft Invoices" -msgstr "" +msgstr "Создать черновые счета" #. module: stock #: help:stock.picking,location_id:0 @@ -1105,7 +1119,7 @@ msgstr "" #. module: stock #: selection:stock.picking.in,state:0 msgid "Ready to Receive" -msgstr "" +msgstr "Готово к получению" #. module: stock #: view:stock.move:0 @@ -1131,17 +1145,17 @@ msgstr "Запасы по местам хранения" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_warehouse_mgmt msgid "Receive/Deliver By Orders" -msgstr "" +msgstr "Получить/доставить по заказам" #. module: stock #: view:stock.production.lot:0 msgid "Product Lots" -msgstr "" +msgstr "Партии товара" #. module: stock #: view:stock.picking:0 msgid "Reverse Transfer" -msgstr "" +msgstr "Обратное перемещение" #. module: stock #: field:stock.config.settings,group_uos:0 @@ -1172,6 +1186,8 @@ msgid "" "No products to return (only lines in Done state and not fully returned yet " "can be returned)!" msgstr "" +"Нет товаров к возврату (только строки со статусом Сделано и еще не полностью " +"возвращенные могут быть возвращенными)!" #. module: stock #: view:stock.picking:0 @@ -1203,12 +1219,12 @@ msgstr "Счёт оценки запасов" #. module: stock #: view:stock.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: stock #: field:product.template,loc_row:0 msgid "Row" -msgstr "" +msgstr "Ряд" #. module: stock #: field:product.template,property_stock_production:0 @@ -1219,7 +1235,7 @@ msgstr "Место производства" #: code:addons/stock/product.py:121 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)." -msgstr "" +msgstr "Пожалуйста, определите журнал в категории товара: \"%s\" (id: %d)." #. module: stock #: field:report.stock.lines.date,date:0 @@ -1298,12 +1314,12 @@ msgstr "" #. module: stock #: report:stock.picking.list:0 msgid "Internal Shipment :" -msgstr "" +msgstr "Внутренние отгрузки:" #. module: stock #: view:stock.inventory.line:0 msgid "Split Inventory Line" -msgstr "" +msgstr "Разделить строку инвентаризации" #. module: stock #: selection:stock.location,chained_auto_packing:0 @@ -1314,7 +1330,7 @@ msgstr "Ручное управление" #: view:report.stock.move:0 #: field:report.stock.move,picking_id:0 msgid "Shipment" -msgstr "" +msgstr "Доставка" #. module: stock #: view:stock.location:0 @@ -1337,7 +1353,7 @@ msgstr "" #: code:addons/stock/product.py:113 #, python-format msgid "Please specify company in Location." -msgstr "" +msgstr "Пожалуйста укажите компанию в месте хранения." #. module: stock #: view:stock.move:0 @@ -1374,7 +1390,7 @@ msgstr "Физическая инвентаризация" #: code:addons/stock/wizard/stock_move.py:214 #, python-format msgid "Processing Error!" -msgstr "" +msgstr "Ошибка обработки!" #. module: stock #: help:stock.location,chained_company_id:0 @@ -1399,12 +1415,12 @@ msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_locations_partner msgid "Partner Locations" -msgstr "Мета хранения партнера" +msgstr "Места хранения партнера" #. module: stock #: selection:stock.picking.in,state:0 msgid "Received" -msgstr "" +msgstr "Получено" #. module: stock #: view:report.stock.inventory:0 @@ -1417,7 +1433,7 @@ msgstr "Общее количество" #: field:stock.picking.in,min_date:0 #: field:stock.picking.out,min_date:0 msgid "Scheduled Time" -msgstr "" +msgstr "Запланированное время" #. module: stock #: model:ir.actions.act_window,name:stock.move_consume @@ -1428,7 +1444,7 @@ msgstr "Перемещение потребляемого" #. module: stock #: report:stock.picking.list:0 msgid "Delivery Order :" -msgstr "" +msgstr "Заказ доставки:" #. module: stock #: help:stock.location,chained_delay:0 @@ -1493,7 +1509,7 @@ msgstr "Ожидает другого перемещения" #: help:stock.change.product.qty,new_quantity:0 msgid "" "This quantity is expressed in the Default Unit of Measure of the product." -msgstr "" +msgstr "Это количество выражено в единицах измерения товара по умолчанию." #. module: stock #: help:stock.move,price_unit:0 @@ -1537,12 +1553,12 @@ msgstr "Вы можете удалить только черновик пере #: code:addons/stock/stock.py:1665 #, python-format msgid "You cannot move product %s to a location of type view %s." -msgstr "" +msgstr "Нельзя переместить товар %s в место хранения типа вид %s." #. module: stock #: view:stock.inventory:0 msgid "Split in serial numbers" -msgstr "" +msgstr "Разбить по серийным номерам" #. module: stock #: view:stock.move:0 @@ -1563,7 +1579,7 @@ msgstr "Черновик" #. module: stock #: field:product.template,sale_delay:0 msgid "Customer Lead Time" -msgstr "" +msgstr "Срок поставки" #. module: stock #: view:stock.picking:0 @@ -1574,7 +1590,7 @@ msgstr "Доп. инфо" #: code:addons/stock/stock.py:2648 #, python-format msgid "Missing partial picking data for move #%s." -msgstr "" +msgstr "Недостаточно данных частичного комплектования для перемещения №%s." #. module: stock #: field:stock.location.product,from_date:0 @@ -1627,7 +1643,7 @@ msgstr "Разделить" #. module: stock #: model:ir.actions.report.xml,name:stock.report_picking_list_out msgid "Delivery Slip" -msgstr "" +msgstr "Бланк доставки" #. module: stock #: model:ir.actions.act_window,name:stock.open_board_warehouse @@ -1732,6 +1748,16 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Уважаемые господа,\n" +"\n" +"Наши записи зафиксировали что некоторые платежи остаются неоплаченными. " +"Пожалуйста ознакомьтесь с подробностями ниже.\n" +"Если сумма уже была оплачена, пожалуйста проигнорируйте это оповещение. В " +"ином случае, пожалуйста перечислите нам всю сумму отображенную ниже.\n" +"Если у вас есть какие-либо замечания, пожалуйста свяжитесь с нами.\n" +"\n" +"Заранее благодарим за сотрудничество.\n" +"С наилучшими пожеланиями," #. module: stock #: help:stock.incoterms,active:0 @@ -1778,7 +1804,7 @@ msgstr "Последовательность во времени" #. module: stock #: field:stock.config.settings,group_uom:0 msgid "Manage different units of measure for products" -msgstr "" +msgstr "Управление различными единицами измерения товаров" #. module: stock #: model:ir.model,name:stock.model_stock_invoice_onshipping @@ -1789,7 +1815,7 @@ msgstr "Счёт по доставке" #: code:addons/stock/stock.py:2475 #, python-format msgid "Please provide a positive quantity to scrap." -msgstr "" +msgstr "Пожалуйста, предоставьте положительное количество брака." #. module: stock #: model:stock.location,name:stock.stock_location_shop1 @@ -1800,7 +1826,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Storage Location" -msgstr "" +msgstr "Место хранения" #. module: stock #: help:stock.partial.move.line,currency:0 @@ -1813,7 +1839,7 @@ msgstr "Валюта в которой выражена стоимость ед #: selection:stock.picking.in,move_type:0 #: selection:stock.picking.out,move_type:0 msgid "Partial" -msgstr "" +msgstr "Частично" #. module: stock #: selection:report.stock.inventory,month:0 @@ -1824,7 +1850,7 @@ msgstr "Сентябрь" #. module: stock #: view:product.product:0 msgid "days" -msgstr "" +msgstr "дней" #. module: stock #: model:ir.model,name:stock.model_report_stock_inventory @@ -1841,7 +1867,7 @@ msgstr "Плановый месяц" #: help:stock.picking.in,origin:0 #: help:stock.picking.out,origin:0 msgid "Reference of the document" -msgstr "" +msgstr "Ссылка на документ" #. module: stock #: view:stock.picking:0 @@ -1852,7 +1878,7 @@ msgstr "Является дозаказом" #. module: stock #: report:stock.picking.list:0 msgid "Incoming Shipment :" -msgstr "" +msgstr "Поступающий груз :" #. module: stock #: field:stock.location,valuation_out_account_id:0 @@ -1967,7 +1993,7 @@ msgstr "Доставленое кол-во" #. module: stock #: view:stock.partial.picking:0 msgid "Transfer Products" -msgstr "" +msgstr "Перенос товара" #. module: stock #: help:product.template,property_stock_inventory:0 @@ -2034,7 +2060,7 @@ msgstr "Дата" #: field:stock.picking.in,message_is_follower:0 #: field:stock.picking.out,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Подписан" #. module: stock #: view:report.stock.inventory:0 @@ -2051,7 +2077,7 @@ msgstr "Место хранения ТМЦ" #: code:addons/stock/wizard/stock_partial_picking.py:97 #, python-format msgid "_Deliver" -msgstr "" +msgstr "_Доставить" #. module: stock #: code:addons/stock/wizard/stock_inventory_merge.py:64 @@ -2094,7 +2120,7 @@ msgstr "Номер партий" #: model:ir.actions.act_window,name:stock.action_deliver_move #: view:product.product:0 msgid "Deliveries" -msgstr "" +msgstr "Доставки" #. module: stock #: model:ir.actions.act_window,help:stock.action_reception_picking_move @@ -2221,7 +2247,7 @@ msgstr "" #. module: stock #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product." -msgstr "" +msgstr "Вы пытаетесь назначить партию не из такого же товара." #. module: stock #: field:report.stock.move,day_diff1:0 @@ -2236,7 +2262,7 @@ msgstr "Цена" #. module: stock #: field:stock.config.settings,module_stock_invoice_directly:0 msgid "Create and open the invoice when the user finish a delivery order" -msgstr "" +msgstr "Создать и открыть счет когда пользователь завершит заказ на доставку" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking_memory @@ -2246,7 +2272,7 @@ msgstr "stock.return.picking.memory" #. module: stock #: field:stock.config.settings,group_stock_inventory_valuation:0 msgid "Generate accounting entries per stock movement" -msgstr "" +msgstr "Генерировать с проводки по складским перемещениям" #. module: stock #: code:addons/stock/product.py:449 @@ -2290,7 +2316,7 @@ msgstr "Название" #. module: stock #: report:stock.picking.list:0 msgid "Supplier Address :" -msgstr "" +msgstr "Адрес поставщика:" #. module: stock #: view:stock.inventory.line:0 @@ -2322,24 +2348,24 @@ msgstr "Места хранения заказчиков" #: code:addons/stock/stock.py:2858 #, python-format msgid "User Error!" -msgstr "" +msgstr "Ошибка пользователя!" #. module: stock #: view:stock.partial.picking:0 msgid "Stock partial Picking" -msgstr "" +msgstr "Частичное комплектование" #. module: stock #: view:stock.picking:0 msgid "Create Invoice/Refund" -msgstr "" +msgstr "Создать счет/возврат" #. module: stock #: help:stock.picking,message_ids:0 #: help:stock.picking.in,message_ids:0 #: help:stock.picking.out,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: stock #: view:report.stock.inventory:0 @@ -2378,7 +2404,7 @@ msgstr "Создание" #: code:addons/stock/stock.py:1776 #, python-format msgid "Operation forbidden !" -msgstr "" +msgstr "Операция запрещена!" #. module: stock #: view:report.stock.inventory:0 @@ -2409,7 +2435,7 @@ msgstr "Тип доставки определяет приходящие или #. module: stock #: view:stock.config.settings:0 msgid "Accounting" -msgstr "" +msgstr "Учет" #. module: stock #: model:ir.ui.menu,name:stock.menu_warehouse_config @@ -2480,19 +2506,19 @@ msgstr "Единицы измерения" #. module: stock #: field:stock.config.settings,group_stock_multiple_locations:0 msgid "Manage multiple locations and warehouses" -msgstr "" +msgstr "Управлять местами хранения и складами" #. module: stock #: field:stock.config.settings,group_stock_production_lot:0 msgid "Track serial number on products" -msgstr "" +msgstr "Отслеживать серийные номера товара" #. module: stock #: field:stock.picking,message_unread:0 #: field:stock.picking.in,message_unread:0 #: field:stock.picking.out,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные" #. module: stock #: help:stock.production.lot,stock_available:0 @@ -2521,7 +2547,7 @@ msgstr "Партии" #. module: stock #: view:stock.partial.picking:0 msgid "_Transfer" -msgstr "" +msgstr "_Перенос" #. module: stock #: selection:report.stock.move,type:0 @@ -2558,7 +2584,7 @@ msgstr "Будущее Кол-во" #. module: stock #: model:res.groups,name:stock.group_production_lot msgid "Manage Serial Numbers" -msgstr "" +msgstr "Управлять серийными номерами" #. module: stock #: field:stock.move,note:0 @@ -2571,7 +2597,7 @@ msgstr "Примечания" #. module: stock #: selection:stock.picking,state:0 msgid "Transferred" -msgstr "" +msgstr "Перемещено" #. module: stock #: report:lot.stock.overview:0 @@ -2592,7 +2618,7 @@ msgstr "Тип поставки" #. module: stock #: view:stock.move:0 msgid "Process Partially" -msgstr "" +msgstr "Обработать частями" #. module: stock #: view:stock.move:0 @@ -2680,7 +2706,7 @@ msgstr "Кол-во п/у" #. module: stock #: model:ir.model,name:stock.model_stock_config_settings msgid "stock.config.settings" -msgstr "" +msgstr "stock.config.settings" #. module: stock #: view:stock.production.lot:0 @@ -2706,7 +2732,7 @@ msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_4 msgid "Big Suppliers" -msgstr "" +msgstr "Большие поставщики" #. module: stock #: model:ir.actions.act_window,help:stock.action_stock_inventory_report @@ -2737,7 +2763,7 @@ msgstr "Создать" #. module: stock #: field:stock.change.product.qty,new_quantity:0 msgid "New Quantity on Hand" -msgstr "" +msgstr "Новое количество на руках" #. module: stock #: field:stock.move,priority:0 @@ -2787,7 +2813,7 @@ msgstr "Отменить инвентаризацию" #. module: stock #: field:stock.config.settings,group_product_variant:0 msgid "Support multiple variants per products " -msgstr "" +msgstr "Поддержка вариантов товаров " #. module: stock #: code:addons/stock/stock.py:2246 @@ -2811,7 +2837,7 @@ msgstr "Определенное место хранения" #. module: stock #: field:report.stock.inventory,scrap_location:0 msgid "scrap" -msgstr "" +msgstr "брак" #. module: stock #: code:addons/stock/stock.py:1891 @@ -2824,17 +2850,17 @@ msgstr "" #. module: stock #: report:stock.inventory.move:0 msgid "Manual Quantity" -msgstr "" +msgstr "Количество вручную" #. module: stock #: view:product.product:0 msgid "On hand:" -msgstr "" +msgstr "На руках:" #. module: stock #: model:ir.model,name:stock.model_stock_report_prodlots msgid "Stock report by serial number" -msgstr "" +msgstr "Отчет по остаткам по серийным номерам" #. module: stock #: selection:report.stock.inventory,month:0 @@ -2864,7 +2890,7 @@ msgstr "" #: code:addons/stock/wizard/stock_invoice_onshipping.py:112 #, python-format msgid "Please create Invoices." -msgstr "" +msgstr "Пожалуйста, создайте счета" #. module: stock #: help:stock.config.settings,module_product_expiry:0 @@ -2882,7 +2908,7 @@ msgstr "" #: code:addons/stock/wizard/stock_partial_picking.py:174 #, python-format msgid "Please provide proper Quantity." -msgstr "" +msgstr "Пожалуйста предоставьте правильное количество." #. module: stock #: model:ir.actions.report.xml,name:stock.report_product_history @@ -2922,7 +2948,7 @@ msgstr "Сделать доступным принудительно" #. module: stock #: field:product.template,loc_rack:0 msgid "Rack" -msgstr "" +msgstr "Полка" #. module: stock #: model:ir.actions.act_window,name:stock.move_scrap @@ -2953,7 +2979,7 @@ msgstr "Снабжение" #: model:ir.ui.menu,name:stock.menu_action_pdct_out #, python-format msgid "Deliver Products" -msgstr "Отгрузка ТМЦ" +msgstr "Отгрузка товара" #. module: stock #: view:stock.location.product:0 @@ -3042,7 +3068,7 @@ msgstr "Доступные запасы" #. module: stock #: field:stock.report.tracklots,tracking_id:0 msgid "Logistic Serial Number" -msgstr "" +msgstr "Логистический серийный номер" #. module: stock #: field:stock.production.lot.revision,date:0 @@ -3095,7 +3121,7 @@ msgstr "" #: code:addons/stock/wizard/stock_partial_picking.py:95 #, python-format msgid "_Receive" -msgstr "" +msgstr "_Принять" #. module: stock #: field:stock.incoterms,active:0 @@ -3234,7 +3260,7 @@ msgstr "Название ревизии" #. module: stock #: model:res.groups,name:stock.group_tracking_lot msgid "Manage Logistic Serial Numbers" -msgstr "" +msgstr "Управление логистическими серийными номерами" #. module: stock #: view:stock.inventory:0 @@ -3260,7 +3286,7 @@ msgstr "" #: code:addons/stock/stock.py:2496 #, python-format msgid "%s %s %s has been moved to scrap." -msgstr "" +msgstr "%s %s %s было перемещено в брак." #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_out @@ -3315,14 +3341,14 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Confirm & Receive" -msgstr "" +msgstr "Подтвердить и получить" #. module: stock #: field:stock.picking,origin:0 #: field:stock.picking.in,origin:0 #: field:stock.picking.out,origin:0 msgid "Source Document" -msgstr "" +msgstr "Исходный документ" #. module: stock #: selection:stock.move,priority:0 @@ -3332,7 +3358,7 @@ msgstr "Не срочно" #. module: stock #: view:stock.move:0 msgid "Scheduled" -msgstr "" +msgstr "Запланировано" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -3348,7 +3374,7 @@ msgstr "Ответственный" #. module: stock #: view:stock.move:0 msgid "Process Entirely" -msgstr "" +msgstr "Обработать полностью" #. module: stock #: help:product.template,property_stock_procurement:0 @@ -3379,7 +3405,7 @@ msgstr "Запасы" #: code:addons/stock/wizard/stock_return_picking.py:219 #, python-format msgid "Returned Picking" -msgstr "" +msgstr "Возвращенное комплектование" #. module: stock #: model:ir.model,name:stock.model_product_product @@ -3445,12 +3471,12 @@ msgstr "Назначенные внутренние перемещения" #: code:addons/stock/stock.py:790 #, python-format msgid "You cannot process picking without stock moves." -msgstr "" +msgstr "Вы не можете обработать комплектацию без движений остатков." #. module: stock #: field:stock.production.lot,move_ids:0 msgid "Moves for this serial number" -msgstr "" +msgstr "Движения для этого серийного номера" #. module: stock #: field:stock.move,product_uos:0 @@ -3487,7 +3513,7 @@ msgstr "Ряд (X)" #. module: stock #: field:stock.config.settings,group_stock_packaging:0 msgid "Allow to define several packaging methods on products" -msgstr "" +msgstr "Позволяет определять несколько методов упаковки продуктов" #. module: stock #: model:stock.location,name:stock.stock_location_7 @@ -3538,7 +3564,7 @@ msgstr "ТМЦ по местам хранения" #. module: stock #: view:stock.config.settings:0 msgid "Logistic" -msgstr "" +msgstr "Логистика" #. module: stock #: model:ir.actions.act_window,help:stock.action_location_form @@ -3584,7 +3610,7 @@ msgstr "Полка 1" #: help:stock.picking.in,date:0 #: help:stock.picking.out,date:0 msgid "Creation time, usually the time of the order." -msgstr "" +msgstr "Время создания, обычно время заказа." #. module: stock #: field:stock.tracking,name:0 @@ -3655,7 +3681,7 @@ msgstr "Все сразу" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_open msgid "Inventory Move" -msgstr "" +msgstr "Инвентаризац. перемещение" #. module: stock #: code:addons/stock/product.py:475 @@ -3688,7 +3714,7 @@ msgstr "" #: model:ir.actions.act_window,name:stock.action_stock_config_settings #: view:stock.config.settings:0 msgid "Configure Warehouse" -msgstr "" +msgstr "Настроить склад" #. module: stock #: view:stock.picking:0 @@ -3716,7 +3742,7 @@ msgstr "Даты инвентаризаций" #: model:ir.actions.act_window,name:stock.action_receive_move #: view:product.product:0 msgid "Receptions" -msgstr "" +msgstr "Поступления" #. module: stock #: view:report.stock.move:0 @@ -3751,7 +3777,7 @@ msgstr "Компания" #: field:stock.move.consume,product_uom:0 #: field:stock.move.scrap,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Ед. изм. товара" #. module: stock #: view:stock.move:0 @@ -3784,7 +3810,7 @@ msgstr "Инвентаризация партии" #: field:stock.production.lot.revision,lot_id:0 #: field:stock.report.prodlots,prodlot_id:0 msgid "Serial Number" -msgstr "" +msgstr "Серийный номер" #. module: stock #: model:ir.model,name:stock.model_stock_partial_picking @@ -3831,7 +3857,7 @@ msgstr "" #: field:stock.picking.in,message_ids:0 #: field:stock.picking.out,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: stock #: model:stock.location,name:stock.stock_location_8 @@ -3970,7 +3996,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree #: view:stock.picking.out:0 msgid "Delivery Orders" -msgstr "Заказы на доставку" +msgstr "Заказы доставки" #. module: stock #: view:stock.picking:0 @@ -3980,7 +4006,7 @@ msgstr "Уже обработанные заказы доставки" #. module: stock #: field:product.template,loc_case:0 msgid "Case" -msgstr "" +msgstr "Место" #. module: stock #: selection:report.stock.inventory,state:0 @@ -4023,13 +4049,13 @@ msgstr "" #: field:stock.picking.in,message_follower_ids:0 #: field:stock.picking.out,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Подписчики" #. module: stock #: code:addons/stock/stock.py:2585 #, python-format msgid "Cannot consume a move with negative or zero quantity." -msgstr "" +msgstr "Нельзя израсходовать негативное или нулевое количество." #. module: stock #: help:stock.config.settings,decimal_precision:0 @@ -4069,7 +4095,7 @@ msgstr "Категория ТМЦ" #. module: stock #: view:stock.move:0 msgid "Serial Number" -msgstr "" +msgstr "Серийный номер" #. module: stock #: view:stock.invoice.onshipping:0 @@ -4089,7 +4115,7 @@ msgstr "Настройки" #. module: stock #: model:res.groups,name:stock.group_locations msgid "Manage Multiple Locations and Warehouses" -msgstr "" +msgstr "Управлять местами хранения и складами" #. module: stock #: help:stock.change.standard.price,new_price:0 @@ -4110,7 +4136,7 @@ msgstr "" #: code:addons/stock/stock.py:2811 #, python-format msgid "INV:" -msgstr "" +msgstr "ИНВ:" #. module: stock #: help:stock.config.settings,module_stock_invoice_directly:0 @@ -4189,7 +4215,7 @@ msgstr "Автопроверка" #: code:addons/stock/stock.py:1821 #, python-format msgid "Insufficient Stock for Serial Number !" -msgstr "" +msgstr "Недостаточный запас для серийного номера !" #. module: stock #: model:ir.model,name:stock.model_product_template @@ -4248,12 +4274,12 @@ msgstr "" #: model:ir.actions.act_window,name:stock.action_reception_picking_move #: model:ir.ui.menu,name:stock.menu_action_pdct_in msgid "Incoming Products" -msgstr "" +msgstr "Поступающие товары" #. module: stock #: view:product.product:0 msgid "update" -msgstr "" +msgstr "обновить" #. module: stock #: view:stock.change.product.qty:0 @@ -4272,7 +4298,7 @@ msgstr "" #: view:stock.return.picking:0 #: view:stock.split.into:0 msgid "or" -msgstr "" +msgstr "или" #. module: stock #: selection:stock.picking,invoice_state:0 @@ -4292,7 +4318,7 @@ msgstr "Информация" #: code:addons/stock/stock.py:1199 #, python-format msgid "You cannot remove the picking which is in %s state!" -msgstr "" +msgstr "Вы не можете удалить комплектование в состоянии %s!" #. module: stock #: help:res.partner,property_stock_customer:0 @@ -4326,7 +4352,7 @@ msgstr "Авто-комплектование" #. module: stock #: report:stock.picking.list:0 msgid "Customer Address :" -msgstr "" +msgstr "Адрес заказчика:" #. module: stock #: field:stock.location,chained_auto_packing:0 @@ -4382,7 +4408,7 @@ msgstr "Вы действительно хотите объединить эти #. module: stock #: view:stock.picking.out:0 msgid "Date of Delivery" -msgstr "" +msgstr "Срок доставки" #. module: stock #: field:stock.location,posy:0 @@ -4419,7 +4445,7 @@ msgstr "" #: code:addons/stock/wizard/stock_return_picking.py:205 #, python-format msgid "Please specify at least one non-zero quantity." -msgstr "" +msgstr "Пожалуйста укажите как минимум одно ненулевое количество." #. module: stock #: field:stock.fill.inventory,set_stock_zero:0 @@ -4473,7 +4499,7 @@ msgstr "Январь" #. module: stock #: constraint:stock.move:0 msgid "You cannot move products from or to a location of the type view." -msgstr "" +msgstr "Нельзя переместить товар в/из место хранения с типом вид." #. module: stock #: help:stock.config.settings,group_stock_production_lot:0 @@ -4489,6 +4515,7 @@ msgstr "" msgid "" "No product in this location. Please select a location in the product form." msgstr "" +"Нет товаров в этом месте хранения. Пожалуйста выберите место в форме товара." #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open @@ -4575,7 +4602,7 @@ msgstr "Префикс" #: view:stock.move:0 #: view:stock.move.split:0 msgid "Split in Serial Numbers" -msgstr "" +msgstr "Разбить по серийным номерам" #. module: stock #: help:product.template,property_stock_account_input:0 @@ -4623,12 +4650,12 @@ msgstr "" #. module: stock #: view:product.product:0 msgid "Delays" -msgstr "" +msgstr "Задержки" #. module: stock #: report:stock.picking.list:0 msgid "Schedule Date" -msgstr "" +msgstr "Запланировать дату" #. module: stock #: field:stock.location.product,to_date:0 @@ -4679,12 +4706,12 @@ msgstr "Май" #: code:addons/stock/product.py:110 #, python-format msgid "No difference between standard price and new price!" -msgstr "" +msgstr "Нет разницы между стандартной ценой и новой ценой!" #. module: stock #: view:stock.picking.out:0 msgid "Deliver" -msgstr "Доставка" +msgstr "Доставить" #. module: stock #: field:product.product,delivery_count:0 @@ -4775,7 +4802,7 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Date of Reception" -msgstr "" +msgstr "Дата приема" #. module: stock #: help:stock.config.settings,group_stock_multiple_locations:0 @@ -4787,7 +4814,7 @@ msgstr "" #. module: stock #: view:stock.picking:0 msgid "Confirm & Transfer" -msgstr "" +msgstr "Подтвердить и переместить" #. module: stock #: field:stock.location,scrap_location:0 @@ -4883,7 +4910,7 @@ msgstr "Опционально: следующее перемещение ТМЦ #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "" +msgstr "Печать бланка доставки" #. module: stock #: view:report.stock.inventory:0 @@ -4906,4 +4933,4 @@ msgstr "Готовые к обработке" #. module: stock #: report:stock.picking.list:0 msgid "Warehouse Address :" -msgstr "" +msgstr "Адрес склада:" diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 065a18adda4..c1fb265f11f 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-17 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: stock diff --git a/addons/stock/i18n/sq.po b/addons/stock/i18n/sq.po index 5dcdd15e913..f8896c6311c 100644 --- a/addons/stock/i18n/sq.po +++ b/addons/stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:34+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr.po b/addons/stock/i18n/sr.po index 9454ae4a98a..31c1920ce6e 100644 --- a/addons/stock/i18n/sr.po +++ b/addons/stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr@latin.po b/addons/stock/i18n/sr@latin.po index d35a2fe5115..013316f7cdd 100644 --- a/addons/stock/i18n/sr@latin.po +++ b/addons/stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sv.po b/addons/stock/i18n/sv.po index 4825e9d4060..1cdf3c757e2 100644 --- a/addons/stock/i18n/sv.po +++ b/addons/stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/th.po b/addons/stock/i18n/th.po index 2a6ffc9b8d3..0a62a1716ea 100644 --- a/addons/stock/i18n/th.po +++ b/addons/stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tlh.po b/addons/stock/i18n/tlh.po index 37ea82d6e28..b84647987f4 100644 --- a/addons/stock/i18n/tlh.po +++ b/addons/stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:08+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index cd636e4e4a3..e04c20cbdfe 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/uk.po b/addons/stock/i18n/uk.po index 5c65d0729e0..59c8b0061e1 100644 --- a/addons/stock/i18n/uk.po +++ b/addons/stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/vi.po b/addons/stock/i18n/vi.po index 1a4c3d882b2..94b02491987 100644 --- a/addons/stock/i18n/vi.po +++ b/addons/stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index cea1eaa402e..0e9954661f9 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:06+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index d65127093e6..7e6452ce854 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:35+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock_invoice_directly/i18n/ar.po b/addons/stock_invoice_directly/i18n/ar.po index 16d4505e042..8c5855839e4 100644 --- a/addons/stock_invoice_directly/i18n/ar.po +++ b/addons/stock_invoice_directly/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bg.po b/addons/stock_invoice_directly/i18n/bg.po index 8d25db633ce..a5ddf2ce2eb 100644 --- a/addons/stock_invoice_directly/i18n/bg.po +++ b/addons/stock_invoice_directly/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bs.po b/addons/stock_invoice_directly/i18n/bs.po index 957268dcc74..6e4a86dd7ba 100644 --- a/addons/stock_invoice_directly/i18n/bs.po +++ b/addons/stock_invoice_directly/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ca.po b/addons/stock_invoice_directly/i18n/ca.po index 5f8d7d4b92e..7428f71346a 100644 --- a/addons/stock_invoice_directly/i18n/ca.po +++ b/addons/stock_invoice_directly/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/cs.po b/addons/stock_invoice_directly/i18n/cs.po index 48238dec688..196ea21ac4c 100644 --- a/addons/stock_invoice_directly/i18n/cs.po +++ b/addons/stock_invoice_directly/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/da.po b/addons/stock_invoice_directly/i18n/da.po index daf295c790c..92fca37ee11 100644 --- a/addons/stock_invoice_directly/i18n/da.po +++ b/addons/stock_invoice_directly/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index a0765c30aed..155da2cbafa 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/el.po b/addons/stock_invoice_directly/i18n/el.po index 5dcbd33d7fa..eb633daef80 100644 --- a/addons/stock_invoice_directly/i18n/el.po +++ b/addons/stock_invoice_directly/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es.po b/addons/stock_invoice_directly/i18n/es.po index 86e92e205a7..21ac91e1301 100644 --- a/addons/stock_invoice_directly/i18n/es.po +++ b/addons/stock_invoice_directly/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index e9ab5dd9bf5..723c7fdac34 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CL.po b/addons/stock_invoice_directly/i18n/es_CL.po index d5dc3483df6..20687e1284b 100644 --- a/addons/stock_invoice_directly/i18n/es_CL.po +++ b/addons/stock_invoice_directly/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CR.po b/addons/stock_invoice_directly/i18n/es_CR.po index 8bf56da1875..a879fdef8c9 100644 --- a/addons/stock_invoice_directly/i18n/es_CR.po +++ b/addons/stock_invoice_directly/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/et.po b/addons/stock_invoice_directly/i18n/et.po index acfe3b34919..5ca360beb9a 100644 --- a/addons/stock_invoice_directly/i18n/et.po +++ b/addons/stock_invoice_directly/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fi.po b/addons/stock_invoice_directly/i18n/fi.po index 91113f1f32b..3545bf0684d 100644 --- a/addons/stock_invoice_directly/i18n/fi.po +++ b/addons/stock_invoice_directly/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index 4717a2eafda..2f543b39bb0 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/gl.po b/addons/stock_invoice_directly/i18n/gl.po index 7817cc0b304..279eb7e1f72 100644 --- a/addons/stock_invoice_directly/i18n/gl.po +++ b/addons/stock_invoice_directly/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hr.po b/addons/stock_invoice_directly/i18n/hr.po index 72fb1d5c3a4..5b2a3092d61 100644 --- a/addons/stock_invoice_directly/i18n/hr.po +++ b/addons/stock_invoice_directly/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hu.po b/addons/stock_invoice_directly/i18n/hu.po index e2b5768e93c..ee29141b4c8 100644 --- a/addons/stock_invoice_directly/i18n/hu.po +++ b/addons/stock_invoice_directly/i18n/hu.po @@ -14,10 +14,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking msgid "Partial Picking Processing Wizard" -msgstr "" +msgstr "Rész kiválogatási feldolgozás varázsló" diff --git a/addons/stock_invoice_directly/i18n/id.po b/addons/stock_invoice_directly/i18n/id.po index 700506a4a09..c732c60273c 100644 --- a/addons/stock_invoice_directly/i18n/id.po +++ b/addons/stock_invoice_directly/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/it.po b/addons/stock_invoice_directly/i18n/it.po index 5b0cf344370..0cde601b839 100644 --- a/addons/stock_invoice_directly/i18n/it.po +++ b/addons/stock_invoice_directly/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ja.po b/addons/stock_invoice_directly/i18n/ja.po index 2b52dce7333..c5ca602ab09 100644 --- a/addons/stock_invoice_directly/i18n/ja.po +++ b/addons/stock_invoice_directly/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ko.po b/addons/stock_invoice_directly/i18n/ko.po index 1dad053f82d..1aa931a7c4d 100644 --- a/addons/stock_invoice_directly/i18n/ko.po +++ b/addons/stock_invoice_directly/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lt.po b/addons/stock_invoice_directly/i18n/lt.po index 1f557f3adda..a196a9f5642 100644 --- a/addons/stock_invoice_directly/i18n/lt.po +++ b/addons/stock_invoice_directly/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lv.po b/addons/stock_invoice_directly/i18n/lv.po index 519e4cbfc92..a76fed1e993 100644 --- a/addons/stock_invoice_directly/i18n/lv.po +++ b/addons/stock_invoice_directly/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mk.po b/addons/stock_invoice_directly/i18n/mk.po index 96f3434fedd..f6426d0d4c6 100644 --- a/addons/stock_invoice_directly/i18n/mk.po +++ b/addons/stock_invoice_directly/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mn.po b/addons/stock_invoice_directly/i18n/mn.po index 84f5e24dffb..ec8475bcce8 100644 --- a/addons/stock_invoice_directly/i18n/mn.po +++ b/addons/stock_invoice_directly/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nb.po b/addons/stock_invoice_directly/i18n/nb.po index 2956b7a11ed..a7d75a3db35 100644 --- a/addons/stock_invoice_directly/i18n/nb.po +++ b/addons/stock_invoice_directly/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl.po b/addons/stock_invoice_directly/i18n/nl.po index 14ebe3a2c29..04e7f835ac7 100644 --- a/addons/stock_invoice_directly/i18n/nl.po +++ b/addons/stock_invoice_directly/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index c58e36c3c6f..00205889cd0 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/oc.po b/addons/stock_invoice_directly/i18n/oc.po index bd554d2c357..7779954a663 100644 --- a/addons/stock_invoice_directly/i18n/oc.po +++ b/addons/stock_invoice_directly/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pl.po b/addons/stock_invoice_directly/i18n/pl.po index 9e555f460d1..741977b9c31 100644 --- a/addons/stock_invoice_directly/i18n/pl.po +++ b/addons/stock_invoice_directly/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt.po b/addons/stock_invoice_directly/i18n/pt.po index 4231c16109b..88b58ee128c 100644 --- a/addons/stock_invoice_directly/i18n/pt.po +++ b/addons/stock_invoice_directly/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index cf5816ac6a3..e0ce74a2085 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ro.po b/addons/stock_invoice_directly/i18n/ro.po index 5097028bd9e..4bb8cbca322 100644 --- a/addons/stock_invoice_directly/i18n/ro.po +++ b/addons/stock_invoice_directly/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ru.po b/addons/stock_invoice_directly/i18n/ru.po index e66c55ddb5b..fecd06a8a4a 100644 --- a/addons/stock_invoice_directly/i18n/ru.po +++ b/addons/stock_invoice_directly/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sl.po b/addons/stock_invoice_directly/i18n/sl.po index 8a7f785db10..6a9bc44986e 100644 --- a/addons/stock_invoice_directly/i18n/sl.po +++ b/addons/stock_invoice_directly/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:18+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sq.po b/addons/stock_invoice_directly/i18n/sq.po index 8ccd715f42b..5f34b521cc1 100644 --- a/addons/stock_invoice_directly/i18n/sq.po +++ b/addons/stock_invoice_directly/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr.po b/addons/stock_invoice_directly/i18n/sr.po index aaf4ec7e7df..25a02eebb1a 100644 --- a/addons/stock_invoice_directly/i18n/sr.po +++ b/addons/stock_invoice_directly/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr@latin.po b/addons/stock_invoice_directly/i18n/sr@latin.po index 7aefabbaf65..5f7b73ba0f0 100644 --- a/addons/stock_invoice_directly/i18n/sr@latin.po +++ b/addons/stock_invoice_directly/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sv.po b/addons/stock_invoice_directly/i18n/sv.po index a513c03659d..d5ed6ea718a 100644 --- a/addons/stock_invoice_directly/i18n/sv.po +++ b/addons/stock_invoice_directly/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index 53e30ebb642..5d0d7a629b6 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/uk.po b/addons/stock_invoice_directly/i18n/uk.po index 15e4f396806..ad7bf9b6a3e 100644 --- a/addons/stock_invoice_directly/i18n/uk.po +++ b/addons/stock_invoice_directly/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/vi.po b/addons/stock_invoice_directly/i18n/vi.po index a4146f78f8f..a1b40fec55d 100644 --- a/addons/stock_invoice_directly/i18n/vi.po +++ b/addons/stock_invoice_directly/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 84c1ff2a90b..94fe4431e0b 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index d88cd3567c6..e78c799ce0c 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_location/i18n/ar.po b/addons/stock_location/i18n/ar.po index 9125b5aed7a..ff4bbd9a6f9 100644 --- a/addons/stock_location/i18n/ar.po +++ b/addons/stock_location/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bg.po b/addons/stock_location/i18n/bg.po index baf87c433b5..cdb52c910af 100644 --- a/addons/stock_location/i18n/bg.po +++ b/addons/stock_location/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bs.po b/addons/stock_location/i18n/bs.po index 6bd7b065861..1e82ed503e6 100644 --- a/addons/stock_location/i18n/bs.po +++ b/addons/stock_location/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ca.po b/addons/stock_location/i18n/ca.po index b0f32d3217e..a66dd083e3a 100644 --- a/addons/stock_location/i18n/ca.po +++ b/addons/stock_location/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/cs.po b/addons/stock_location/i18n/cs.po index 933fda1f8f5..99d5fd9a84e 100644 --- a/addons/stock_location/i18n/cs.po +++ b/addons/stock_location/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/da.po b/addons/stock_location/i18n/da.po index 5cc36bb34d2..f4109749a6e 100644 --- a/addons/stock_location/i18n/da.po +++ b/addons/stock_location/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index cbd045bb898..5d5389236f1 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/el.po b/addons/stock_location/i18n/el.po index 4be4fe1473c..4011111596b 100644 --- a/addons/stock_location/i18n/el.po +++ b/addons/stock_location/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_location/i18n/es.po b/addons/stock_location/i18n/es.po index 5ffbf8c7e3b..c573de0a3b6 100644 --- a/addons/stock_location/i18n/es.po +++ b/addons/stock_location/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 @@ -317,12 +317,12 @@ msgstr "" #. module: stock_location #: view:product.product:0 msgid "Push Flow" -msgstr "" +msgstr "Flujo \"push\" (optimización local)" #. module: stock_location #: view:product.product:0 msgid "Pull Flow" -msgstr "" +msgstr "Flujo \"pull\" (optimización global)" #. module: stock_location #: model:ir.model,name:stock_location.model_procurement_order diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index 59d124b7715..3692b4edf65 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CL.po b/addons/stock_location/i18n/es_CL.po index fce4e98ed3a..68c667a1f31 100644 --- a/addons/stock_location/i18n/es_CL.po +++ b/addons/stock_location/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CR.po b/addons/stock_location/i18n/es_CR.po index 818ac9f4440..1417d6f1fb9 100644 --- a/addons/stock_location/i18n/es_CR.po +++ b/addons/stock_location/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/et.po b/addons/stock_location/i18n/et.po index 82371d50cb8..1704e5e3152 100644 --- a/addons/stock_location/i18n/et.po +++ b/addons/stock_location/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fi.po b/addons/stock_location/i18n/fi.po index fbf816d5871..046aa242d92 100644 --- a/addons/stock_location/i18n/fi.po +++ b/addons/stock_location/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fr.po b/addons/stock_location/i18n/fr.po index 3c80af578f9..28100bffd05 100644 --- a/addons/stock_location/i18n/fr.po +++ b/addons/stock_location/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/gl.po b/addons/stock_location/i18n/gl.po index db7b16b6eb6..7d118d86198 100644 --- a/addons/stock_location/i18n/gl.po +++ b/addons/stock_location/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hr.po b/addons/stock_location/i18n/hr.po index 0a15e612043..cba45d91f3d 100644 --- a/addons/stock_location/i18n/hr.po +++ b/addons/stock_location/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index 5be843f4263..217ccc6678e 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -13,24 +13,25 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\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 "" +"Régebben tudtam, melyik vállalathoz tartozik a leválogatás és készletmozgás." #. module: stock_location #: selection:product.pulled.flow,picking_type:0 #: selection:stock.location.path,picking_type:0 msgid "Sending Goods" -msgstr "Árucikkek küldése" +msgstr "Áruk küldése" #. module: stock_location #: view:product.product:0 msgid "Pulled Paths" -msgstr "" +msgstr "Kihúzási útvonalak" #. module: stock_location #: selection:product.pulled.flow,type_proc:0 @@ -40,12 +41,12 @@ msgstr "Mozgatás" #. module: stock_location #: model:ir.model,name:stock_location.model_stock_location_path msgid "Pushed Flows" -msgstr "" +msgstr "Belökési folyamatok" #. module: stock_location #: selection:stock.location.path,auto:0 msgid "Automatic No Step Added" -msgstr "" +msgstr "Nincs automatikus következő lépcső hozzáadva" #. module: stock_location #: field:product.pulled.flow,location_src_id:0 @@ -56,18 +57,18 @@ msgstr "Forráshely" #. module: stock_location #: help:product.pulled.flow,cancel_cascade:0 msgid "Allow you to cancel moves related to the product pull flow" -msgstr "" +msgstr "Lehetővé teszi mozgás eltörlését a termék kihúzási folyamatából" #. module: stock_location #: model:ir.model,name:stock_location.model_product_pulled_flow #: field:product.product,flow_pull_ids:0 msgid "Pulled Flows" -msgstr "" +msgstr "Kihúzási folyamatok" #. module: stock_location #: help:product.pulled.flow,location_src_id:0 msgid "Location used by Destination Location to supply" -msgstr "" +msgstr "Helység amit a beszerzés rendeltetési helyéhez használ" #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -82,6 +83,8 @@ msgid "" "Pulled procurement coming from original location %s, pull rule %s, via " "original Procurement %s (#%d)" msgstr "" +"Kihúzási beszerzés ami az %s eredeti állomásról jön, kihúzási szabály %s, az " +"eredeti beszerzéssel %s (#%d)" #. module: stock_location #: model:ir.model,name:stock_location.model_stock_location @@ -104,6 +107,12 @@ msgid "" "move has to be validated by a worker. With 'Automatic No Step Added', the " "location is replaced in the original move." msgstr "" +"Ez a termék elérési útját határozza meg a helymeghatározó fában nyomon " +"követhető.\n" +"Az 'Automatikus mozgás' értéke létrehoz egy raktári mozgást a meglévő " +"automatikus érvényesítése után. A 'Kézi vezérlés'-nél, a raktári mozgást " +"érvényesítenie kell egy munkavállalónak. Az 'Nincs automatikus következő " +"lépcső hozzáadva', a raktárhely ki lesz cserélve az első mozgásnál." #. module: stock_location #: view:product.product:0 @@ -113,7 +122,7 @@ msgstr "Feltételek" #. module: stock_location #: model:stock.location,name:stock_location.location_pack_zone msgid "Pack Zone" -msgstr "" +msgstr "Csomagolási zóna" #. module: stock_location #: model:stock.location,name:stock_location.location_gate_b @@ -133,17 +142,17 @@ msgstr "Vásárlás" #. module: stock_location #: view:product.product:0 msgid "Pushed flows" -msgstr "" +msgstr "Belökési folyamatok" #. module: stock_location #: model:stock.location,name:stock_location.location_dispatch_zone msgid "Dispatch Zone" -msgstr "" +msgstr "Feladási zóna" #. module: stock_location #: view:product.product:0 msgid "Pulled flows" -msgstr "" +msgstr "Kihúzási folyamatok" #. module: stock_location #: field:product.pulled.flow,company_id:0 @@ -160,6 +169,8 @@ msgstr "Készletmozgás" #: help:stock.move,cancel_cascade:0 msgid "If checked, when this move is cancelled, cancel the linked move too" msgstr "" +"Ha be van jelölve, amikor ez a mozgás törlésre került, akkor a kapcsolódó " +"mozgások is törölve lesznek" #. module: stock_location #: selection:product.pulled.flow,type_proc:0 @@ -180,7 +191,7 @@ msgstr "Készletre gyártás/vásárlás" #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "" +msgstr "Kihúzott egy másik tartózkodási helyről" #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 @@ -202,6 +213,7 @@ msgstr "Az átmenet végrehajtásához szükséges napok száma" #: help:product.pulled.flow,name:0 msgid "This field will fill the packing Origin and the name of its moves" msgstr "" +"Ez a mező tölti ki az eredeti csomagolási helyet és a mozgásainak a nevét" #. module: stock_location #: field:product.pulled.flow,type_proc:0 @@ -218,6 +230,8 @@ msgstr "Név" msgid "" "These rules set the right path of the product in the whole location tree." msgstr "" +"A szabály beállítja a teljes elhelyezkedési fában a termékre vonatkozó " +"pontos elérési utat." #. module: stock_location #: selection:stock.location.path,auto:0 @@ -243,11 +257,14 @@ msgid "" "supplying. 'Make to Order': When needed, purchase or produce for the " "procurement request." msgstr "" +"Ellátás készletből: Ha szükséges, vegye el a készletből, vagy várja meg az " +"újra-szállítást. Ellátás rendelésből: Ha szükséges, vásároljon vagy " +"beszerzési igénylés alapján gyártson." #. module: stock_location #: help:product.pulled.flow,location_id:0 msgid "Is the destination location that needs supplying" -msgstr "" +msgstr "Ez a célállomás aminek szüksége van ellátásra" #. module: stock_location #: field:stock.location.path,product_id:0 @@ -277,11 +294,13 @@ msgid "" "Picking for pulled procurement coming from original location %s, pull rule " "%s, via original Procurement %s (#%d)" msgstr "" +"Kiválogatás a kihúzási beszerzéshez ebből az eredeti helységből %s, kihúzási " +"szabály %s, az eredeti beszerzéssel %s (#%d)" #. module: stock_location #: field:product.product,path_ids:0 msgid "Pushed Flow" -msgstr "" +msgstr "Beillesztési folyamat" #. module: stock_location #: code:addons/stock_location/procurement_pull.py:89 @@ -290,16 +309,18 @@ msgid "" "Move for pulled procurement coming from original location %s, pull rule %s, " "via original Procurement %s (#%d)" msgstr "" +"Mozgás a kihúzási beszerzés eredeti hely irányából %s, kihúzási szabály %s, " +"az eredeti beszerzéssel %s (#%d)" #. module: stock_location #: view:product.product:0 msgid "Push Flow" -msgstr "" +msgstr "Beillesztési folyamat" #. module: stock_location #: view:product.product:0 msgid "Pull Flow" -msgstr "" +msgstr "Kihúzási folyamat" #. module: stock_location #: model:ir.model,name:stock_location.model_procurement_order @@ -341,11 +362,12 @@ msgid "" "Depending on the company, choose whatever you want to receive or send " "products" msgstr "" +"A vállalattól függ, Válassza ki, hogy termékeket kapni akar vagy küldeni" #. module: stock_location #: model:stock.location,name:stock_location.location_order msgid "Order Processing" -msgstr "" +msgstr "Megrendelés létrehozása" #. module: stock_location #: field:stock.location.path,name:0 @@ -355,7 +377,7 @@ msgstr "Művelet" #. module: stock_location #: view:stock.location.path:0 msgid "Location Paths" -msgstr "" +msgstr "Elérési útvonal" #. module: stock_location #: field:product.pulled.flow,journal_id:0 @@ -367,7 +389,7 @@ msgstr "Napló" #: field:product.pulled.flow,cancel_cascade:0 #: field:stock.move,cancel_cascade:0 msgid "Cancel Cascade" -msgstr "" +msgstr "Fokozat törlése" #. module: stock_location #: selection:product.pulled.flow,invoice_state:0 diff --git a/addons/stock_location/i18n/id.po b/addons/stock_location/i18n/id.po index 3f3be386713..bef07699c50 100644 --- a/addons/stock_location/i18n/id.po +++ b/addons/stock_location/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/it.po b/addons/stock_location/i18n/it.po index bfe1a3b0ddd..1ef43c8dd23 100644 --- a/addons/stock_location/i18n/it.po +++ b/addons/stock_location/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ja.po b/addons/stock_location/i18n/ja.po index f035fc7e4a7..71ff3a7be7d 100644 --- a/addons/stock_location/i18n/ja.po +++ b/addons/stock_location/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ko.po b/addons/stock_location/i18n/ko.po index c5e47e3fab7..6d9851ad59f 100644 --- a/addons/stock_location/i18n/ko.po +++ b/addons/stock_location/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lt.po b/addons/stock_location/i18n/lt.po index f1a00f093a1..9111b8daa56 100644 --- a/addons/stock_location/i18n/lt.po +++ b/addons/stock_location/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lv.po b/addons/stock_location/i18n/lv.po index b8938469453..6f12ca4fb8b 100644 --- a/addons/stock_location/i18n/lv.po +++ b/addons/stock_location/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index c5d4bdad74b..ab858fc0fa6 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mn.po b/addons/stock_location/i18n/mn.po index f0cd8f94081..969365e8055 100644 --- a/addons/stock_location/i18n/mn.po +++ b/addons/stock_location/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nb.po b/addons/stock_location/i18n/nb.po index 7870bf5b3f7..a4dcb924dd8 100644 --- a/addons/stock_location/i18n/nb.po +++ b/addons/stock_location/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl.po b/addons/stock_location/i18n/nl.po index b5f3c5e0ed1..562ff3d6fdf 100644 --- a/addons/stock_location/i18n/nl.po +++ b/addons/stock_location/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-02 05:26+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index 82be55c81d9..8c13eede216 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pl.po b/addons/stock_location/i18n/pl.po index fe22e74e9af..55d079b96aa 100644 --- a/addons/stock_location/i18n/pl.po +++ b/addons/stock_location/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt.po b/addons/stock_location/i18n/pt.po index 5b635508ca4..1d0a8bd6be9 100644 --- a/addons/stock_location/i18n/pt.po +++ b/addons/stock_location/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index a4d78e40534..eef451e44f6 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -13,13 +13,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\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 "" +"É usado para saber a qual empresa as separações e movimentos pertencem." #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -141,7 +142,7 @@ msgstr "Comprar" #. module: stock_location #: view:product.product:0 msgid "Pushed flows" -msgstr "" +msgstr "Fluxos Empurrados" #. module: stock_location #: model:stock.location,name:stock_location.location_dispatch_zone @@ -151,7 +152,7 @@ msgstr "Zona de Despacho" #. module: stock_location #: view:product.product:0 msgid "Pulled flows" -msgstr "" +msgstr "Fluxos Puxados" #. module: stock_location #: field:product.pulled.flow,company_id:0 @@ -179,18 +180,18 @@ msgstr "Produzir" #. module: stock_location #: selection:product.pulled.flow,procure_method:0 msgid "Make to Order" -msgstr "Adquirir Sempre" +msgstr "Fabricar para Pedido" #. module: stock_location #: selection:product.pulled.flow,procure_method:0 msgid "Make to Stock" -msgstr "Avaliar Estoque" +msgstr "Fabricar para Estoque" #. module: stock_location #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "" +msgstr "Empurrado de outro local." #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 @@ -256,9 +257,9 @@ msgid "" "supplying. 'Make to Order': When needed, purchase or produce for the " "procurement request." msgstr "" -"'Avaliar Estoque': Quando necessário, obter do estoque ou aguardar " -"reposição. 'Adquirir Sempre': Quando necessário, adquirir ou produzir de " -"acordo com a requisição" +"'Fazer para Estoque': Quando é necessário obter do estoque ou aguardar " +"reposição. 'Fazer para Pedido': Quando é necessário adquirir ou produzir de " +"acordo com a requisição." #. module: stock_location #: help:product.pulled.flow,location_id:0 @@ -297,7 +298,7 @@ msgstr "" #. module: stock_location #: field:product.product,path_ids:0 msgid "Pushed Flow" -msgstr "" +msgstr "Fluxo Empurrado" #. module: stock_location #: code:addons/stock_location/procurement_pull.py:89 @@ -310,12 +311,12 @@ msgstr "" #. module: stock_location #: view:product.product:0 msgid "Push Flow" -msgstr "" +msgstr "Fluxo Empurrado" #. module: stock_location #: view:product.product:0 msgid "Pull Flow" -msgstr "" +msgstr "Fluxo Puxado" #. module: stock_location #: model:ir.model,name:stock_location.model_procurement_order diff --git a/addons/stock_location/i18n/ro.po b/addons/stock_location/i18n/ro.po index d629f65df62..9582833575b 100644 --- a/addons/stock_location/i18n/ro.po +++ b/addons/stock_location/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ru.po b/addons/stock_location/i18n/ru.po index ed4c27f8d31..0d1930be36d 100644 --- a/addons/stock_location/i18n/ru.po +++ b/addons/stock_location/i18n/ru.po @@ -13,13 +13,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\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 "" +"Используется , чтобы узнать, к какой компании принадлежат комплектования и " +"перемещения." #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -191,7 +193,7 @@ msgstr "Изготовить на склад" #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "" +msgstr "Взяли из другого места." #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index 7c8005a0ea4..e7047a1e1ac 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sq.po b/addons/stock_location/i18n/sq.po index 6e397097d91..40f1c735272 100644 --- a/addons/stock_location/i18n/sq.po +++ b/addons/stock_location/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sv.po b/addons/stock_location/i18n/sv.po index 63c1b513311..e5f0a1a6c28 100644 --- a/addons/stock_location/i18n/sv.po +++ b/addons/stock_location/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tlh.po b/addons/stock_location/i18n/tlh.po index 0d3da5903ac..a5668c05468 100644 --- a/addons/stock_location/i18n/tlh.po +++ b/addons/stock_location/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index 02528ee8904..b1e7f081d79 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/uk.po b/addons/stock_location/i18n/uk.po index 29ed62a58cf..5341dbfe8b0 100644 --- a/addons/stock_location/i18n/uk.po +++ b/addons/stock_location/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/vi.po b/addons/stock_location/i18n/vi.po index f4ec9d10b13..282527244de 100644 --- a/addons/stock_location/i18n/vi.po +++ b/addons/stock_location/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index c0a16a69ac1..4bfd386a071 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index 0c6eb6500ca..3b701b6a4ea 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_no_autopicking/i18n/ar.po b/addons/stock_no_autopicking/i18n/ar.po index a75434f7763..29c1680ea32 100644 --- a/addons/stock_no_autopicking/i18n/ar.po +++ b/addons/stock_no_autopicking/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bg.po b/addons/stock_no_autopicking/i18n/bg.po index 7f8087b343b..cd01732725b 100644 --- a/addons/stock_no_autopicking/i18n/bg.po +++ b/addons/stock_no_autopicking/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bs.po b/addons/stock_no_autopicking/i18n/bs.po index 27a726bc80d..e5ebbeb966a 100644 --- a/addons/stock_no_autopicking/i18n/bs.po +++ b/addons/stock_no_autopicking/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ca.po b/addons/stock_no_autopicking/i18n/ca.po index 004c3493fe9..e5dc4080038 100644 --- a/addons/stock_no_autopicking/i18n/ca.po +++ b/addons/stock_no_autopicking/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/cs.po b/addons/stock_no_autopicking/i18n/cs.po index e091e408050..5833ffc67ac 100644 --- a/addons/stock_no_autopicking/i18n/cs.po +++ b/addons/stock_no_autopicking/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/da.po b/addons/stock_no_autopicking/i18n/da.po index 8473c7f57b7..f94d769a6c6 100644 --- a/addons/stock_no_autopicking/i18n/da.po +++ b/addons/stock_no_autopicking/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index 1281c500536..bafd38f6f6c 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/el.po b/addons/stock_no_autopicking/i18n/el.po index 16cf39be123..1f1a0b0aafe 100644 --- a/addons/stock_no_autopicking/i18n/el.po +++ b/addons/stock_no_autopicking/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_no_autopicking/i18n/es.po b/addons/stock_no_autopicking/i18n/es.po index e3c83c965c9..c6b60ec2e4e 100644 --- a/addons/stock_no_autopicking/i18n/es.po +++ b/addons/stock_no_autopicking/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index 2aa9331a814..0719b38836c 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CL.po b/addons/stock_no_autopicking/i18n/es_CL.po index b2ee9d2d252..deda446a510 100644 --- a/addons/stock_no_autopicking/i18n/es_CL.po +++ b/addons/stock_no_autopicking/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CR.po b/addons/stock_no_autopicking/i18n/es_CR.po index 9c3f249c6e3..0c84a5690b6 100644 --- a/addons/stock_no_autopicking/i18n/es_CR.po +++ b/addons/stock_no_autopicking/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/et.po b/addons/stock_no_autopicking/i18n/et.po index 79cdb65228b..bdfe513fe5f 100644 --- a/addons/stock_no_autopicking/i18n/et.po +++ b/addons/stock_no_autopicking/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fi.po b/addons/stock_no_autopicking/i18n/fi.po index 25ada93d9d9..03aa7bd283c 100644 --- a/addons/stock_no_autopicking/i18n/fi.po +++ b/addons/stock_no_autopicking/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fr.po b/addons/stock_no_autopicking/i18n/fr.po index cb05143b012..61d3fecc7e3 100644 --- a/addons/stock_no_autopicking/i18n/fr.po +++ b/addons/stock_no_autopicking/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/gl.po b/addons/stock_no_autopicking/i18n/gl.po index 32d7f284a01..6482f9a1f53 100644 --- a/addons/stock_no_autopicking/i18n/gl.po +++ b/addons/stock_no_autopicking/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hr.po b/addons/stock_no_autopicking/i18n/hr.po index d9f08eb3ad7..a1430b2e6e1 100644 --- a/addons/stock_no_autopicking/i18n/hr.po +++ b/addons/stock_no_autopicking/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hu.po b/addons/stock_no_autopicking/i18n/hu.po index 7e802e6940a..8577fedc2e6 100644 --- a/addons/stock_no_autopicking/i18n/hu.po +++ b/addons/stock_no_autopicking/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/id.po b/addons/stock_no_autopicking/i18n/id.po index 23bd3265d85..43a9c590b13 100644 --- a/addons/stock_no_autopicking/i18n/id.po +++ b/addons/stock_no_autopicking/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/it.po b/addons/stock_no_autopicking/i18n/it.po index eda5646e25e..41d6ee4313a 100644 --- a/addons/stock_no_autopicking/i18n/it.po +++ b/addons/stock_no_autopicking/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ja.po b/addons/stock_no_autopicking/i18n/ja.po index c200e9b69c2..f989676c285 100644 --- a/addons/stock_no_autopicking/i18n/ja.po +++ b/addons/stock_no_autopicking/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ko.po b/addons/stock_no_autopicking/i18n/ko.po index 9841f21e9c3..bfa8788351d 100644 --- a/addons/stock_no_autopicking/i18n/ko.po +++ b/addons/stock_no_autopicking/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lt.po b/addons/stock_no_autopicking/i18n/lt.po index da0f7da5d26..7b22ed2e71d 100644 --- a/addons/stock_no_autopicking/i18n/lt.po +++ b/addons/stock_no_autopicking/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lv.po b/addons/stock_no_autopicking/i18n/lv.po index df6981cc76b..415d24209f0 100644 --- a/addons/stock_no_autopicking/i18n/lv.po +++ b/addons/stock_no_autopicking/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mk.po b/addons/stock_no_autopicking/i18n/mk.po index b90f10c728c..9418d1850c2 100644 --- a/addons/stock_no_autopicking/i18n/mk.po +++ b/addons/stock_no_autopicking/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mn.po b/addons/stock_no_autopicking/i18n/mn.po index 63ab841cc68..52bd26d838e 100644 --- a/addons/stock_no_autopicking/i18n/mn.po +++ b/addons/stock_no_autopicking/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl.po b/addons/stock_no_autopicking/i18n/nl.po index 1d90fce40f7..c38b8b06256 100644 --- a/addons/stock_no_autopicking/i18n/nl.po +++ b/addons/stock_no_autopicking/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index ab484b902c4..80942a6dea9 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/oc.po b/addons/stock_no_autopicking/i18n/oc.po index 79d336195a9..e5eaae43abd 100644 --- a/addons/stock_no_autopicking/i18n/oc.po +++ b/addons/stock_no_autopicking/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pl.po b/addons/stock_no_autopicking/i18n/pl.po index 22c50fcdb9a..fabfdc0e87c 100644 --- a/addons/stock_no_autopicking/i18n/pl.po +++ b/addons/stock_no_autopicking/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt.po b/addons/stock_no_autopicking/i18n/pt.po index 6c2a21e0e1e..5caa794756e 100644 --- a/addons/stock_no_autopicking/i18n/pt.po +++ b/addons/stock_no_autopicking/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 6c44e11869f..adb5d15b487 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ro.po b/addons/stock_no_autopicking/i18n/ro.po index 02aee10fffd..ecaa87cb1ae 100644 --- a/addons/stock_no_autopicking/i18n/ro.po +++ b/addons/stock_no_autopicking/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ru.po b/addons/stock_no_autopicking/i18n/ru.po index 933a63027fd..05426e3e6d0 100644 --- a/addons/stock_no_autopicking/i18n/ru.po +++ b/addons/stock_no_autopicking/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sl.po b/addons/stock_no_autopicking/i18n/sl.po index e1fc335fab1..528f2c6bc5d 100644 --- a/addons/stock_no_autopicking/i18n/sl.po +++ b/addons/stock_no_autopicking/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sq.po b/addons/stock_no_autopicking/i18n/sq.po index fa7adfefa55..b967e23f9e1 100644 --- a/addons/stock_no_autopicking/i18n/sq.po +++ b/addons/stock_no_autopicking/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sr@latin.po b/addons/stock_no_autopicking/i18n/sr@latin.po index e2619b03d33..a5bf4e0e4e1 100644 --- a/addons/stock_no_autopicking/i18n/sr@latin.po +++ b/addons/stock_no_autopicking/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sv.po b/addons/stock_no_autopicking/i18n/sv.po index fd499405d89..d6dec555c28 100644 --- a/addons/stock_no_autopicking/i18n/sv.po +++ b/addons/stock_no_autopicking/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tlh.po b/addons/stock_no_autopicking/i18n/tlh.po index 2b38aa41b45..afc000e5928 100644 --- a/addons/stock_no_autopicking/i18n/tlh.po +++ b/addons/stock_no_autopicking/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index 1de7e8abaab..8509e76a49b 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/uk.po b/addons/stock_no_autopicking/i18n/uk.po index 4eb5c3ee9d3..3ab90e54b51 100644 --- a/addons/stock_no_autopicking/i18n/uk.po +++ b/addons/stock_no_autopicking/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/vi.po b/addons/stock_no_autopicking/i18n/vi.po index e8d189e10d2..b43ca3f5c19 100644 --- a/addons/stock_no_autopicking/i18n/vi.po +++ b/addons/stock_no_autopicking/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index 036931c17ca..340596c0121 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 5fa006cc729..7ef3f866502 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/subscription/i18n/ar.po b/addons/subscription/i18n/ar.po index b7c1f5e0416..b44303349af 100644 --- a/addons/subscription/i18n/ar.po +++ b/addons/subscription/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bg.po b/addons/subscription/i18n/bg.po index fd4a177a89f..5e0b29bd500 100644 --- a/addons/subscription/i18n/bg.po +++ b/addons/subscription/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bs.po b/addons/subscription/i18n/bs.po index e169dd835d9..ee85fc30d04 100644 --- a/addons/subscription/i18n/bs.po +++ b/addons/subscription/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ca.po b/addons/subscription/i18n/ca.po index 94a422821a0..f824c926ece 100644 --- a/addons/subscription/i18n/ca.po +++ b/addons/subscription/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/cs.po b/addons/subscription/i18n/cs.po index 1b3bea3082b..1a14d53313d 100644 --- a/addons/subscription/i18n/cs.po +++ b/addons/subscription/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/da.po b/addons/subscription/i18n/da.po index e816cbf9211..8c3dfdd3022 100644 --- a/addons/subscription/i18n/da.po +++ b/addons/subscription/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/de.po b/addons/subscription/i18n/de.po index d7d0ede0c24..ae9b3a49afc 100644 --- a/addons/subscription/i18n/de.po +++ b/addons/subscription/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es.po b/addons/subscription/i18n/es.po index 7416263ff9d..d40fbebe4ff 100644 --- a/addons/subscription/i18n/es.po +++ b/addons/subscription/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 5a7266f67a4..8be36959aed 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_CR.po b/addons/subscription/i18n/es_CR.po index f5c547e145b..6b092269bc4 100644 --- a/addons/subscription/i18n/es_CR.po +++ b/addons/subscription/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/et.po b/addons/subscription/i18n/et.po index 544b9a7c46c..ab7e6972ed7 100644 --- a/addons/subscription/i18n/et.po +++ b/addons/subscription/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fi.po b/addons/subscription/i18n/fi.po index 5aafbda66d1..742d8e7df95 100644 --- a/addons/subscription/i18n/fi.po +++ b/addons/subscription/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fr.po b/addons/subscription/i18n/fr.po index 3d7a8975503..a6b13992414 100644 --- a/addons/subscription/i18n/fr.po +++ b/addons/subscription/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:28+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/gl.po b/addons/subscription/i18n/gl.po index 6a7faa3e691..1d7ab63cdd3 100644 --- a/addons/subscription/i18n/gl.po +++ b/addons/subscription/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hr.po b/addons/subscription/i18n/hr.po index 64ee242c195..06bce887c87 100644 --- a/addons/subscription/i18n/hr.po +++ b/addons/subscription/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hu.po b/addons/subscription/i18n/hu.po index 9d62830890a..b57a8605924 100644 --- a/addons/subscription/i18n/hu.po +++ b/addons/subscription/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 @@ -31,7 +31,7 @@ msgstr "Tárgy" #. module: subscription #: view:subscription.subscription:0 msgid "Search Subscription" -msgstr "" +msgstr "Feliratkozás keresése" #. module: subscription #: field:subscription.subscription,date_init:0 @@ -46,7 +46,7 @@ msgstr "Mező" #. module: subscription #: model:ir.model,name:subscription.model_subscription_subscription_history msgid "Subscription history" -msgstr "" +msgstr "Feliratkozás előzmények" #. module: subscription #: selection:subscription.subscription,state:0 @@ -67,7 +67,7 @@ msgstr "Hetek" #: view:subscription.subscription:0 #: field:subscription.subscription,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: subscription #: model:ir.ui.menu,name:subscription.config_recuuring_event @@ -80,7 +80,7 @@ msgstr "Ismétlődő események" #: model:ir.ui.menu,name:subscription.menu_action_subscription_form #: view:subscription.subscription:0 msgid "Subscriptions" -msgstr "" +msgstr "Feliratkozások" #. module: subscription #: field:subscription.subscription,interval_number:0 @@ -106,7 +106,7 @@ msgstr "Futó" #. module: subscription #: view:subscription.subscription.history:0 msgid "Subscription History" -msgstr "" +msgstr "Feliratkozás Előzmények" #. module: subscription #: view:subscription.subscription:0 @@ -135,6 +135,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the " "subscription document without removing it." msgstr "" +"Ha az aktív mező Hamisra állított, akkor lehetősége van a dokumentumot amire " +"feliratkozott eltüntetni anélkül, hogy törölné azt." #. module: subscription #: field:subscription.document,name:0 @@ -146,7 +148,7 @@ msgstr "Név" #: code:addons/subscription/subscription.py:136 #, python-format msgid "You cannot delete an active subscription !" -msgstr "" +msgstr "Nem törölhet egy aktív feliratkozást!" #. module: subscription #: field:subscription.document,field_ids:0 @@ -174,19 +176,19 @@ msgstr "Napok" #: code:addons/subscription/subscription.py:136 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: subscription #: field:subscription.subscription,cron_id:0 msgid "Cron Job" -msgstr "" +msgstr "Automatikus \"cron\" munka futtatás" #. module: subscription #: model:ir.model,name:subscription.model_subscription_subscription #: view:subscription.subscription:0 #: field:subscription.subscription.history,subscription_id:0 msgid "Subscription" -msgstr "" +msgstr "Feliratkozás" #. module: subscription #: view:subscription.subscription:0 @@ -197,7 +199,7 @@ msgstr "Partner" #. module: subscription #: help:subscription.subscription,cron_id:0 msgid "Scheduler which runs on subscription" -msgstr "" +msgstr "A feliratkozásokon futtatható ütemező" #. module: subscription #: view:subscription.subscription:0 @@ -207,14 +209,14 @@ msgstr "Feliratkozási adat" #. module: subscription #: help:subscription.subscription,note:0 msgid "Description or Summary of Subscription" -msgstr "" +msgstr "A feliratkozások leírása vagy összegzése" #. module: subscription #: model:ir.model,name:subscription.model_subscription_document #: view:subscription.document:0 #: field:subscription.document.fields,document_id:0 msgid "Subscription Document" -msgstr "" +msgstr "Feliratkozási dokumentum" #. module: subscription #: help:subscription.subscription,active:0 @@ -222,16 +224,19 @@ msgid "" "If the active field is set to False, it will allow you to hide the " "subscription without removing it." msgstr "" +"Ha az aktív mező Hamisra állított, akkor lehetősége van a dokumentumot amire " +"feliratkozott eltüntetni anélkül, hogy törölné azt." #. module: subscription #: help:subscription.document.fields,value:0 msgid "Default value is considered for field when new document is generated." msgstr "" +"A mező alap értéke ki lesz választva amint egy új dokumentum generálva lesz." #. module: subscription #: selection:subscription.document.fields,value:0 msgid "False" -msgstr "" +msgstr "Hamis" #. module: subscription #: view:subscription.subscription:0 @@ -248,6 +253,8 @@ msgstr "Folyamat" msgid "" "User can choose the source document on which he wants to create documents" msgstr "" +"A felhasználó kiválaszthatja az alap dokumentumot, melyre létrehozza a " +"sajátjait" #. module: subscription #: model:ir.actions.act_window,name:subscription.action_document_form @@ -265,7 +272,7 @@ msgstr "Hibás forrásdokumentum !" #: model:ir.model,name:subscription.model_subscription_document_fields #: view:subscription.document.fields:0 msgid "Subscription Document Fields" -msgstr "" +msgstr "Feliratkozási dokumentum mezői" #. module: subscription #: selection:subscription.subscription,state:0 @@ -279,6 +286,8 @@ msgid "" "Please provide another source document.\n" "This one does not exist !" msgstr "" +"Kérem válasszon másik alap dokumentumot.\n" +"Ez nem létezik!" #. module: subscription #: field:subscription.document.fields,value:0 diff --git a/addons/subscription/i18n/id.po b/addons/subscription/i18n/id.po index 9f17080365b..8864e08a040 100644 --- a/addons/subscription/i18n/id.po +++ b/addons/subscription/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/it.po b/addons/subscription/i18n/it.po index 5de98683e3a..e01194bc991 100644 --- a/addons/subscription/i18n/it.po +++ b/addons/subscription/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ja.po b/addons/subscription/i18n/ja.po index 4df78a63ca9..a30c08854ea 100644 --- a/addons/subscription/i18n/ja.po +++ b/addons/subscription/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ko.po b/addons/subscription/i18n/ko.po index a78843c97c4..ef05df60f02 100644 --- a/addons/subscription/i18n/ko.po +++ b/addons/subscription/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/lt.po b/addons/subscription/i18n/lt.po index 47de4bdc8c1..be03b4c7416 100644 --- a/addons/subscription/i18n/lt.po +++ b/addons/subscription/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl.po b/addons/subscription/i18n/nl.po index fa8162d3f56..1b3627455a9 100644 --- a/addons/subscription/i18n/nl.po +++ b/addons/subscription/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 @@ -277,7 +277,7 @@ msgstr "Abonnement document velden" #. module: subscription #: selection:subscription.subscription,state:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: subscription #: code:addons/subscription/subscription.py:109 diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index 2c992b4fa30..841b48f358a 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index 1463e1d38a6..b2d67da6aef 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt.po b/addons/subscription/i18n/pt.po index a8451de0270..075bcadb75f 100644 --- a/addons/subscription/i18n/pt.po +++ b/addons/subscription/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index c0b6e8c3f22..b16f1eeb0cb 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ro.po b/addons/subscription/i18n/ro.po index 7a86d5d5df4..058635d7192 100644 --- a/addons/subscription/i18n/ro.po +++ b/addons/subscription/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ru.po b/addons/subscription/i18n/ru.po index 7f5afd6770a..aa1c655fbb7 100644 --- a/addons/subscription/i18n/ru.po +++ b/addons/subscription/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 @@ -31,7 +31,7 @@ msgstr "Объект" #. module: subscription #: view:subscription.subscription:0 msgid "Search Subscription" -msgstr "" +msgstr "Поиск подписки" #. module: subscription #: field:subscription.subscription,date_init:0 @@ -135,6 +135,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the " "subscription document without removing it." msgstr "" +"Если поле \"Активно\" не установлено, то можно скрыть документ подписки без " +"удаления." #. module: subscription #: field:subscription.document,name:0 @@ -146,7 +148,7 @@ msgstr "Название" #: code:addons/subscription/subscription.py:136 #, python-format msgid "You cannot delete an active subscription !" -msgstr "" +msgstr "Вы не можете удалять активные подписки!" #. module: subscription #: field:subscription.document,field_ids:0 @@ -174,12 +176,12 @@ msgstr "Дни" #: code:addons/subscription/subscription.py:136 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: subscription #: field:subscription.subscription,cron_id:0 msgid "Cron Job" -msgstr "" +msgstr "Задание cron" #. module: subscription #: model:ir.model,name:subscription.model_subscription_subscription @@ -197,7 +199,7 @@ msgstr "Партнер" #. module: subscription #: help:subscription.subscription,cron_id:0 msgid "Scheduler which runs on subscription" -msgstr "" +msgstr "Планировщик подписки" #. module: subscription #: view:subscription.subscription:0 @@ -207,7 +209,7 @@ msgstr "Дата подписки" #. module: subscription #: help:subscription.subscription,note:0 msgid "Description or Summary of Subscription" -msgstr "" +msgstr "Описание содержания подписки" #. module: subscription #: model:ir.model,name:subscription.model_subscription_document @@ -222,6 +224,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the " "subscription without removing it." msgstr "" +"Если поле \"Активно\" не установлено, то можно скрыть подписку без ее " +"удаления." #. module: subscription #: help:subscription.document.fields,value:0 @@ -249,6 +253,8 @@ msgstr "Выполняется" msgid "" "User can choose the source document on which he wants to create documents" msgstr "" +"Пользователь может выбрать исходный документ, по которому он хочет создавать " +"документы" #. module: subscription #: model:ir.actions.act_window,name:subscription.action_document_form diff --git a/addons/subscription/i18n/sl.po b/addons/subscription/i18n/sl.po index 619283a5b89..5d418502a48 100644 --- a/addons/subscription/i18n/sl.po +++ b/addons/subscription/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sq.po b/addons/subscription/i18n/sq.po index a00c0301765..5a48cc0cc7e 100644 --- a/addons/subscription/i18n/sq.po +++ b/addons/subscription/i18n/sq.po @@ -1,7 +1,7 @@ # Albanian translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. +# FIRST AUTHOR , 2010. # msgid "" msgstr "" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sv.po b/addons/subscription/i18n/sv.po index e7f8e5baac5..a47b1f2b23b 100644 --- a/addons/subscription/i18n/sv.po +++ b/addons/subscription/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tlh.po b/addons/subscription/i18n/tlh.po index ee5f2ceae9a..c9c335d8b89 100644 --- a/addons/subscription/i18n/tlh.po +++ b/addons/subscription/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index 42f370860d0..175063b1ce8 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/uk.po b/addons/subscription/i18n/uk.po index 05d7d4e9505..920591faf4c 100644 --- a/addons/subscription/i18n/uk.po +++ b/addons/subscription/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/vi.po b/addons/subscription/i18n/vi.po index 1bb842fd8f3..f05cea32e5d 100644 --- a/addons/subscription/i18n/vi.po +++ b/addons/subscription/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index d833a848162..7130bd8715c 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index 998e19e8762..2c4e4ca0547 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/survey/i18n/ar.po b/addons/survey/i18n/ar.po index 2392243f807..bd14463f55a 100644 --- a/addons/survey/i18n/ar.po +++ b/addons/survey/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-28 05:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/bg.po b/addons/survey/i18n/bg.po index 282ddbec2e6..d1d9af81906 100644 --- a/addons/survey/i18n/bg.po +++ b/addons/survey/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ca.po b/addons/survey/i18n/ca.po index ca343b331fb..29f1188c044 100644 --- a/addons/survey/i18n/ca.po +++ b/addons/survey/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/cs.po b/addons/survey/i18n/cs.po index c818b877a00..4ab458e7e08 100644 --- a/addons/survey/i18n/cs.po +++ b/addons/survey/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/da.po b/addons/survey/i18n/da.po index 4b21d6e5d2f..19ed2ae1ca8 100644 --- a/addons/survey/i18n/da.po +++ b/addons/survey/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index 9e70d93fe5c..20fe457ff09 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index 193ea63bc2d..54e6fa40b22 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es_CR.po b/addons/survey/i18n/es_CR.po index 54520e05c9c..782e497244e 100644 --- a/addons/survey/i18n/es_CR.po +++ b/addons/survey/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/et.po b/addons/survey/i18n/et.po index 8d49f86c470..85a2e7d5b36 100644 --- a/addons/survey/i18n/et.po +++ b/addons/survey/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fi.po b/addons/survey/i18n/fi.po index 869e87b9384..8edb4d5b840 100644 --- a/addons/survey/i18n/fi.po +++ b/addons/survey/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fr.po b/addons/survey/i18n/fr.po index fdf79ddd08e..2f1ace5f6bc 100644 --- a/addons/survey/i18n/fr.po +++ b/addons/survey/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/gl.po b/addons/survey/i18n/gl.po index fa9046cfb0e..3b289372a0a 100644 --- a/addons/survey/i18n/gl.po +++ b/addons/survey/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index 9bc8dbe2e52..edbefa897f3 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hu.po b/addons/survey/i18n/hu.po index b1a8da8d496..abaf7e2ce45 100644 --- a/addons/survey/i18n/hu.po +++ b/addons/survey/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:06+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/it.po b/addons/survey/i18n/it.po index 07c5317d5db..f3071ff6004 100644 --- a/addons/survey/i18n/it.po +++ b/addons/survey/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ja.po b/addons/survey/i18n/ja.po index 97132381ee7..9e97d7d4d85 100644 --- a/addons/survey/i18n/ja.po +++ b/addons/survey/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mn.po b/addons/survey/i18n/mn.po index 4a7e3f9c615..e04f6e589ae 100644 --- a/addons/survey/i18n/mn.po +++ b/addons/survey/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index e6a7f51a0c8..76f179cd1ad 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 @@ -1309,7 +1309,7 @@ msgstr "Veldlabel" #: view:survey.request:0 #: selection:survey.request,state:0 msgid "Done" -msgstr "Gereed" +msgstr "Verwerkt" #. module: survey #: view:survey:0 diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index 4880480ca69..a283e1eacba 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index 582e5625ca2..4bb7977ab39 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt_BR.po b/addons/survey/i18n/pt_BR.po index 601a536561a..76e111ddb3e 100644 --- a/addons/survey/i18n/pt_BR.po +++ b/addons/survey/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 @@ -45,7 +45,7 @@ msgstr "Validação de Texto" #. module: survey #: view:survey:0 msgid "Answers:" -msgstr "" +msgstr "Respostas" #. module: survey #: view:survey:0 @@ -56,7 +56,7 @@ msgstr "Usuário Convidado" #. module: survey #: model:survey.type,name:survey.survey_type1 msgid "Human Resources" -msgstr "" +msgstr "Recursos Humanos" #. module: survey #: selection:survey.answer,type:0 @@ -349,7 +349,7 @@ msgstr "" #. module: survey #: field:survey,color:0 msgid "Color Index" -msgstr "" +msgstr "Índice de Cores" #. module: survey #: selection:survey.question,type:0 @@ -366,7 +366,7 @@ msgstr "Editar Pesquisa" #: code:addons/survey/wizard/survey_answer.py:961 #, python-format msgid "Please enter an integer value." -msgstr "" +msgstr "Por favor entre com um número inteiro" #. module: survey #: field:survey.question.column.heading,menu_choice:0 @@ -390,7 +390,7 @@ msgstr "No Máximo" #: view:survey:0 #: view:survey.request:0 msgid "My Survey(s)" -msgstr "" +msgstr "Minhas Pesquisas" #. module: survey #: view:survey.response.line:0 @@ -428,7 +428,7 @@ msgstr "Texto" #. module: survey #: view:survey:0 msgid "Edit..." -msgstr "" +msgstr "Editar..." #. module: survey #: selection:survey.print,paper_size:0 @@ -542,7 +542,7 @@ msgstr "Imprimir" #. module: survey #: view:survey:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: survey #: field:survey.question,make_comment_field:0 @@ -566,7 +566,7 @@ msgstr "Email" #: code:addons/survey/survey.py:259 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: survey #: selection:survey.response,state:0 @@ -592,7 +592,7 @@ msgstr "" #. module: survey #: model:ir.ui.menu,name:survey.menu_reporting msgid "Reporting" -msgstr "" +msgstr "Relatórios" #. module: survey #: model:ir.actions.act_window,name:survey.act_survey_answer @@ -619,7 +619,7 @@ msgstr "Núm. Página" #. module: survey #: model:ir.ui.menu,name:survey.menu_print_survey_form msgid "Print Surveys" -msgstr "" +msgstr "Imprimir Pesquisas" #. module: survey #: field:survey.question.column.heading,in_visible_menu_choice:0 @@ -645,7 +645,7 @@ msgstr "" #. module: survey #: field:survey.request,date_deadline:0 msgid "Deadline date" -msgstr "" +msgstr "Prazo Final" #. module: survey #: selection:survey.question,comment_valid_type:0 @@ -725,7 +725,7 @@ msgstr "" #. module: survey #: view:survey:0 msgid "Delete" -msgstr "" +msgstr "Excluir" #. module: survey #: field:survey.response.answer,comment_field:0 @@ -769,7 +769,7 @@ msgstr "Manualmente" #. module: survey #: view:survey.send.invitation:0 msgid "_Send" -msgstr "" +msgstr "_Enviar" #. module: survey #: help:survey,responsible_id:0 @@ -792,7 +792,7 @@ msgstr "Acrescentar coluna de comentário na matriz" #. module: survey #: field:survey.answer,response:0 msgid "#Answer" -msgstr "" +msgstr "#Resposta" #. module: survey #: field:survey.print,without_pagebreak:0 diff --git a/addons/survey/i18n/ro.po b/addons/survey/i18n/ro.po index 699d11991da..45e3463ef9d 100644 --- a/addons/survey/i18n/ro.po +++ b/addons/survey/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ru.po b/addons/survey/i18n/ru.po index 0d4841113cb..735d4a087c5 100644 --- a/addons/survey/i18n/ru.po +++ b/addons/survey/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sl.po b/addons/survey/i18n/sl.po index f585b9f2035..ac8c7d59228 100644 --- a/addons/survey/i18n/sl.po +++ b/addons/survey/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr.po b/addons/survey/i18n/sr.po index 878584871d5..2a588f60d09 100644 --- a/addons/survey/i18n/sr.po +++ b/addons/survey/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr@latin.po b/addons/survey/i18n/sr@latin.po index 7eec0a42229..87349bf12a7 100644 --- a/addons/survey/i18n/sr@latin.po +++ b/addons/survey/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sv.po b/addons/survey/i18n/sv.po index 38938a3d3e2..e519aefd638 100644 --- a/addons/survey/i18n/sv.po +++ b/addons/survey/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/tr.po b/addons/survey/i18n/tr.po index 5ef42394644..83f797e8a0a 100644 --- a/addons/survey/i18n/tr.po +++ b/addons/survey/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/zh_CN.po b/addons/survey/i18n/zh_CN.po index fec0e0ab0ef..94d141dddf2 100644 --- a/addons/survey/i18n/zh_CN.po +++ b/addons/survey/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/warning/i18n/ar.po b/addons/warning/i18n/ar.po index 9a01666bd3c..281d9c9d99c 100644 --- a/addons/warning/i18n/ar.po +++ b/addons/warning/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bg.po b/addons/warning/i18n/bg.po index dee2ab20edd..ccc94564efb 100644 --- a/addons/warning/i18n/bg.po +++ b/addons/warning/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bs.po b/addons/warning/i18n/bs.po index bb0d787d000..23a4b3b9c00 100644 --- a/addons/warning/i18n/bs.po +++ b/addons/warning/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ca.po b/addons/warning/i18n/ca.po index fa1866de6c0..a0be7316c84 100644 --- a/addons/warning/i18n/ca.po +++ b/addons/warning/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/cs.po b/addons/warning/i18n/cs.po index 6b23714c50d..1267e7a422a 100644 --- a/addons/warning/i18n/cs.po +++ b/addons/warning/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/da.po b/addons/warning/i18n/da.po index c8bd79a1a46..0be9da77f6d 100644 --- a/addons/warning/i18n/da.po +++ b/addons/warning/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index 806920c694c..76d25d1e367 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-08 06:06+0000\n" -"X-Generator: Launchpad (build 16402)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/el.po b/addons/warning/i18n/el.po index 34c245a454a..64388ef8271 100644 --- a/addons/warning/i18n/el.po +++ b/addons/warning/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es.po b/addons/warning/i18n/es.po index 68bd19e2446..091362b893f 100644 --- a/addons/warning/i18n/es.po +++ b/addons/warning/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -140,7 +140,7 @@ msgstr "¡Alerta para %s!" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "" +msgstr "Advertencia en el pedido de venta" #. module: warning #: field:res.partner,invoice_warn_msg:0 @@ -150,7 +150,7 @@ msgstr "Mensaje para factura" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "" +msgstr "Mensaje para el pedido de venta" #. module: warning #: view:res.partner:0 @@ -178,7 +178,7 @@ msgstr "Aviso para %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "" +msgstr "Mensaje para la línea de pedido de venta" #. module: warning #: selection:product.product,purchase_line_warn:0 diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index 2cf16d59a16..09b562c6389 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_CR.po b/addons/warning/i18n/es_CR.po index de0175b46d9..812e79ffdd1 100644 --- a/addons/warning/i18n/es_CR.po +++ b/addons/warning/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/et.po b/addons/warning/i18n/et.po index c1a81d6cf3e..16cde3398dc 100644 --- a/addons/warning/i18n/et.po +++ b/addons/warning/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fi.po b/addons/warning/i18n/fi.po index 825762ed55d..331f698b997 100644 --- a/addons/warning/i18n/fi.po +++ b/addons/warning/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fr.po b/addons/warning/i18n/fr.po index e3b861fb151..03ab0df55ed 100644 --- a/addons/warning/i18n/fr.po +++ b/addons/warning/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-09 05:52+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/gl.po b/addons/warning/i18n/gl.po index f1aba148c4e..ccb4dca5232 100644 --- a/addons/warning/i18n/gl.po +++ b/addons/warning/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/hr.po b/addons/warning/i18n/hr.po index 51dca0e5503..6cba4de1e95 100644 --- a/addons/warning/i18n/hr.po +++ b/addons/warning/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" "Language: hr\n" #. module: warning diff --git a/addons/warning/i18n/hu.po b/addons/warning/i18n/hu.po index 36bd3d3f708..0a5af9896f2 100644 --- a/addons/warning/i18n/hu.po +++ b/addons/warning/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -25,7 +25,7 @@ msgstr "Szállítói megrendelés sor" #. module: warning #: model:ir.model,name:warning.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Beérkező szállítmányok" #. module: warning #: field:product.product,purchase_line_warn_msg:0 @@ -35,7 +35,7 @@ msgstr "Üzenet a szállítói megrendelés sorról" #. module: warning #: model:ir.model,name:warning.model_stock_picking msgid "Picking List" -msgstr "Kiszedési lista" +msgstr "Kiválogatási lista" #. module: warning #: view:product.product:0 @@ -66,7 +66,7 @@ msgstr "Blokkoló üzenet" #. module: warning #: view:res.partner:0 msgid "Warning on the Invoice" -msgstr "Figyelmeztetés a számlára" +msgstr "Figyelmeztetés a számlán" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -98,12 +98,12 @@ msgstr "Készlet kiszedés" #: model:ir.model,name:warning.model_purchase_order #: field:res.partner,purchase_warn:0 msgid "Purchase Order" -msgstr "Szállítói megrendelés" +msgstr "Beszerzési rendelés" #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" -msgstr "Üzenet a szállítói megrendelésről" +msgstr "Üzenet a beszerzési megrendelésről" #. module: warning #: code:addons/warning/warning.py:32 @@ -119,6 +119,9 @@ msgid "" "Selecting \"Blocking Message\" will throw an exception with the message and " "block the flow. The Message has to be written in the next field." msgstr "" +"A \"Figyelmeztetés\" lehetőség kiválasztása a felhasználót egy üzenettel " +"értesíti, az \"Üzenet blokkolása\" lehetőség egy kivételt küld az üzenethez " +"és leblokkolja a folyamatot. Az üzenetet a következő mezőbe kell beírni." #. module: warning #: code:addons/warning/warning.py:67 @@ -131,12 +134,12 @@ msgstr "" #: code:addons/warning/warning.py:299 #, python-format msgid "Alert for %s !" -msgstr "" +msgstr "Riasztás ehhez %s !" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "" +msgstr "Figyelmesztetés a beszerzési rendelésen" #. module: warning #: field:res.partner,invoice_warn_msg:0 @@ -146,7 +149,7 @@ msgstr "Üzenet a számláról" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "" +msgstr "Üzenet a beszerzési rendelésről" #. module: warning #: view:res.partner:0 @@ -156,7 +159,7 @@ msgstr "Figyelmeztetés a kiszedésre" #. module: warning #: view:res.partner:0 msgid "Warning on the Purchase Order" -msgstr "Figyelmeztetés a szállítói megrendelésre" +msgstr "Figyelmeztetés a beszerzési megrendelésre" #. module: warning #: code:addons/warning/warning.py:68 @@ -169,12 +172,12 @@ msgstr "Figyelmeztetés a szállítói megrendelésre" #: code:addons/warning/warning.py:300 #, python-format msgid "Warning for %s" -msgstr "" +msgstr "Figyelmeztetés erre %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "" +msgstr "Üzenet a vevői megrendelés sorára" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -205,7 +208,7 @@ msgstr "Vevői megrendelés" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Szállítólevelek / Szállítási rendelések" #. module: warning #: model:ir.model,name:warning.model_sale_order_line diff --git a/addons/warning/i18n/id.po b/addons/warning/i18n/id.po index b685827f292..c48392ef6ee 100644 --- a/addons/warning/i18n/id.po +++ b/addons/warning/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/it.po b/addons/warning/i18n/it.po index d61d1c36540..8b8f2500c88 100644 --- a/addons/warning/i18n/it.po +++ b/addons/warning/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-29 05:36+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ja.po b/addons/warning/i18n/ja.po index 10223736480..3ab1b0dc3ea 100644 --- a/addons/warning/i18n/ja.po +++ b/addons/warning/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ko.po b/addons/warning/i18n/ko.po index 3b87ab4155f..e7705f8ee96 100644 --- a/addons/warning/i18n/ko.po +++ b/addons/warning/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/lt.po b/addons/warning/i18n/lt.po index 47a0ecdc697..13fc70d0eb1 100644 --- a/addons/warning/i18n/lt.po +++ b/addons/warning/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/mn.po b/addons/warning/i18n/mn.po index 08fef49db3c..cec21fd3486 100644 --- a/addons/warning/i18n/mn.po +++ b/addons/warning/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nb.po b/addons/warning/i18n/nb.po index cca349ce636..f2f61c7070e 100644 --- a/addons/warning/i18n/nb.po +++ b/addons/warning/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl.po b/addons/warning/i18n/nl.po index 6aef7b1c416..e8cd5d9814b 100644 --- a/addons/warning/i18n/nl.po +++ b/addons/warning/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index 5ebc5ceb115..baa66a8de06 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pl.po b/addons/warning/i18n/pl.po index 772f59257c1..e3ebe57fa73 100644 --- a/addons/warning/i18n/pl.po +++ b/addons/warning/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index ded3dc2c4f6..05a1be72b34 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index 1ef4e380a95..562b10213e6 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ro.po b/addons/warning/i18n/ro.po index bbb1991ca3a..48f7bfa4dc6 100644 --- a/addons/warning/i18n/ro.po +++ b/addons/warning/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ru.po b/addons/warning/i18n/ru.po index d5475ddb657..28994e6be7a 100644 --- a/addons/warning/i18n/ru.po +++ b/addons/warning/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -25,7 +25,7 @@ msgstr "Позиция заказа на закупку" #. module: warning #: model:ir.model,name:warning.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Поступающие грузы" #. module: warning #: field:product.product,purchase_line_warn_msg:0 @@ -139,7 +139,7 @@ msgstr "Сигнал о %s !" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "" +msgstr "Предупреждение по заказу продаж" #. module: warning #: field:res.partner,invoice_warn_msg:0 @@ -149,7 +149,7 @@ msgstr "Сообщение при выставлении счета" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "" +msgstr "Сообщение по заказу продаж" #. module: warning #: view:res.partner:0 @@ -177,7 +177,7 @@ msgstr "Предупреждение для %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "" +msgstr "Сообщение по позиции заказа продаж" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -208,7 +208,7 @@ msgstr "Заказ на продажу" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Заказы на доставку" #. module: warning #: model:ir.model,name:warning.model_sale_order_line diff --git a/addons/warning/i18n/sl.po b/addons/warning/i18n/sl.po index f85af3bb4d9..3b33ab4276a 100644 --- a/addons/warning/i18n/sl.po +++ b/addons/warning/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sq.po b/addons/warning/i18n/sq.po index 623ca7bd070..a226fa18f0f 100644 --- a/addons/warning/i18n/sq.po +++ b/addons/warning/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr.po b/addons/warning/i18n/sr.po index 6d79cea7222..44e290ac2c2 100644 --- a/addons/warning/i18n/sr.po +++ b/addons/warning/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr@latin.po b/addons/warning/i18n/sr@latin.po index 4b8b12b6be6..6abce9316f8 100644 --- a/addons/warning/i18n/sr@latin.po +++ b/addons/warning/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sv.po b/addons/warning/i18n/sv.po index 19facdcd7b2..86354e402c9 100644 --- a/addons/warning/i18n/sv.po +++ b/addons/warning/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tlh.po b/addons/warning/i18n/tlh.po index ab5cc29a3f1..50a93a84e45 100644 --- a/addons/warning/i18n/tlh.po +++ b/addons/warning/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index 4be0be39401..a94f0b4a6cc 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/uk.po b/addons/warning/i18n/uk.po index 19f13151147..bfa464014e9 100644 --- a/addons/warning/i18n/uk.po +++ b/addons/warning/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/vi.po b/addons/warning/i18n/vi.po index ca53340bda8..04dd38204d0 100644 --- a/addons/warning/i18n/vi.po +++ b/addons/warning/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index c428de02f5d..16b68ac204b 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -139,7 +139,7 @@ msgstr "警报%s !" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "" +msgstr "销售订单警告" #. module: warning #: field:res.partner,invoice_warn_msg:0 @@ -149,7 +149,7 @@ msgstr "发票消息" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "" +msgstr "销售订单消息" #. module: warning #: view:res.partner:0 @@ -177,7 +177,7 @@ msgstr "警告 %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "" +msgstr "销售订单行消息" #. module: warning #: selection:product.product,purchase_line_warn:0 diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 21e27fa4f02..9d5d39a358e 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/web_linkedin/i18n/de.po b/addons/web_linkedin/i18n/de.po index 5fbf41e1f9e..a1866c79ded 100644 --- a/addons/web_linkedin/i18n/de.po +++ b/addons/web_linkedin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/es.po b/addons/web_linkedin/i18n/es.po index 7ea0c190d4c..981f6649efe 100644 --- a/addons/web_linkedin/i18n/es.po +++ b/addons/web_linkedin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/fr.po b/addons/web_linkedin/i18n/fr.po index 3159c4fb085..977daa7c058 100644 --- a/addons/web_linkedin/i18n/fr.po +++ b/addons/web_linkedin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/hr.po b/addons/web_linkedin/i18n/hr.po index 71ebe159ad4..6789159facd 100644 --- a/addons/web_linkedin/i18n/hr.po +++ b/addons/web_linkedin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/hu.po b/addons/web_linkedin/i18n/hu.po index db9623b2ad1..ef390571963 100644 --- a/addons/web_linkedin/i18n/hu.po +++ b/addons/web_linkedin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-06 05:31+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/it.po b/addons/web_linkedin/i18n/it.po index d87eef74a93..459d122912a 100644 --- a/addons/web_linkedin/i18n/it.po +++ b/addons/web_linkedin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/nl.po b/addons/web_linkedin/i18n/nl.po index 439f6f9d0df..4a393d18bdc 100644 --- a/addons/web_linkedin/i18n/nl.po +++ b/addons/web_linkedin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pl.po b/addons/web_linkedin/i18n/pl.po index 611fb81410a..dbfb20c7806 100644 --- a/addons/web_linkedin/i18n/pl.po +++ b/addons/web_linkedin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index 371a5f6e034..bb070154281 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pt_BR.po b/addons/web_linkedin/i18n/pt_BR.po index 2ae8eeef693..51ec27c27f1 100644 --- a/addons/web_linkedin/i18n/pt_BR.po +++ b/addons/web_linkedin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/ro.po b/addons/web_linkedin/i18n/ro.po index 570c11b746b..6cdce28f938 100644 --- a/addons/web_linkedin/i18n/ro.po +++ b/addons/web_linkedin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/zh_CN.po b/addons/web_linkedin/i18n/zh_CN.po index a2f562259b5..32d22d12579 100644 --- a/addons/web_linkedin/i18n/zh_CN.po +++ b/addons/web_linkedin/i18n/zh_CN.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_linkedin #: view:sale.config.settings:0 msgid "here:" -msgstr "" +msgstr "这里:" #. module: web_linkedin #: field:sale.config.settings,api_key:0 @@ -44,7 +44,7 @@ msgstr "确定" #. module: web_linkedin #: view:sale.config.settings:0 msgid "Log into LinkedIn." -msgstr "" +msgstr "记录到 LinkedIn。" #. module: web_linkedin #. openerp-web diff --git a/addons/web_shortcuts/i18n/de.po b/addons/web_shortcuts/i18n/de.po index 6a8445e79d7..756ebbb5c36 100644 --- a/addons/web_shortcuts/i18n/de.po +++ b/addons/web_shortcuts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/es.po b/addons/web_shortcuts/i18n/es.po index 5193ddf22c7..7048ad2d16d 100644 --- a/addons/web_shortcuts/i18n/es.po +++ b/addons/web_shortcuts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/fr.po b/addons/web_shortcuts/i18n/fr.po index b2624965c56..50cd213cdc6 100644 --- a/addons/web_shortcuts/i18n/fr.po +++ b/addons/web_shortcuts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hr.po b/addons/web_shortcuts/i18n/hr.po index e11b1b8c864..b4f130efb9e 100644 --- a/addons/web_shortcuts/i18n/hr.po +++ b/addons/web_shortcuts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hu.po b/addons/web_shortcuts/i18n/hu.po index 954159b7778..396a21f7165 100644 --- a/addons/web_shortcuts/i18n/hu.po +++ b/addons/web_shortcuts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-05 05:40+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/it.po b/addons/web_shortcuts/i18n/it.po index 7545effdc56..4181ff67e79 100644 --- a/addons/web_shortcuts/i18n/it.po +++ b/addons/web_shortcuts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/nl.po b/addons/web_shortcuts/i18n/nl.po index 649d2850027..c867f32fad0 100644 --- a/addons/web_shortcuts/i18n/nl.po +++ b/addons/web_shortcuts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pl.po b/addons/web_shortcuts/i18n/pl.po index 8c65ed655d9..25b606b78fd 100644 --- a/addons/web_shortcuts/i18n/pl.po +++ b/addons/web_shortcuts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt.po b/addons/web_shortcuts/i18n/pt.po index d432daee2d8..99e6012d772 100644 --- a/addons/web_shortcuts/i18n/pt.po +++ b/addons/web_shortcuts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt_BR.po b/addons/web_shortcuts/i18n/pt_BR.po index 9011395ed42..65f45cbf37b 100644 --- a/addons/web_shortcuts/i18n/pt_BR.po +++ b/addons/web_shortcuts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ro.po b/addons/web_shortcuts/i18n/ro.po index c009295f91f..3b4d9c8df66 100644 --- a/addons/web_shortcuts/i18n/ro.po +++ b/addons/web_shortcuts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:40+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ru.po b/addons/web_shortcuts/i18n/ru.po index c3ab5a1d639..083752235fb 100644 --- a/addons/web_shortcuts/i18n/ru.po +++ b/addons/web_shortcuts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-26 05:18+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/sl.po b/addons/web_shortcuts/i18n/sl.po index 41ff114dacc..ce5e10c424a 100644 --- a/addons/web_shortcuts/i18n/sl.po +++ b/addons/web_shortcuts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/zh_CN.po b/addons/web_shortcuts/i18n/zh_CN.po index 75714b86ce7..392eae9707c 100644 --- a/addons/web_shortcuts/i18n/zh_CN.po +++ b/addons/web_shortcuts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:37+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web_shortcuts #. openerp-web From d5cea4bb9c18152059d058b23dea6d34dcbd7c90 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Fri, 18 Jan 2013 17:55:24 +0100 Subject: [PATCH 24/72] [FIX] rst in mail bzr revid: xmo@openerp.com-20130118165524-8vtor05ummjny24m --- addons/mail/doc/mail_message.rst | 12 ++++++++---- addons/mail/doc/mail_state.rst | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/addons/mail/doc/mail_message.rst b/addons/mail/doc/mail_message.rst index 14055f063e0..c641182be31 100644 --- a/addons/mail/doc/mail_message.rst +++ b/addons/mail/doc/mail_message.rst @@ -19,7 +19,10 @@ should inherit from this class. .. versionchanged:: 7.0 ClientAction (ir.actions.client) -+++++++ +++++++++++++++++++++++++++++++++ + +.. code-block:: xml + Inbox mail.wall @@ -35,6 +38,7 @@ ClientAction (ir.actions.client) 'mail_thread' widget for field on standard view. (default value like a thread for record, view on flat mode, no reply, no read/unread) 'mail.widget' it's the root thread, used by 'mail.wall' and 'mail_thread' + - ``help`` : Text HTML to display if there are no message - ``context`` : insert 'default_model' and 'default_res_id' - ``params`` : options for the widget @@ -56,7 +60,7 @@ ClientAction (ir.actions.client) - ``readonly`` : Read only mode, hide all action buttons and composer Fields -+++++++ +++++++ - ``type`` : usually 'email', 'comment', 'notification'. Message type: email for external email message recieve, notification for system @@ -64,7 +68,7 @@ Fields - ``subtype_id`` : Subtype of the notification for system message. The users can followe a document and choose the subtype of this document (eg: Create, Comment, Done). - You can defined new subtypes and choose his name, by agreement the id begin by "mt_" on the model + You can defined new subtypes and choose his name, by agreement the id begin by "mt\_" on the model "mail.message.subtype". - ``partner_ids`` : List of recipients, the recipients have this message in their personal mailboxe. @@ -104,4 +108,4 @@ Methods sort by id. The messages that the user can read but not in his search, are group in expandable messages. The expandable messages contain the domain to expand. - ``check_access_rule`` : - Overwrite the initial message for this model. \ No newline at end of file + Overwrite the initial message for this model. diff --git a/addons/mail/doc/mail_state.rst b/addons/mail/doc/mail_state.rst index fc2772bf094..cf1874ffca1 100644 --- a/addons/mail/doc/mail_state.rst +++ b/addons/mail/doc/mail_state.rst @@ -1,7 +1,7 @@ .. _mail_state: message_unread -============= +============== ``message_unread`` is a boolean field that states whether the document has unread messages. In previous versions, some documents were going @@ -10,7 +10,7 @@ gateway. Now the state related to messages differs from the state or stage of the document itself. message_unread and need action mechanism -+++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++ The ``mail`` module introduces a default behavior for the need_action mechanism [REF]. From cd1e346e012932bb81c5f39835b78d1ca543d8b5 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Mon, 21 Jan 2013 05:27:54 +0000 Subject: [PATCH 25/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130119063657-x4n6e50dn5dapwl3 bzr revid: launchpad_translations_on_behalf_of_openerp-20130120051711-l7ov76fat5jy5zzi bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052717-y8me1m61e5jawj09 bzr revid: launchpad_translations_on_behalf_of_openerp-20130119063730-1qb2f0t3ja3lfcp9 bzr revid: launchpad_translations_on_behalf_of_openerp-20130120051738-sa4uc0kj70qwxxw7 bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052754-7hplv5713jf1mzh1 --- addons/account/i18n/et.po | 28 +- addons/account/i18n/fr.po | 6 +- addons/account/i18n/nl.po | 55 +- addons/account/i18n/sv.po | 168 ++- addons/account_analytic_default/i18n/es_MX.po | 9 +- addons/account_analytic_plans/i18n/pt.po | 10 +- .../i18n/pt.po | 16 +- addons/account_budget/i18n/sv.po | 8 +- addons/account_followup/i18n/sv.po | 86 +- addons/account_payment/i18n/pt.po | 27 +- addons/analytic/i18n/pt.po | 18 +- .../analytic_contract_hr_expense/i18n/ro.po | 72 + addons/analytic_user_function/i18n/pt.po | 8 +- addons/analytic_user_function/i18n/ro.po | 35 +- addons/anonymization/i18n/pt.po | 10 +- addons/anonymization/i18n/ro.po | 50 +- addons/association/i18n/ro.po | 10 +- addons/audittrail/i18n/pt.po | 8 +- addons/audittrail/i18n/ro.po | 18 +- addons/auth_ldap/i18n/pt.po | 12 +- addons/auth_oauth/i18n/sv.po | 135 ++ addons/auth_signup/i18n/ro.po | 293 ++++ addons/base_action_rule/i18n/ro.po | 84 +- addons/base_calendar/i18n/ro.po | 127 +- addons/base_gengo/i18n/ro.po | 264 ++++ addons/base_import/i18n/ro.po | 1334 +++++++++++++++++ addons/base_report_designer/i18n/ro.po | 8 +- addons/base_setup/i18n/es_MX.po | 8 +- addons/base_setup/i18n/sv.po | 72 +- addons/base_status/i18n/pt.po | 10 +- addons/base_status/i18n/pt_BR.po | 9 +- addons/base_vat/i18n/ro.po | 10 +- addons/claim_from_delivery/i18n/pt.po | 8 +- addons/crm/i18n/fr.po | 39 +- addons/crm_helpdesk/i18n/pt.po | 10 +- addons/crm_helpdesk/i18n/sv.po | 10 +- addons/crm_profiling/i18n/pt.po | 8 +- addons/crm_todo/i18n/pt.po | 10 +- addons/delivery/i18n/es_MX.po | 13 +- addons/document/i18n/pt.po | 14 +- addons/document_ftp/i18n/pt.po | 10 +- addons/document_page/i18n/pt.po | 12 +- addons/event_sale/i18n/pt.po | 9 +- addons/fetchmail/i18n/pt.po | 12 +- addons/fleet/i18n/es_MX.po | 21 +- addons/hr_attendance/i18n/pt.po | 16 +- addons/hr_contract/i18n/pt.po | 8 +- addons/l10n_bo/i18n/it.po | 54 + addons/l10n_ve/i18n/pt.po | 8 +- addons/mail/i18n/nl.po | 145 +- addons/marketing/i18n/pt.po | 15 +- addons/mrp_byproduct/i18n/pt.po | 8 +- addons/note/i18n/sv.po | 282 ++++ addons/pad_project/i18n/pt.po | 8 +- addons/point_of_sale/i18n/pt_BR.po | 21 +- addons/portal/i18n/sv.po | 34 +- addons/portal_crm/i18n/sv.po | 548 +++++++ addons/portal_event/i18n/pt.po | 10 +- addons/portal_project/i18n/pt.po | 10 +- addons/project_gtd/i18n/pt.po | 8 +- addons/project_issue_sheet/i18n/pt.po | 10 +- addons/project_timesheet/i18n/de.po | 9 +- addons/purchase_double_validation/i18n/pt.po | 8 +- addons/resource/i18n/pt.po | 10 +- addons/sale/i18n/es_MX.po | 9 +- addons/stock/i18n/es_MX.po | 29 +- addons/warning/i18n/pt.po | 10 +- openerp/addons/base/i18n/it.po | 10 +- openerp/addons/base/i18n/nl.po | 370 +++-- openerp/addons/base/i18n/pt.po | 58 +- openerp/addons/base/i18n/pt_BR.po | 164 +- 71 files changed, 4220 insertions(+), 826 deletions(-) create mode 100644 addons/analytic_contract_hr_expense/i18n/ro.po create mode 100644 addons/auth_oauth/i18n/sv.po create mode 100644 addons/auth_signup/i18n/ro.po create mode 100644 addons/base_gengo/i18n/ro.po create mode 100644 addons/base_import/i18n/ro.po create mode 100644 addons/l10n_bo/i18n/it.po create mode 100644 addons/note/i18n/sv.po create mode 100644 addons/portal_crm/i18n/sv.po diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index f2163fa87c8..da83c6cdde1 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.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:04+0000\n" -"PO-Revision-Date: 2013-01-07 21:23+0000\n" +"PO-Revision-Date: 2013-01-20 09:01+0000\n" "Last-Translator: Ahti Hinnov \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account @@ -50,7 +50,7 @@ msgstr "Konto statistika" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "" +msgstr "Proforma/Maksmata/Makstud arved" #. module: account #: field:report.invoice.created,residual:0 @@ -364,7 +364,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "Müügimees" +msgstr "Müüja" #. module: account #: view:account.bank.statement:0 @@ -651,7 +651,7 @@ msgstr "" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Kasumi konto" #. module: account #: code:addons/account/account_move_line.py:1157 @@ -893,7 +893,7 @@ msgstr "J.C./liiguta nime" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Konto kood ja nimi" #. module: account #: selection:account.entries.report,month:0 @@ -1672,7 +1672,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "Otsi panga avaldust" +msgstr "Otsi pangateatist" #. module: account #: view:account.move.line:0 @@ -2108,7 +2108,7 @@ msgstr "Päevaraamatu kanne" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Maksmata" #. module: account #: view:account.treasury.report:0 @@ -2604,7 +2604,7 @@ msgstr "" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Konto omadused" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -2908,7 +2908,7 @@ msgstr "Hüvitise aluse kood" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "" +msgstr "Pangateatised" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -6668,7 +6668,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "" +msgstr "Pank ja kassa" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -7033,7 +7033,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Päevikute kirjed" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -8663,7 +8663,7 @@ msgstr "Tähtaeg" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "" +msgstr "Tarnijad" #. module: account #: view:account.journal:0 @@ -8716,7 +8716,7 @@ msgstr "" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Maksmata arved" #. module: account #: field:account.move.line.reconcile,debit:0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index f8d65b15a7e..d2841d2cf22 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/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:04+0000\n" -"PO-Revision-Date: 2013-01-11 08:36+0000\n" +"PO-Revision-Date: 2013-01-18 09:44+0000\n" "Last-Translator: Numérigraphe \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-01-18 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account @@ -8718,7 +8718,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Net Total:" -msgstr "Total net :" +msgstr "Total HT :" #. module: account #: code:addons/account/wizard/account_report_common.py:158 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 7f486f149eb..d124e1073d5 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-07 13:27+0000\n" -"Last-Translator: Leen Sonneveld \n" +"PO-Revision-Date: 2013-01-20 11:59+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:24+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account @@ -1269,6 +1269,7 @@ msgstr "Crediteer " #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." msgstr "" +"Er is geen kostenrekening gedefinieerd voor dit product: \"%s\" (id:%d)." #. module: account #: view:account.tax:0 @@ -1382,6 +1383,8 @@ msgid "" "The amount expressed in the secondary currency must be positif when journal " "item are debit and negatif when journal item are credit." msgstr "" +"Het bedrag, weergegeven in de tweede valuta moet positief zijn bij debet " +"regels en negatief bij credit regels." #. module: account #: view:account.invoice.cancel:0 @@ -1602,6 +1605,8 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Wanneer een nieuw afschrift wordt gemaakt, is de status 'Concept'\n" +"Na bevestiging van de bank wordt de status omgezet in 'Bevestigd'." #. module: account #: field:account.invoice.report,state:0 @@ -1942,6 +1947,8 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Het dagboek moet een centrale tegenrekening hebben en de conceptfase " +"overslaan optie mag niet zijn aangevinkt." #. module: account #: code:addons/account/account_move_line.py:857 @@ -1965,6 +1972,8 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Selecteer een instellingen pakket om zo automatisch uw\n" +" belastingen en grootboekrekeningen te installeren." #. module: account #: view:account.analytic.account:0 @@ -2004,7 +2013,7 @@ msgstr "Debiteuren & crediteuren" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Beheer betaalopdrachten" #. module: account #: view:account.period:0 @@ -2160,6 +2169,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuwe inkoopfactuur aan te maken.\n" +"

\n" +" U kunt de factuur van uw leverancier controleren op basis " +"van\n" +"                 wat u gekocht of ontvangen heeft. OpenERP kan ook " +"automatisch concept\n" +"                 inkoopfacturen genereren uit inkooporders of " +"ontvangstbewijzen.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 @@ -2303,6 +2323,8 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Het is niet mogelijk om het soort rekening te wijzigen naar '%s', omdat het " +"al regels bevat." #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance @@ -2325,6 +2347,7 @@ msgstr "Dagboek:" #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." msgstr "" +"Een fiscale positie kan maar één keer worden gedefinieerd per toeslagnaam." #. module: account #: view:account.tax:0 @@ -2586,6 +2609,7 @@ msgstr "Omzetrekening" #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." msgstr "" +"Deze verkoopbelasting zal standaard worden toegewezen aan nieuwe producten." #. module: account #: report:account.general.ledger_landscape:0 @@ -2976,7 +3000,7 @@ msgstr "Configuratiefout!" #: code:addons/account/account_bank_statement.py:433 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Afschrift %s bevestigd, regels zijn aangemaakt." #. module: account #: field:account.invoice.report,price_average:0 @@ -3127,7 +3151,7 @@ msgstr "Financiële boekingen" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Rekening en periode moeten aan hetzelfde bedrijf toebehoren" #. module: account #: field:account.invoice.line,discount:0 @@ -3287,7 +3311,7 @@ msgstr "Niet afgeletterde transacties" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Er is maar één rekeneningschema beschikbaar" #. module: account #: view:account.chart.template:0 @@ -3328,7 +3352,7 @@ msgstr "Grondslag" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Standaard belasting op verkopen" +msgstr "Standaard BTW op verkopen" #. module: account #: help:account.model.line,date_maturity:0 @@ -3398,7 +3422,7 @@ msgstr "Proefbalans" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Niet mogelijk om de initiële balans op te nemen (negatieve waarde)." #. module: account #: selection:account.invoice,type:0 @@ -3469,7 +3493,7 @@ msgstr "" #: code:addons/account/account.py:2630 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Er is geen bovenliggende code voor deze rekening." #. module: account #: help:account.chart.template,code_digits:0 @@ -3497,6 +3521,8 @@ msgstr "Altijd" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Volledige financiële boekhouding: Dagboeken, Boekhoudkundige rapportages, " +"Grootboekschema, etc." #. module: account #: view:account.analytic.line:0 @@ -3785,7 +3811,7 @@ msgstr "Configuratie financiële applicatie" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Belastingaangifte" #. module: account #: help:account.bank.statement,name:0 @@ -3806,6 +3832,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Het is niet mogelijk een factuur aan te maken op ene centrale tegenrekening. " +"Vink de optie 'centrale tegenrekening' uit bij de instellingen van het " +"bijbehorende dagboek." #. module: account #: field:account.bank.statement,balance_start:0 @@ -7793,7 +7822,7 @@ msgstr "Bankafschrift regel" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Standaard belastingen op inkopen" +msgstr "Standaard BTW op inkopen" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -8795,7 +8824,7 @@ msgstr "Eindsaldo" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Centrale tegenrekening" #. module: account #: help:account.move.line,blocked:0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 34f699a2fe4..c50b16897fd 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.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:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 17:11+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account @@ -320,7 +320,7 @@ msgstr "Gör konto oavstämt" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Budgethantering" #. module: account #: view:product.template:0 @@ -341,7 +341,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Tillåt flera valutor" #. module: account #: code:addons/account/account_invoice.py:73 @@ -375,7 +375,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Säljare" #. module: account #: view:account.bank.statement:0 @@ -693,6 +693,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -888,7 +890,7 @@ msgstr "Analyskontojournal" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Skicka via e-post" #. module: account #: help:account.central.journal,amount_currency:0 @@ -989,7 +991,7 @@ msgstr "" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura betald" #. module: account #: view:validate.account.move:0 @@ -1317,7 +1319,7 @@ msgstr "Utgående valutakurs" #. module: account #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Mall" #. module: account #: selection:account.analytic.journal,type:0 @@ -1485,7 +1487,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Fakturasekvens" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1508,7 +1510,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Fakturastatus" #. module: account #: view:account.bank.statement:0 @@ -1530,7 +1532,7 @@ msgstr "Fordringar" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopia)" #. module: account #: selection:account.balance.report,display_account:0 @@ -1691,7 +1693,7 @@ msgstr "Före skatt" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Avancerade inställningar" #. module: account #: view:account.bank.statement:0 @@ -1820,7 +1822,7 @@ msgstr "Försäljning per kontotyp" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dagar" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1974,7 +1976,7 @@ msgstr "Kreditbelopp" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Meddelanden" #. module: account #: view:account.vat.declaration:0 @@ -2166,7 +2168,7 @@ msgstr "Giltig" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2238,12 +2240,12 @@ msgstr "Registreringsdatum måste vara i perioden om denna är markerad." #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Bra jobbat!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Tillgångshantering" #. module: account #: view:account.account:0 @@ -2636,7 +2638,7 @@ msgstr "Preliminär status för en faktura" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Kontoegenskaper" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -2821,7 +2823,7 @@ msgstr "Objekt" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Standardinköpsmoms" #. module: account #: view:account.account:0 @@ -2907,7 +2909,7 @@ msgstr "Ref" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Inköpsmoms" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3034,7 +3036,7 @@ msgstr "Avskrivning belopp" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olästa meddelanden" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3560,7 +3562,7 @@ msgstr "Förlaga för kontoplan" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transaktioner" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3983,7 +3985,7 @@ msgstr "(Om du inte väljer period så används alla perioder)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process @@ -4264,7 +4266,7 @@ msgstr "Företagsid" #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Meddelande- och kommunikationshistorik" #. module: account #: help:account.journal,analytic_journal_id:0 @@ -4305,7 +4307,7 @@ msgstr "" #: code:addons/account/account_move_line.py:1144 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Du kan inte använda ett inaktivt konto." #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4336,7 +4338,7 @@ msgstr "Consolidated Children" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Otillräcklig data!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4400,7 +4402,7 @@ msgstr "Tillgångar" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Bokföring och finans" #. module: account #: view:account.invoice.confirm:0 @@ -4489,7 +4491,7 @@ msgstr "Bokförda tranksationer" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Ingen uppföljning" #. module: account #: view:account.tax.template:0 @@ -4732,7 +4734,7 @@ msgstr "" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Balanserad" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4760,7 +4762,7 @@ msgstr "Kontoplan" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Betalningsreferens" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4834,7 +4836,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Momsmallar" #. module: account #: sql_constraint:account.period:0 @@ -5005,7 +5007,7 @@ msgstr "Avbrutna fakturor" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Mina fakturor" #. module: account #: selection:account.bank.statement,state:0 @@ -5015,7 +5017,7 @@ msgstr "Ny" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Försäljningsmoms" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5068,7 +5070,7 @@ msgstr "Fakturor" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Bocka i om det här företaget är en juridisk person." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5114,7 +5116,7 @@ msgstr "Check" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "eller" #. module: account #: view:account.invoice.report:0 @@ -5285,7 +5287,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Finanshanterare" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5468,7 +5470,7 @@ msgstr "År" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Indikerar att fkturan har skickats." #. module: account #: field:account.tax.template,description:0 @@ -6134,7 +6136,7 @@ msgstr "Fiskal mappning" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Välj företag" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open @@ -6425,7 +6427,7 @@ msgstr "Analysrad" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeller" #. module: account #: code:addons/account/account_invoice.py:1095 @@ -6700,7 +6702,7 @@ msgstr "Fakturanummer" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Skillnad" #. module: account #: help:account.tax,include_base_amount:0 @@ -6776,7 +6778,7 @@ msgstr "" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Ignorera" #. module: account #: selection:account.account,type:0 @@ -6794,7 +6796,7 @@ msgstr "Objekttransaktioner" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Har standardföretag" #. module: account #: view:account.fiscalyear.close:0 @@ -7153,7 +7155,7 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Du måste välja ett startdatum." #. module: account #: view:account.automatic.reconcile:0 @@ -7361,12 +7363,12 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "PayPal-url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Hantera kundbetalningar" #. module: account #: help:report.invoice.created,origin:0 @@ -7401,7 +7403,7 @@ msgstr "Kundfaktura" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Övrigt" #. module: account #: view:account.analytic.line:0 @@ -7475,7 +7477,7 @@ msgstr "Bokföringsrapport" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Kontovaluta" #. module: account #: report:account.invoice:0 @@ -7540,7 +7542,7 @@ msgstr "Ingående balans utgiftskonton" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Kundreferens" #. module: account #: field:account.account.template,parent_id:0 @@ -7597,7 +7599,7 @@ msgstr "Gruppera årsvis på fakturadatum" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Inköpsmoms (%)" #. module: account #: help:res.partner,credit:0 @@ -7699,12 +7701,12 @@ msgstr "Skapa poster" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Huvudvaluta för företaget." #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -8103,7 +8105,7 @@ msgstr "Sekvens" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "PayPal-konto" #. module: account #: selection:account.print.journal,sort_selection:0 @@ -8126,7 +8128,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8136,7 +8138,7 @@ msgstr "Länk till automatiskt genererade transaktioner." #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8159,7 +8161,7 @@ msgstr "Utgående balans" #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Du måste välja minst en post." #. module: account #: field:account.account,parent_id:0 @@ -8171,7 +8173,7 @@ msgstr "Överliggande" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Vinst" #. module: account #: help:account.payment.term.line,days2:0 @@ -8218,7 +8220,7 @@ msgstr "Kassarad" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Redovisningspaket" #. module: account #: report:account.third_party_ledger:0 @@ -8442,7 +8444,7 @@ msgstr "Huvudbok" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Inget räkenskapsår inställt för det här företaget" #. module: account #: view:account.invoice:0 @@ -8550,7 +8552,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Nästa fakturanummer" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8691,7 +8693,7 @@ msgstr "Automatisk import av bankutdrag" #: code:addons/account/account_invoice.py:389 #, python-format msgid "Unknown Error!" -msgstr "" +msgstr "Okänt fel!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile @@ -8701,7 +8703,7 @@ msgstr "Avstäm bankärenden" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Verkställ" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8713,7 +8715,7 @@ msgstr "Kontotyper" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name}-faktura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1211 @@ -8963,7 +8965,7 @@ msgstr "Tillåtna konton (lämna blankt om ingen kontroll skall göras)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Försäljningsmoms (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -9134,7 +9136,7 @@ msgstr "Fel mall !" #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Momsmall" #. module: account #: field:account.invoice.refund,period:0 @@ -9200,7 +9202,7 @@ msgstr "Preliminära fakturor är kontrollerade, validerade och utskrivna." #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: account #: view:account.move:0 @@ -9220,7 +9222,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Företaget har ett räkenskapsår" #. module: account #: help:account.tax,child_depend:0 @@ -9280,7 +9282,7 @@ msgstr "Period från och med" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Valutaenhet" #. module: account #: code:addons/account/account.py:3147 @@ -9611,7 +9613,7 @@ msgstr "Selektera på" #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Antal enheter" #. module: account #: model:process.node,note:account.process_node_manually0 @@ -9636,12 +9638,12 @@ msgstr "Affärshändelse" #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Ogiltig åtgärd" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Datum/period" #. module: account #: report:account.central.journal:0 @@ -9682,7 +9684,7 @@ msgstr "Skapar ett konto med vald mall under existerande förälderkonto." #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Källa" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9709,7 +9711,7 @@ msgstr "" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Skickat" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9720,7 +9722,7 @@ msgstr "Vanlig rapport" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Standardförsäljningsmoms" #. module: account #: report:account.overdue:0 @@ -9816,7 +9818,7 @@ msgstr "Förfallodatum" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Omedelbar betalning" #. module: account #: code:addons/account/account.py:1464 @@ -9964,7 +9966,7 @@ msgstr "Från analyskonto" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Konfigurera ditt räkenskapsår" #. module: account #: field:account.period,name:0 @@ -10261,7 +10263,7 @@ msgstr "Intern typ" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generera poster innan" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10519,7 +10521,7 @@ msgstr "" #: code:addons/account/account_move_line.py:1059 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Kunde inte ändra moms!" #. module: account #: constraint:account.bank.statement:0 @@ -10568,7 +10570,7 @@ msgstr "Fakturans status är klar." #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Hantera uppföljning av kundbetalningar" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10939,7 +10941,7 @@ msgstr "Högerparentes" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Aldrig" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10960,7 +10962,7 @@ msgstr "Företag" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Interna anteckningar" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10993,7 +10995,7 @@ msgstr "Kontoklass" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Förlust" #. module: account #: selection:account.entries.report,month:0 @@ -11065,7 +11067,7 @@ msgstr "Expense Account on Product Template" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Betalningsvillkor för kund" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 1f0bedae931..988807df8b4 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -8,13 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:32+0000\n" +"Last-Translator: Moisés López - http://www.vauxoo.com " +"\n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default @@ -45,7 +46,7 @@ msgstr "" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "Lista de Movimientos." +msgstr "Lista de albaranes" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index d1278dc08db..103fffe2579 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:53+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_plans @@ -133,7 +133,7 @@ msgstr "Não mostre as linhas vazias" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "" +msgstr "Não há linhas analíticas relacionadas com a conta %s." #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -377,7 +377,7 @@ msgstr "Linha de fatura" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Não há um plano analítico definido." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 3b5ff400c52..1ee208e4ec9 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:38+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_bank_statement_extensions @@ -59,7 +59,7 @@ msgstr "Cancelar linhas de instrução selecionadas" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "" +msgstr "Data valor" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -104,7 +104,7 @@ msgstr "Informação do pagamento do lote" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: account_bank_statement_extensions #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 @@ -117,7 +117,7 @@ msgstr "" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "or" -msgstr "" +msgstr "ou" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -226,7 +226,7 @@ msgstr "Manual" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Bank Transaction" -msgstr "" +msgstr "Transação bancária" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -335,7 +335,7 @@ msgstr "Linhas de Declarações Bancárias" #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 #, python-format msgid "Warning!" -msgstr "" +msgstr "Atenção!" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index ac0a210da3a..b47b499b5bf 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-19 00:15+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_budget @@ -59,7 +59,7 @@ msgstr "Validera användare" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "Summering" +msgstr "Skriv ut summering" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index 00252524163..6380969815c 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 17:26+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_followup @@ -23,7 +23,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name}-betalningspåminnelse" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -34,7 +34,7 @@ msgstr "" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "Gruppera" +msgstr "Gruppera efter..." #. module: account_followup #: field:account_followup.print,followup_id:0 @@ -55,7 +55,7 @@ msgstr "" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Manuell åtgärd" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 @@ -88,12 +88,12 @@ msgstr "Fakturadatum" #. module: account_followup #: field:account_followup.print,email_subject:0 msgid "Email Subject" -msgstr "E-postrubrik" +msgstr "E-postämne" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(user_signature)s" -msgstr "" +msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 @@ -103,17 +103,17 @@ msgstr "" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Uppföljningssteg" #. module: account_followup #: field:account_followup.print,email_body:0 msgid "Email Body" -msgstr "" +msgstr "E-posttext" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "" +msgstr "Skicka uppföljningar" #. module: account_followup #: report:account_followup.followup.print:0 @@ -206,12 +206,12 @@ msgstr "Total debet" #. module: account_followup #: field:res.partner,payment_next_action:0 msgid "Next Action" -msgstr "" +msgstr "Nästa åtgärd" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Partner Name" -msgstr "" +msgstr ": Partnernamn" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 @@ -236,7 +236,7 @@ msgstr "Moms:" #: field:account_followup.stat.by.partner,partner_id:0 #: model:ir.model,name:account_followup.model_res_partner msgid "Partner" -msgstr "Företag" +msgstr "Partner" #. module: account_followup #: view:account_followup.followup:0 @@ -256,17 +256,17 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Date :" -msgstr "Datum:" +msgstr "Datum :" #. module: account_followup #: field:account_followup.print,partner_ids:0 msgid "Partners" -msgstr "Företag" +msgstr "Partners" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "Endast en uppföljning per företag är tillåtet" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -292,17 +292,17 @@ msgstr "Ej tvistig" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "" +msgstr "Skicka e-post och generera brev" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "Manuell uppföljning" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(partner_name)s" -msgstr "" +msgstr "%(partner_name)s" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level1 @@ -353,7 +353,7 @@ msgstr "Debet" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "Uppföljningsstatistik" #. module: account_followup #: view:res.partner:0 @@ -374,7 +374,7 @@ msgstr "Ger ordningsföljen vid visning av uppföljningsrader." #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid " will be sent" -msgstr "" +msgstr " kommer att skickas" #. module: account_followup #: view:account_followup.followup.line:0 @@ -385,12 +385,12 @@ msgstr "" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_letter:0 msgid "Send a Letter" -msgstr "" +msgstr "Skicka ett brev" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "" +msgstr "Betalningsuppföljning" #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -417,7 +417,7 @@ msgstr "" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Gör manuella uppföljningar" #. module: account_followup #: report:account_followup.followup.print:0 @@ -427,7 +427,7 @@ msgstr "AB" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Skicka e-postbekräftelse" #. module: account_followup #: view:account_followup.stat:0 @@ -437,7 +437,7 @@ msgstr "" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Senaste uppföljningen" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -448,7 +448,7 @@ msgstr "Skicka email på partnerns språk" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " e-postmeddelande(n) har skickats" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print @@ -496,7 +496,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Kontouppföljning" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -523,22 +523,22 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr "" +msgstr " manuell(a) åtgärd(er) tilldelad(e):" #. module: account_followup #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Sök efter partner" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "" +msgstr "Skicka brev och e-postmeddelanden" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Sök efter uppföljningar" #. module: account_followup #: view:res.partner:0 @@ -554,7 +554,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "or" -msgstr "" +msgstr "eller" #. module: account_followup #: view:res.partner:0 @@ -576,7 +576,7 @@ msgstr "" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Uppföljningsanalys" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -690,7 +690,7 @@ msgstr "Senaste uppföljning" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Ladda ner brev" #. module: account_followup #: field:account_followup.print,company_id:0 @@ -724,7 +724,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " email(s) should have been sent, but " -msgstr "" +msgstr " e-postmeddelande(n) bör ha skickats, men " #. module: account_followup #: help:account_followup.print,test_print:0 @@ -745,7 +745,7 @@ msgstr "Summa:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "" +msgstr "E-postmall" #. module: account_followup #: field:account_followup.print,summary:0 @@ -756,7 +756,7 @@ msgstr "Summering" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Skicka ett e-postmeddelande" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -829,12 +829,12 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Mina uppföljningar" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -873,7 +873,7 @@ msgstr "" #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Uppföljningsrapport" #. module: account_followup #: view:res.partner:0 @@ -890,7 +890,7 @@ msgstr "Avbryt" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Close" -msgstr "" +msgstr "Stäng" #. module: account_followup #: view:account_followup.stat:0 diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index 879683b1ccb..0d5412baa57 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:37+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_payment @@ -29,6 +29,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Carregue para criar uma ordem de pagamento.\n" +"

\n" +" Uma ordem de pagamento é um pedido para que a sua empresa " +"pague\n" +" uma fatura de fornecedor ou uma nota de crédito. " +" \n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -124,6 +133,9 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Não se pode cancelar uma fatura que já tenha sido passada para uma ordem de " +"pagamento. \r\n" +"Remova-a da seguinte ordem de pagamento: %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -195,6 +207,9 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Quando uma ordem é criada, o seu estado é 'Rascunho'.\n" +"Quando o banco for confirmado, o estado passa a 'Confirmada'.\n" +"Quando a ordem for dada como paga, o estado passa a 'Fechada'." #. module: account_payment #: view:payment.order:0 @@ -220,7 +235,7 @@ msgstr "Estruturado" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "Importar linhas de pagamento" #. module: account_payment #: view:payment.line:0 @@ -370,7 +385,7 @@ msgstr "Preencher Declaração do Pagamento da conta" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Não foi indicado um parceiro, na linha." #. module: account_payment #: help:payment.mode,name:0 @@ -402,7 +417,7 @@ msgstr "Rascunho" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: account_payment #: help:payment.line,communication2:0 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index fa65f56c5cc..4d4d26bc972 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:06+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: analytic @@ -123,13 +123,13 @@ msgstr "Gestor de projeto" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: analytic #: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -286,12 +286,12 @@ msgstr "Crédito" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Contrato aberto" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed msgid "Contract closed" -msgstr "" +msgstr "Contrato fechado" #. module: analytic #: selection:account.analytic.account,state:0 @@ -301,7 +301,7 @@ msgstr "Cancelado" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Vista analítica" #. module: analytic #: field:account.analytic.account,balance:0 @@ -311,7 +311,7 @@ msgstr "Balanço" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: analytic #: selection:account.analytic.account,state:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po new file mode 100644 index 00000000000..d88063d425e --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -0,0 +1,72 @@ +# Romanian 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-01-18 18:23+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "sau vizualizare" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "Nimic de facturat, creati" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "cheltuieli" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "Cont Analitic" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "Cheltuieli de Facturat de %s" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#, python-format +msgid "Expenses of %s" +msgstr "Cletuieli de %s" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "necunoscut(a)" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "Estimare a Cheltuielilor de Facturat" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "Incarca Cheltuielile" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "⇒ Factura" diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 5794225ed58..505fb839070 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:39+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Linha analítica" #. module: analytic_user_function #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index 50171141950..0862894d4c6 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -8,44 +8,44 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 18:55+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Linie Analitica" #. module: analytic_user_function #: view:account.analytic.account:0 msgid "Invoice Price Rate per User" -msgstr "" +msgstr "Facturati Rata de Pret per Utilizator" #. module: analytic_user_function #: field:analytic.user.funct.grid,product_id:0 msgid "Service" -msgstr "" +msgstr "Service" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Pret per Utilizator" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 msgid "Price" -msgstr "" +msgstr "Pret" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Pretul pe ora pentru acest utilizator" #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -58,12 +58,12 @@ msgstr "Cont Analitic" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 msgid "Invoicing Data" -msgstr "" +msgstr "Date pentru facturare" #. module: analytic_user_function #: field:account.analytic.account,user_product_ids:0 @@ -79,11 +79,16 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"Definiti un serviciu specific (de exemplu Senior Consultant)\n" +" si un pret pentru unii utilizatori care folosesc " +"aceste date in locul\n" +" valorilor implicite atunci cand facturati " +"clientul." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unitatea de Masura" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:107 @@ -107,6 +112,12 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" +"OpenERP va cauta in mod recursiv in conturile principale\n" +" pentru a verifica daca anumite conditii sunt " +"definite pentru un\n" +" anumit utilizator. Acest lucru permite setarea " +"conditiilor\n" +" de facturare pentru un grup de contracte." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index e7855c6794b..9de202d5309 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.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: 2013-01-16 12:54+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-18 10:32+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: anonymization @@ -35,7 +35,7 @@ msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "" +msgstr "Versão alvo" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 @@ -65,7 +65,7 @@ msgstr "Campo" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Nova" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index 7cc72a5ecaa..6632b757107 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-19 09:50+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: anonymization @@ -30,17 +30,17 @@ msgstr "Obiect" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" -msgstr "" +msgstr "ir.model.campuri.anonimizare.migrare.repara" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "" +msgstr "Versiunea Tinta" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "sql" -msgstr "" +msgstr "sql" #. module: anonymization #: code:addons/anonymization/anonymization.py:91 @@ -50,6 +50,10 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"Anonimizarea bazaei de date este momentan intr-un stadiu instabil. Unele " +"campuri sunt anonimizate, in timp ce altele nu sunt anonimizate. Ar trebui " +"sa incercati sa rezolvati aceasta problema inainte de a incerca sa creati, " +"sa scrieti sau sa stergeti campuri." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +69,7 @@ msgstr "Camp" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Nou(a)" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,12 +88,14 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Inainte de a executa procesul de anonimizare, ar trebui sa faceti o copie de " +"rezerva a bazei dumneavoastra de date." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -128,7 +134,7 @@ msgstr "necunoscut(a)" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "Valoarea anonimizarii este Niciuna. Acest lucru nu este posibil." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -141,6 +147,8 @@ msgid "" "This is the file created by the anonymization process. It should have the " "'.pickle' extention." msgstr "" +"Acesta este fisierul creat prin procesul de anonimizare. Ar trebui sa aiba " +"extensia '.pickle'." #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 @@ -164,6 +172,8 @@ msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." msgstr "" +"Nu pot fi anonimizate campurile de tipul: binar, many2many, many2one, " +"one2many, referinta." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -178,7 +188,7 @@ msgstr "Anonimizare baza de date" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "python" -msgstr "" +msgstr "python" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 @@ -199,6 +209,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"Nu este posibila inversarea procesului de anonimizare fara a furniza " +"fisierul de export anonimizare." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -219,6 +231,10 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"Anonimizarea bazei de date este momentan intr-un stadiu instabil. Unele " +"campuri sunt anonimizate, in timp ce altele nu sunt anonimizate. Ar trebui " +"sa incercati sa rezolvati aceasta problema inainte de a incerca sa faceti " +"ceva." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -250,7 +266,7 @@ msgstr "Istoric Anonimizare" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -265,13 +281,17 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" +"Anonimizarea bazei de date este momentan intr-un stadiu instabil. Unele " +"campuri sunt anonimizate, in timp ce altele nu sunt anonimizate. Ar trebui " +"sa incercati sa rezolvati aceasta problema inainte de a incerca sa faceti " +"orice altceva." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Eroare !" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -287,7 +307,7 @@ msgstr "Nume fisier" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secventa" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -303,7 +323,7 @@ msgstr "Inceput" #: code:addons/anonymization/anonymization.py:389 #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." -msgstr "" +msgstr "Baza de date este anonimizata, nu o puteti anonimiza din nou." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 @@ -314,7 +334,7 @@ msgstr "Efectuat" #: field:ir.model.fields.anonymization.migration.fix,query:0 #: field:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "Query" -msgstr "" +msgstr "Interogare" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index de059e753a3..26ad2132cd2 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-19 09:53+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: association @@ -139,9 +139,9 @@ msgstr "Evenimente" #: view:profile.association.config.install_modules_wizard:0 #: field:profile.association.config.install_modules_wizard,project:0 msgid "Project Management" -msgstr "Managementul proiectelor" +msgstr "Managementul Proiectelor" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "Configurati" +msgstr "Configureaza" diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 326496492e9..342eae1b330 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:42+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: audittrail @@ -62,7 +62,7 @@ msgstr "Regra Audittrail" #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: audittrail #: view:audittrail.view.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index 5867a5aae62..c03e2579dda 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 18:59+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: audittrail @@ -45,7 +45,7 @@ msgstr "Abonat" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "Modelul '%s' nu exista..." #. module: audittrail #: view:audittrail.rule:0 @@ -62,7 +62,7 @@ msgstr "Regula pistei de audit" #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: audittrail #: view:audittrail.view.log:0 @@ -224,7 +224,7 @@ msgstr "Selectati obiectul pentru care doriti sa generati un jurnal" #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Audit" #. module: audittrail #: field:audittrail.rule,log_workflow:0 @@ -308,7 +308,7 @@ msgstr "Stergere Jurnal" #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -349,7 +349,7 @@ msgstr "Valoarea noua" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "campul '%s' nu exista in modelul '%s'" #. module: audittrail #: view:audittrail.log:0 @@ -403,7 +403,7 @@ msgstr "Linie Jurnal" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "sau" #. module: audittrail #: field:audittrail.rule,log_action:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index cb99446928d..bd9307f1615 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:35+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Utilizador modelo" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -62,6 +62,8 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Criar automaticamente contas locais para os novos utilizadores que se " +"autentiquem via LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 @@ -96,7 +98,7 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Utilizador a ser copiado aquando da criação de utilizadores" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po new file mode 100644 index 00000000000..6078ecaedb5 --- /dev/null +++ b/addons/auth_oauth/i18n/sv.po @@ -0,0 +1,135 @@ +# Swedish 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-01-19 00:21+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "Leverantörsnamn" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "OAuth-leverantör" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "CSS-klass" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "okänd" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "Klient-ID" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "OAuth-leverantörer" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "OAuth2-leverantör" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "OAuth-användar-ID" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "Tillåt användare att logga in med hjälp av Facebook" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "Data-URL" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Leverantörer" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po new file mode 100644 index 00000000000..677e8dd4f4c --- /dev/null +++ b/addons/auth_signup/i18n/ro.po @@ -0,0 +1,293 @@ +# Romanian 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-01-19 11:51+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "Inregistrare Tip Simbol" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "Permite utilizatorilor sa se inregistreze" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Confirma Parola" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" +"Daca nu este selectat, doar utilizatorii invitati pot sa se inregistreze." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings (setari.config.de_baza)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" +"Email-ul nu poate fi trimis: utilizatorul nu are nici o adresa de email." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Reseteaza parola" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" +"Sablon de utilizator pentru utilizatorii noi creati prin inregistrare" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "Parola resetata" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "Va rugam sa introduceti o parola si sa o confirmati." + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "Trimiteti un email utilizatorului pentru a (re)seta parola." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "Inregistrare" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Nou(a)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "Email trimis catre:" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "Stare" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

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

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

O resetare a parolei a fost ceruta pentru contul OpenERP asociat acestui " +"email.

\n" +"\n" +"

Va puteti schimba parola urmand this " +"link.

\n" +"\n" +"

Nota: Daca nu asteptati aceasta, puteti ignora acest email.

" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Va rugam sa introduceti un nume" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "URL Inregistrare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "Va rugam sa introduceti un nume de utilizator." + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Activ(a)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" +"Email-ul nu a putut fi trimis: nu a fost configurat nici un server pentru " +"iesire email-uri.\n" +"Il puteti configura din Setari/Setari Generale." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Nume de utilizator" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Nume" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "Va rugam sa introduceti un nume de utilizator sau o adresa de email." + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "Resetare Parola" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "Nume de utilizator (Email)" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "Expirare Inregistrare" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" +"Le permite utilizatorilor sa declanseze o resetare a parolei din Pagina de " +"autentificare." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Autentificare" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "Simbolul de inregistrare este Valabil" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "Simbol de inregistrare nevalid" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "Parolele nu se potrivesc; va rugam sa le scrieti din nou." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Nu a fost selectata nicio baza de date !" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "Reseteaza Parola" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "Activeaza resetarea parolei din pagina de autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Inapoi la Autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "Inregistrare" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partener" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "Simbol Inregistrare" diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index 61f9447d391..84a54ff4240 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-19 13:22+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "In desfasurare" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- In aceeasi vizualizare \"Cauta\", selectati meniul \"Salveaza Filtrul " +"Actual\", introduceti numele (De exemplu: Creati data 01/01/2012) si " +"adaugati optiunea \"Imparte cu toti utilizatorii\"." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Reguli de actiune" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Selectati un filtru sau un cronometru drept conditie." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +51,17 @@ msgstr "Responsabil" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Exemple: memento-uri email, suna service obiect, etc." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Adauga Urmariri" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Seteaza Responsabilul" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,21 +70,24 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Intarziere dupa data declansarii. Puteti pune un numar negativ daca aveti " +"nevoie de o intarziere inainte de data declansarii, cum ar fi trimiterea " +"unui memento cu 15 minute inaintea unei sedinte." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "baza.actiune.regula.pista.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Inchis(a)" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Nou(a)" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,17 +102,17 @@ msgstr "Conditii" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "In asteptare" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Inainte de Actualizarea Filtrului" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +124,8 @@ msgstr "Regula actiunii" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Daca este prezenta, aceasta actiune trebuie indeplinita dupa actualizarea " +"inregistrarii." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +135,12 @@ msgstr "Campuri care vor fi schimbate" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Filtrul trebuie sa fie disponibil in aceasta pagina." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Dupa Actualizarea Filtrului" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +150,7 @@ msgstr "Ore" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Pentru a crea un filtru nou:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +171,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"O regula a actiunii este selectata atunci cand creati sau modificati \"Model " +"de Document Asociat\". Filtrul preconditie este selectat chiar inaintea " +"modificarii, in timp ce filtrul postconditie este selectat dupa modificare. " +"Prin urmare, un filtru preconditie nu va functiona in timpul unei creari." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Conditie de Filtrare" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +188,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Mergeti la pagina \"Model de Document Asociat\" si setati parametrii de " +"filtrare in vizualizarea \"Cauta\" (Exemplu de filtru bazat pe " +"Piste/Oportunitati: Data Crearii \"este egala cu\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -206,7 +221,7 @@ msgstr "Zile" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Cronometru" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,22 +231,23 @@ msgstr "Tip intarziere" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Actiuni de server de rulat" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" +"Atunci cand nu este selectata, regula este ascunsa si nu va fi executata." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Anulat(a)" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -246,13 +262,15 @@ msgstr "Minute" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Model Document Asociat" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Daca este prezenta, aceasta conditie trebuie indeplinita inaintea " +"actualizarii inregistrarii." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +298,20 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a configura o nouaq regula de actiune " +"automata. \n" +"

\n" +" Folositi actiunile automate pentru a declansa automat " +"pentru\n" +" diverse ecrane. Exemplu: o pista creata de un anumit " +"utilizator poate\n" +" fi setata automat unei anumite echipe de vanzari, sau\n" +" o oportunitate a carei stare este inca in asteptare dupa 14 " +"zile poate\n" +" declansa un email automat de reamintire.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -289,7 +321,7 @@ msgstr "Data Crearii" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Ultima Actiune" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,9 +337,9 @@ msgstr "Data declansarii" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Actiuni Server" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Subiect" diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 4852a963dbc..12dfc6daa23 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 09:11+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_calendar @@ -44,7 +44,7 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Saptamani" #. module: base_calendar #: field:calendar.event,we:0 @@ -68,7 +68,7 @@ msgstr "Intalnire recurenta" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Feedback Intalnire" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -145,7 +145,7 @@ msgstr "Specifica tipul Invitatiei" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -180,7 +180,7 @@ msgstr "Gratuit" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -232,12 +232,12 @@ msgstr "Ultimul/a" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -264,7 +264,7 @@ msgstr "Presedinte" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Intalnirile mele" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -303,17 +303,17 @@ msgstr "Statusul participarii participantului" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "E-mail catre" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Subiectul Intalnirii" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Sfarsitul Recurentei" #. module: base_calendar #: view:calendar.event:0 @@ -334,7 +334,7 @@ msgstr "Alegeti ziua in care sa repetati intalnirea" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Intalniri" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -360,6 +360,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, icu scopul de a se introduce in vizualizari kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 @@ -483,7 +485,7 @@ msgstr "Ziua din luna" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: base_calendar #: field:calendar.event,location:0 @@ -530,26 +532,26 @@ msgstr "Informatii alarma eveniment" #: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "Valoarea nu poate fi negativa sau 0." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Data Crearii" #. 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 "Intalnire" #. 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 "Luna (luni)" #. module: base_calendar #: view:calendar.event:0 @@ -571,7 +573,7 @@ msgstr "URL Caldav" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Wizard Invitatie" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -595,7 +597,7 @@ msgstr "Joi" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Detaliile Intalnirii" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -606,21 +608,21 @@ msgstr "Delegat la" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "Urmatoarele contacte nu au adrese de email :" #. 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 "An(i)" #. 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 "Tipuri de Intaliniri" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -638,7 +640,7 @@ msgstr "Public pentru Angajati" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "ore" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -660,7 +662,7 @@ msgstr "Repeta pana cand" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Optiuni" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -699,7 +701,7 @@ msgstr "Marti" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etichete" #. module: base_calendar #: view:calendar.event:0 @@ -733,7 +735,7 @@ msgstr "Permite repetarea automata a evenimentului in acel interval" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Calendar" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -750,6 +752,8 @@ msgstr "Refuzat(a)" #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"Gruparea dupa data nu este acceptata, folositi in schimb vizualizarea " +"calendar." #. module: base_calendar #: view:calendar.event:0 @@ -826,7 +830,7 @@ msgstr "Atasament" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Inchis(a)" #. module: base_calendar #: view:calendar.event:0 @@ -851,7 +855,7 @@ msgstr "Numar de repetari" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Intalnire Interna" #. module: base_calendar #: view:calendar.event:0 @@ -868,7 +872,7 @@ msgstr "Evenimente" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -878,7 +882,7 @@ msgstr "Email-ul Persoanei Invitate" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Intalnire Clienti" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -906,7 +910,7 @@ msgstr "Luni" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Deschide Discutia" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -930,7 +934,7 @@ msgstr "Data Evenimentului" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Invitatii" #. module: base_calendar #: view:calendar.event:0 @@ -941,7 +945,7 @@ msgstr "-l" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Scrie Data" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -951,7 +955,7 @@ msgstr "Delegat de la" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -1011,6 +1015,7 @@ msgstr "Nesigur(a)" #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." msgstr "" +"Eroare ! Data de sfarsit nu poate fi setata inainte de data de inceput." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1105,7 +1110,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Incepand de la" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1134,12 +1139,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Incheiere Recurenta" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Pana la" #. module: base_calendar #: view:res.alarm:0 @@ -1149,12 +1154,12 @@ msgstr "Detalii Memento" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Intalnire in afara biroului" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Ziua din Luna" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1171,7 +1176,7 @@ msgstr "Repeta fiecare (Zile/Saptamana/Luna/An)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Intreaga Zi?" #. module: base_calendar #: view:calendar.event:0 @@ -1192,6 +1197,16 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a programa o noua intalnire.\n" +"

\n" +" Calendarul este impartit intre angajati si este complet integrat " +"cu\n" +" alte aplicatii, cum ar fi concediile angajatilor sau " +"oportunitatile de\n" +" afaceri.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1211,7 +1226,7 @@ msgstr "Utilizator responsabil" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Selectati Zilele Saptamanii" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1514 @@ -1293,7 +1308,7 @@ msgstr "Luna" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Zi (zile)" #. module: base_calendar #: view:calendar.event:0 @@ -1342,7 +1357,7 @@ msgstr "ir.valori" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Cauta Intalniri" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1352,7 +1367,7 @@ msgstr "ir.atasament" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Tipul Intalnirii" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1378,11 +1393,19 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a seta un nou tip de alarma.\n" +"

\n" +" Puteti defini un tip personalizat de alarma pe calendar care " +"poate fi\n" +" atribuit evenimentelor sau intalnirilor din calendar.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Neconfirmat" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1435,7 +1458,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Mesaj" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1460,7 +1483,7 @@ msgstr "Aprilie" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "Adresele de email nu au fost gasite" #. module: base_calendar #: view:calendar.event:0 @@ -1478,7 +1501,7 @@ msgstr "Zi lucratoare" #: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." -msgstr "" +msgstr "Intervalul nu poate fi negativ" #. module: base_calendar #: field:calendar.event,byday:0 @@ -1491,7 +1514,7 @@ msgstr "Dupa zi" #: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "Mai intai trebuie sa specificati data invitatiei." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1574,7 +1597,7 @@ msgstr "Sambata" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Repeta fiecare" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po new file mode 100644 index 00000000000..e3923c8002e --- /dev/null +++ b/addons/base_gengo/i18n/ro.po @@ -0,0 +1,264 @@ +# Romanian 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-01-19 18:58+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Comentarii pentru Traducator" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "ID Sarcina Gengo" + +#. 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 "Aceasta limba nu este acceptata de serviciile de traducere Gengo." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Comentarii" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Cheie Privata Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "baza.gengo.traduceri" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Sarcinile sunt Aprobate Automat de Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Limba" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Comentarii si Activitati Asociate lui Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Traducere Sinc Gengo (Raspuns)" + +#. 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 "" +"Lipseste `Cheia Publica` sau `Cheia Privata`Gengo. Introduceti parametrii de " +"autentificare Gengo in `Setari > Companii > Parametri Gengo`." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Traducere mecanica" + +#. 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" +" Comentat in %s de %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Nivelul Serviciului de Traduceri Gengo" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Serviciul de traduceri Gengo selectat nu este acceptat pentru aceasta limba." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standard" + +#. 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 "" +"Aici puteti selecta nivelul serviciului pe care il doriti pentru o traducere " +"automata folosind Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Reporniti Trimiterea Sarcinii" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "De Aprobat in Gengo" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Cheie Privata" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Cheie Publica" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Cheie Publica Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "Traducere Sinc Gengo (Cerere)" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Traduceri" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Aprobati Automat Traducerea" + +#. 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: Cerere Manuala pentru Traducere" + +#. 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 "Eroare de Autentificare Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Companii" + +#. 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 "" +"Nota: Daca starea traducerii este 'In Desfasurare', inseamna ca traducerea " +"trebuie aprobata pentru a fi incarcata in acest sistem. Trebuie sa faceti " +"aceasta direct folosind Contul dumneavoastra Gengo" + +#. 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 "" +"Conexiunea Gengo a esuat cu acest mesaj:\n" +"``%s``" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "Parametri Gengo" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Trimite" + +#. 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.traducere" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Serviciul de Traducere Gengo" + +#. 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 "Formular de Cerere Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Avertisment" + +#. 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 "" +"Acest comentariu va fi inclus automat in fiecare cerere trimisa catre Gengo" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Anuleaza" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "sau" diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po new file mode 100644 index 00000000000..711c4adf048 --- /dev/null +++ b/addons/base_import/i18n/ro.po @@ -0,0 +1,1334 @@ +# Romanian 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-01-20 19:05+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "Obtineti toate valorile posibile" + +#. 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 "Aveti nevoie sa importati date dintr-o alta aplicatie?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"Atunci cand folositi ID-uri Externe, puteti importa fisiere CSV \n" +" cu coloana \"ID Extern\" pentru a defini ID-ul " +"Extern \n" +" a fiecarei inregistrari pe care o importati. Apoi, " +"veti putea \n" +" sa faceti o trimitere la acea inregistrare cu " +"coloane precum \n" +" \"Camp/ID Extern\". Urmatoarele doua fisiere CSV va " +"dau un exemplu \n" +" pentru Produse si Categoriile lor." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"Cum exportati/importati diferite tabele dintr-o aplicatie \n" +" SQL in OpenERP?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Campuri de Legatura" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"ID Tara/Baza de date: ID-ul unic OpenERP pentru o \n" +" inregistrare, definit de coloana ID postgresql" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" +"Folositi \n" +" ID Tara/Baza de date: Ar trebui sa folositi rar " +"aceasta \n" +" notatie. Este folosita mai ales de catre " +"dezvoltatori deoarece avantajul \n" +" ei principal este de a nu avea conflicte niciodata " +"(puteti avea \n" +" mai multe inregistrari cu acelasi nume, dar ele au \n" +" intotdeauna un ID unic in baza de date)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" +"Pentru tara \n" +" Belgia, puteti utiliza unul din aceste 3 moduri de a " +"importa:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "compania_1,Bigees, Adevarat" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "baza_import.teste.modele.m2o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"copiati \n" +" (selectati 'companie_'||id drept \"ID " +"Extern\",companie_nume \n" +" drept \"Nume\",'Adevarat' drept \"Este o Companie\" " +"din companii) CATRE \n" +" '/tmp/company.csv' cu ANTET CSV;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "Fisier CSV pentru Producator, Comerciant cu amanuntul" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Folositi \n" +" Tara/ID Extern: Folositi ID Extern atunci cand " +"importati \n" +" date dintr-o aplicatie terta." + +#. 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 "persoana_1,Fabien,Fals,companie_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/ID Extern" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Nu importati" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Selectati" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" +"Daca fisierul dumneavoastra CSV \n" +" are o tabulare drept separator, OpenERP nu va \n" +" detecta separarile. Va trebui sa schimbati \n" +" optiunile de format de fisier in aplicatia tabel. \n" +" Vezi urmatoarea intrebare." + +#. 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 "Tara: numele sau codul tarii" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "baza_importa.teste.modele.o2m.secundar" + +#. 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 "Pot importa aceeasi inregistrare de mai nulte ori?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Valideaza" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Trasati-va datele in OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Folositi Tara: Aceasta \n" +" este cea mai usoara modalitate cand datele " +"dumneavoastra provin din fisiere CSV \n" +" care au fost create manual." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"Care este diferenta intre ID-ul BAzei de date si \n" +" ID-ul Extern?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"De exemplu, pentru a face \n" +" trimiterea la tara unui contact, OpenERP va propune " +"\n" +" 3 campuri diferite de importat:" + +#. 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 "Ce pot face daca am mai multe potriviri pentru un camp?" + +#. 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 "ID Extern,Nume,Este o Companie" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Niste Valori" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" +"Urmatorul fisier CSV va arata cum sa importati \n" +" furnizorii si contactele lor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"Cum pot modifica optiunile de format de fisiere CSV atunci cand \n" +" salvez aplicatia tabel?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"Asa cum puteti vedea in acest fisier, Fabien si Laurence \n" +" lucreaza pentru conpania Bigees (compania_1), iar \n" +" Eric lucreaza pentru compania Organi. Relatia \n" +" dintre persoane si companii este realizata folosind " +"\n" +" ID-ul Extern al companiilor. A trebuit sa adaugam un " +"prefix la \n" +" \"ID-ul Extern\" dupa numele tabelului pentru a " +"evita un \n" +" conflict de ID intre persoane si companii " +"(persoana_1 \n" +" si compania_1 care imparteau acelasi ID 1 in baza de " +"date \n" +" originala)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" +"copiati (selectati \n" +" 'persoana_'||id drept \"ID Extern\",persoana_nume " +"drept \n" +" \"Nume\",'Fals' drept \"Este o " +"Companie\",'companie_'||companie_id\n" +" drept \"Compania Asociata/ID Extern\" de la " +"persoane) CATRE \n" +" '/tmp/person.csv' cu CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Tara: Belgia" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "base_import.teste.modele.car.doarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"ID Extern,Nume,Este o \n" +" Companie,Compania Asociata/ID Extern" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "Furnizori si contactele lor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" +"Daca de exemplu aveti doua categorii de produse cu \n" +" numele \"Vandabil\" (adica \"Diverse \n" +" Produse/Vandabil\" & \"Alte Produse/Vandabil\"),\n" +" validarea dumneavoastra este oprita, dar puteti inca " +"importa \n" +" datele dumneavoastra. Totusi, va recomandam sa nu " +"importati \n" +" datele pentru ca toate vor fi legate de prima \n" +" categorie 'Vandabil' aflata in lista Categoria " +"Produsului \n" +" (\"Diverse Produse/Vandabil\"). Va recomandam sa " +"modificati \n" +" valorile uneia dintre copii sau ierarhia \n" +" categoriei produsului." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"Pentru a crea fisierul CSV pentru persoane, asociat \n" +" companiilor, vom folosi urmatoarea comanda SQL in \n" +" PSQL:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Microsoft Excel va va permite \n" +" sa modificati doar codarea atunci cand salvati \n" +" (in caseta de dialog 'Salveaza Ca' > click 'Unelte' " +"lista \n" +" verticala > tabul Codare)." + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Alte VAriabile" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"vor fi de asemenea folosite pentru a actualiza importul\n" +" original daca trebuie sa reimportati mai tarziu " +"datele\n" +" modificate, este bine sa mentionati acest lucru\n" +" ori de cate ori este posibil" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"filsier de importat. Daca aveti nevoie de un model de fisier icare se poate " +"importa,\n" +" puteti folosi unealta de exportare pentru a genera unul." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" +"Tara/Baza de date \n" +" ID: 21" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "baza_import.teste.modele.car" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "Fisier de verificat si/sau importat, binar prim (nu baza64)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Comenzile de achizitie cu liniile comenzilor lor de achizitie" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"Daca fisierul contine\n" +" numele coloanelor, OpenERP poate incerca sa detecteze " +"automat\n" +" campul corespunzator coloanei. Astfel, importurile sunt\n" +" mai usor de efectuat, mai ales atunci cand fisierul are " +"multe coloane." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +". Problema este\n" +" de obicei o codare incorecta a fisierului." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "baza_import.teste.modele.m2o.obligatorii" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "baza_import.teste.modele.car.nudoarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" +"Daca editati si salvati fisierele CSV in aplicatiile cu \n" +" tabele, setarile regionale ale calculatorului " +"dumneavoastra vor \n" +" fi aplicate pentru separator si delimitator. \n" +" Va sugeram sa folositi OpenOffice sau LibreOffice " +"Calc \n" +" deoarece va vor permite sa modificati toate cele " +"trei optiuni \n" +" (in casuta de dialog 'Salveaza Ca' > Bifati casuta " +"'Editeaza setarile \n" +" filtrului' > Salveaza)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "Fisier CSV:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "baza_import.teste,modele.previzualizare" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "baza_import.teste.modele.car.obligatoriu" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "ID-ul Bazei de date" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "Va produce urmatorul fisier CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Iata inceputul fisierului pe care nu l-am putut importa:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Tipul Fisierului" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "baza_import.import" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "baza_import.teste.modele.o2m" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Previzualizarea importului a esuat din cauza:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"Tara/ID Extern: ID-ul acestei inregistrari \n" +" are referinta in alta aplicatie (sau fisierul .XML \n" +" care a importat-o)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Reincarcati datele pentru a verifica modificarile." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "baza_import.teste.modele.car.doarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" +"Unele campuri definesc o relatie cu un alt \n" +" obiect. De exemplu, tara unui contact este o \n" +" legatura la o inregistrare a obiectului 'Tara'. " +"Atunci cand \n" +" doriti sa importati asemenea fisiere, OpenERP va \n" +" recrea legaturile dintre diferite inregistrari. \n" +" Pentru a va ajuta sa importati asemenea fisiere, " +"OpenERP ofera 3 \n" +" mecanisme. Trebuie sa doar un mecanism \n" +" pentru fiecare camp pe care doriti sa il importati." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" +"Etichetele ar trebui separate prin virgula, fara nici un alt \n" +" spatiu. De exemplu, daca doriti ca clientul " +"dumneavoastra sa fie \n" +" aliniat la ambele etichete 'Producator' si " +"'Comerciant cu amanuntul' \n" +" atunci il veti coda dupa cum urmeaza \"Producator,\n" +" Comerciant cu amanuntul\" in aceeasi coloana a " +"fisierului dumneavoastra CSV." + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Trebuie sa configurati cel putin un camp de importat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "compania_2,Organi,Adevarat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" +"Primul rand al\n" +" fisierului contine eticheta coloanei" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "baza_import.teste.modele.car.state" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Importa un Fisier CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Cotare:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "baza_import.teste.modele.m2o.obligatoriu.asociat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Import" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "Iata valorile posibile" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "-l" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" +"A fost gasita o singura coloana in fisier, acest lucru inseamna adesea ca " +"separatorul fisierului este incorect" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "descarcarea unei baze de date PostgreSQL" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "Aceasta comanda SQL va crea urmatorul fisier CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"Urmatorul fisier CSV va arata cum sa importati comenzile de \n" +" achizitie cu liniile comenzii de achizitie " +"corespunzatoare:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"Ce pot face atunci cand tabelul din previzualizarea Importului nu este \n" +" afisat corect?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "necunoscut(a)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "persoana_2,Laurence,Fals,compania_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "Tara/ID Extern: baza.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"Drept exemplu, sa presupunem ca aveti o baza de date SQL \n" +" cu doua tabele pe care doriti sa le importati: " +"companii si \n" +" persoane. Fiecare persoana apartine unei companii, " +"astfel ca \n" +" va trebui sa recreati legatura dintre o persoana si " +"\n" +" compania pentru care lucreaza. (Daca doriti sa " +"testati acest \n" +" exemplu, iata" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "(%d mai mult)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Fisier pentru niste Cotatii" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index 137454067f3..f11adb2ea87 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 09:14+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_report_designer @@ -180,7 +180,7 @@ msgstr "Anuleaza" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "sau" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index e81bfb2e9b8..394b66efdda 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.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: 2013-01-11 17:55+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:32+0000\n" +"Last-Translator: Antonio Fregoso \n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_setup @@ -69,7 +69,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Acceso al portal" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index 14e86d70af3..8b659186636 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 17:40+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "E-postintegration" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -30,12 +30,12 @@ msgstr "Gäst" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontakter" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -59,7 +59,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "FÖRSÄLJNING" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -69,12 +69,12 @@ msgstr "Medlem" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Portaltillgång" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Autentisering" #. module: base_setup #: view:sale.config.settings:0 @@ -86,7 +86,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Allmänna inställningar" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,12 +96,12 @@ msgstr "Välgörare" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-post" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -111,12 +111,12 @@ msgstr "Tålamod" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Tillåt använda att importera data från CSV-filer" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Hantera flera företag" #. module: base_setup #: view:sale.config.settings:0 @@ -126,17 +126,17 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=DIN_DATABAS" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Hämta automatiskt kontakter från LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Aktivera Thunderbird-tillägg" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +146,22 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Kundfunktioner" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Importera/exportera" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Försäljningsfunktioner" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Aktivera Outlook-tillägg" #. module: base_setup #: view:base.setup.terminology:0 @@ -219,12 +219,12 @@ msgstr "" #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" -msgstr "Hur kontaktar du en kund" +msgstr "Hur ringer du en kund" #. module: base_setup #: view:base.config.settings:0 @@ -269,7 +269,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "Företag" +msgstr "Partner" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -280,7 +280,7 @@ msgstr "Använd ett annat ord för \"kund\"" #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Konfigurera försäljningar" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -297,12 +297,12 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Alternativ" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Aktivera kundportalen" #. module: base_setup #: view:base.config.settings:0 @@ -315,32 +315,32 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Tillåt dokumentdelning" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(företagsnyheter, jobb och kontaktformulär m.m.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Aktivera den offentliga portalen" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Konfigurera utgående e-postservrar" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Integration med sociala nätverk" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Ge dina kunder tillgång till deras dokument" #. module: base_setup #: view:base.config.settings:0 @@ -352,7 +352,7 @@ msgstr "Avbryt" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Verkställ" #. module: base_setup #: view:base.setup.terminology:0 @@ -363,9 +363,9 @@ msgstr "Ange din terminologi" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "eller" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Konfigurera ditt företags data" diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 0e2125de00d..5632514aeb8 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.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: 2013-01-15 11:16+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-18 10:44+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_status @@ -48,6 +48,8 @@ msgid "" "You can not escalate, you are already at the top level regarding your sales-" "team category." msgstr "" +"Não pode subir de grau porque já está no topo no que concerne à categoria da " +"sua equipa de vendas." #. module: base_status #: code:addons/base_status/base_state.py:193 @@ -68,6 +70,8 @@ msgid "" "You are already at the top level of your sales-team category.\n" "Therefore you cannot escalate furthermore." msgstr "" +"Já está no topo no que concerne à categoria da sua equipa de vendas.\n" +"Não pode subir mais." #. module: base_status #: code:addons/base_status/base_state.py:181 diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index 583a33fbb50..2b0babb133a 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -8,13 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 02:22+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_status @@ -33,7 +34,7 @@ msgstr "%s foi aberta." #: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." -msgstr "%s foi revisado ." +msgstr "%s foi renovado." #. module: base_status #: code:addons/base_status/base_stage.py:210 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 58612fc7c16..ded711f8bc7 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 09:15+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Verifica Valabilitatea" #. module: base_vat #: code:addons/base_vat/base_vat.py:147 @@ -46,7 +46,7 @@ msgstr "Companii" #: code:addons/base_vat/base_vat.py:111 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: base_vat #: help:res.partner,vat_subjected:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 7ccaaef6dd9..6d6ded7f1bf 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.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: 2013-01-08 18:01+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-18 10:46+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: claim_from_delivery @@ -30,4 +30,4 @@ msgstr "Ordem de entrega" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Reclamação de entrega" diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index 76062f81a81..4a0ffa68542 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -8,14 +8,13 @@ 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-01-09 10:29+0000\n" -"Last-Translator: Pierre Lamarche (www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2013-01-18 13:39+0000\n" +"Last-Translator: Numérigraphe \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-01-18 06:38+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm @@ -57,6 +56,11 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Attention nouvelle piste non traitée depuis plus de 5 jours.\n" +"Nom : [[object.name]]\n" +"Id. : [[object.id]]\n" +"Description : [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 @@ -331,6 +335,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour définir une segmentation de la clientèle.\n" +" \n" +" Créer des catégories que vous pouvez assigner à vos\n" +" contacts pour mieux gérer vos interactions avec eux.\n" +" L'outil de segmentation est en mesure d'assigner des \n" +" catégories aux contacts selon des critères que vous " +"définissez.\n" +" \n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -560,6 +574,10 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"Le statut est mis \"À faire\", quand une affaire est créée. Si l'affaire " +"progresse, le statut devient 'Ouvert'. Quand l'appel est terminé, le statut " +"devient 'Effectué'. Si l'appel doit être fait alors le statut est 'Non " +"effectué'." #. module: crm #: field:crm.case.section,message_summary:0 @@ -636,6 +654,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez ici pour ajouter une nouvelle catégorie.\n" +" \n" +" Créez des catégories spécifiques d'appels téléphoniques afin de " +"mieux définir le type des\n" +" appels suivis dans le système.\n" +" \n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -820,6 +846,8 @@ msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." msgstr "" +"Lien entre les étapes et les équipes de vente. Lorsqu’il est renseigné, " +"cela limite l'étape aux équipes de vente sélectionnées." #. module: crm #: view:crm.case.stage:0 @@ -996,6 +1024,9 @@ msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." msgstr "" +"Permet de suivre les réclamations et doléances de vos clients et " +"fournisseurs.\n" +" Cela installe le module de crm_claim." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 diff --git a/addons/crm_helpdesk/i18n/pt.po b/addons/crm_helpdesk/i18n/pt.po index 78c03e5a1b1..7f5e9a183c2 100644 --- a/addons/crm_helpdesk/i18n/pt.po +++ b/addons/crm_helpdesk/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:36+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk @@ -106,7 +106,7 @@ msgstr "Cancelado" #. module: crm_helpdesk #: help:crm.helpdesk,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: crm_helpdesk #: model:ir.actions.act_window,name:crm_helpdesk.action_report_crm_helpdesk @@ -400,7 +400,7 @@ msgstr "Pendente" #: view:crm.helpdesk.report:0 #: field:crm.helpdesk.report,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 diff --git a/addons/crm_helpdesk/i18n/sv.po b/addons/crm_helpdesk/i18n/sv.po index cdc5c23ce30..8dc9a52d43c 100644 --- a/addons/crm_helpdesk/i18n/sv.po +++ b/addons/crm_helpdesk/i18n/sv.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-19 00:22+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm_helpdesk @@ -176,7 +176,7 @@ msgstr "Prioritet" #. module: crm_helpdesk #: field:crm.helpdesk,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -454,7 +454,7 @@ msgstr "Plannerade intäkter" #. module: crm_helpdesk #: field:crm.helpdesk,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: crm_helpdesk #: field:crm.helpdesk.report,user_id:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index b3ea71dfb08..7cf655558d5 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:50+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm_profiling @@ -152,7 +152,7 @@ msgstr "Use as Regras de Perfil" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "Erro ! Não se pode criar perfis de forma recursiva." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index 549ad0679fa..58f9d37a704 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:47+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: crm_todo @@ -30,7 +30,7 @@ msgstr "Período de Tempo" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "" +msgstr "Dica" #. module: crm_todo #: view:crm.lead:0 @@ -67,7 +67,7 @@ msgstr "Cancelar" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "Dica / Oportunidade" #. module: crm_todo #: field:project.task,lead_id:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index f834411c908..3254308c010 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.po @@ -8,13 +8,14 @@ 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-01-11 17:57+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:32+0000\n" +"Last-Translator: Moisés López - http://www.vauxoo.com " +"\n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: delivery @@ -86,7 +87,7 @@ msgstr "" #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping msgid "Delivery order" -msgstr "" +msgstr "Orden entrega" #. module: delivery #: code:addons/delivery/delivery.py:221 @@ -97,7 +98,7 @@ msgstr "" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Albarán para ser facturado" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 @@ -224,7 +225,7 @@ msgstr "" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Albaranes de salida" #. module: delivery #: view:sale.order:0 diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index c07ab1938c5..6e17dd80ee6 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:41+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: document @@ -49,7 +49,7 @@ msgstr "Agrupar por..." #. module: document #: view:ir.attachment:0 msgid "Modification" -msgstr "" +msgstr "Modificação" #. module: document #: view:document.directory:0 @@ -112,7 +112,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "O nome do campo." #. module: document #: code:addons/document/document.py:326 @@ -249,14 +249,14 @@ msgstr "Tipo" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "O nome do ficheiro deve ser único, na pasta!" #. module: document #: code:addons/document/document.py:110 #: code:addons/document/document.py:296 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: document #: help:document.directory,ressource_type_id:0 diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index 25c7d35e9a6..27ca9d9d22f 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:48+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: document_ftp @@ -55,7 +55,7 @@ msgstr "Procurar Ficheiros" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "Carregue no URL para percorrer os documentos" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -70,7 +70,7 @@ msgstr "Configuração do servidor FTP" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "Percorrer os documentos" #. module: document_ftp #: view:document.ftp.browse:0 diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index b48c5d39fce..065d2988a20 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:30+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: document_page @@ -29,7 +29,7 @@ msgstr "Categoria" #: view:document.page:0 #: field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "" +msgstr "Último contribuinte" #. module: document_page #: view:document.page:0 @@ -75,7 +75,7 @@ msgstr "Modelo" #: view:document.page:0 msgid "" "that will be used as a content template for all new page of this category." -msgstr "" +msgstr "que será usado como modelo para qualquer página desta categoria" #. module: document_page #: field:document.page,name:0 @@ -132,7 +132,7 @@ msgstr "" #: code:addons/document_page/document_page.py:129 #, python-format msgid "There are no changes in revisions." -msgstr "" +msgstr "Não há alterações de versão" #. module: document_page #: field:document.page.history,create_date:0 diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index c4a626106d6..2b4a41624ab 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:18+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: event_sale @@ -28,6 +28,8 @@ msgid "" "Determine if a product needs to create automatically an event registration " "at the confirmation of a sales order line." msgstr "" +"Indica se um produto precisa de criar automaticamente uma inscrição num " +"evento, aquando da confirmação de uma linha de uma ordem de venda." #. module: event_sale #: help:sale.order.line,event_id:0 @@ -35,6 +37,7 @@ msgid "" "Choose an event and it will automatically create a registration for this " "event." msgstr "" +"Escolha um evento e será automaticamente criada uma inscrição naquele." #. module: event_sale #: model:event.event,name:event_sale.event_technical_training diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index b373b5b4ed7..7de10640b3f 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:49+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: fetchmail @@ -72,7 +72,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "" +msgstr "Configure a \"gateway\" de chegada de correio" #. module: fetchmail #: view:fetchmail.server:0 @@ -103,7 +103,7 @@ msgstr "Servidor Local" #. module: fetchmail #: field:fetchmail.server,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_server @@ -198,6 +198,8 @@ msgid "" "Here is what we got instead:\n" " %s." msgstr "" +"Isto é o que realmente se conseguiu:\n" +" %s." #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index b88d7a4b7b2..a4f8a859102 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.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: 2013-01-11 20:03+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:31+0000\n" +"Last-Translator: Antonio Fregoso \n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: fleet @@ -142,7 +142,7 @@ msgstr "" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu msgid "Open Fleet Menu" -msgstr "" +msgstr "Abrir Menú Flotilla" #. module: fleet #: view:board.board:0 @@ -1007,7 +1007,7 @@ msgstr "" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu msgid "Vehicle Status" -msgstr "" +msgstr "Estado del vehículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 @@ -1087,7 +1087,7 @@ msgstr "" #. module: fleet #: view:board.board:0 msgid "Fleet Dashboard" -msgstr "" +msgstr "Tablero de Flotilla" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_break @@ -1239,7 +1239,7 @@ msgstr "" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "" +msgstr "Marca del vehículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 @@ -1311,7 +1311,7 @@ msgstr "" #: model:ir.ui.menu,name:fleet.menu_fleet_reporting #: model:ir.ui.menu,name:fleet.menu_root msgid "Fleet" -msgstr "" +msgstr "Flotilla" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_14 @@ -1353,7 +1353,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_leasing msgid "Leasing" -msgstr "" +msgstr "Arrendamiento" #. module: fleet #: help:fleet.vehicle.model.brand,image_medium:0 @@ -1616,7 +1616,7 @@ msgstr "" #: code:addons/fleet/fleet.py:397 #, python-format msgid "Vehicle %s has been added to the fleet!" -msgstr "" +msgstr "¡El vehículo %s ha sido añadido a la flotilla!" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -1884,6 +1884,7 @@ msgstr "" #: model:ir.model,name:fleet.model_fleet_contract_state msgid "Contains the different possible status of a leasing contract" msgstr "" +"Contiene los diferentes estados posibles de un contrato de arrendamiento" #. module: fleet #: view:fleet.vehicle:0 diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index ee9fc2e7bf3..9c2f565c555 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:21+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr_attendance @@ -73,7 +73,7 @@ msgstr "Imprimir Relatório de assiduidade Mensalmente" #: code:addons/hr_attendance/report/timesheet.py:120 #, python-format msgid "Attendances by Week" -msgstr "" +msgstr "Assiduidade (por semana)" #. module: hr_attendance #: selection:hr.action.reason,action_type:0 @@ -112,7 +112,7 @@ msgstr "Sair" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No records are found for your selection!" -msgstr "" +msgstr "Não foram encontrados registos" #. module: hr_attendance #: view:hr.attendance.error:0 @@ -194,7 +194,7 @@ msgstr "Junho" #: code:addons/hr_attendance/report/attendance_by_month.py:190 #, python-format msgid "Attendances by Month" -msgstr "" +msgstr "Assiduidade (por mês)" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.action_hr_attendance_week @@ -250,7 +250,7 @@ msgstr "Data" #. module: hr_attendance #: field:hr.config.settings,group_hr_attendance:0 msgid "Track attendances for all employees" -msgstr "" +msgstr "Seguir a assiduidade de todos os empregados" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -334,7 +334,7 @@ msgstr "Janeiro" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No Data Available !" -msgstr "" +msgstr "Não há dados disponíveis" #. module: hr_attendance #: selection:hr.attendance.month,month:0 diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index 6f72d4c0b84..6499e300e80 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:52+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr_contract @@ -193,7 +193,7 @@ msgstr "Número de visto" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Distância entre a casa e o trabalho." #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/l10n_bo/i18n/it.po b/addons/l10n_bo/i18n/it.po new file mode 100644 index 00000000000..cd4605fb785 --- /dev/null +++ b/addons/l10n_bo/i18n/it.po @@ -0,0 +1,54 @@ +# Italian 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: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2013-01-19 17:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: l10n_ar +#: model:ir.module.module,description:l10n_ar.module_meta_information +msgid "" +"\n" +" Argentinian Accounting : chart of Account\n" +" " +msgstr "" +"\n" +" Contabilità Argentina: Piano dei conti\n" +" " + +#. module: l10n_ar +#: model:ir.module.module,shortdesc:l10n_ar.module_meta_information +msgid "Argentinian Chart of Account" +msgstr "Piano dei conti argentino" + +#. module: l10n_ar +#: model:ir.actions.todo,note:l10n_ar.config_call_account_template_in_minimal +msgid "" +"Generate Chart of Accounts from a Chart Template. You will be asked to pass " +"the name of the company, the chart template to follow, the no. of digits to " +"generate the code for your accounts and Bank account, currency to create " +"Journals. Thus,the pure copy of chart Template is generated.\n" +"\tThis is the same wizard that runs from Financial " +"Management/Configuration/Financial Accounting/Financial Accounts/Generate " +"Chart of Accounts from a Chart Template." +msgstr "" +"Genera il Piano dei Conti da un Modello. Vi verrà richiesto di passare il " +"nome dell'azienda, il modello da seguire, il numero di decimali per generare " +"il codice dei tuoi conti e, per il conto della Banca, la valuta per creare " +"il Libro Giornale. Così una copia vergine del Piano dei Conti, derivatante " +"dal modello, viene generata.\n" +"\tQuesto è la stessa procedura automatica che viene lanciata da: Gestione " +"Finanziaria / Configurazione / Contabilità / Conti finanziari / Genera il " +"Piano dei conti da un modello." diff --git a/addons/l10n_ve/i18n/pt.po b/addons/l10n_ve/i18n/pt.po index bfda47a5cd1..27b5da52d42 100644 --- a/addons/l10n_ve/i18n/pt.po +++ b/addons/l10n_ve/i18n/pt.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 10:52+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: l10n_ve @@ -50,7 +50,7 @@ msgstr "" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_income msgid "Income" -msgstr "" +msgstr "Receita" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_expense diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index 7b4384c5066..f8eb2cb3bb4 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -8,19 +8,19 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 12:39+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Volgers formulier" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -46,7 +46,7 @@ msgstr "Ontvangers van het bericht" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Standaard activeren bij abonneren" #. module: mail #: view:mail.message:0 @@ -63,7 +63,7 @@ msgstr "Groepeer op..." #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automatisch opgeschoonde HTML-inhoud" #. module: mail #: help:mail.alias,alias_name:0 @@ -83,7 +83,7 @@ msgstr "Email opstellen" #: code:addons/mail/static/src/xml/mail.xml:132 #, python-format msgid "Add them into recipients and followers" -msgstr "" +msgstr "Voeg toe aan ontvangers en volgers" #. module: mail #: view:mail.group:0 @@ -125,12 +125,12 @@ msgstr "E-mail samenstellen wizard" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Anderen toevoegen" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Bovenliggende" #. module: mail #: field:mail.group,message_unread:0 @@ -197,7 +197,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:194 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Fout bij uploaden" #. module: mail #: model:mail.group,name:mail.group_support @@ -230,7 +230,7 @@ msgstr "Conversatie" #: code:addons/mail/static/src/xml/mail.xml:37 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Open de volledige e-mail editor" #. module: mail #. openerp-web @@ -247,7 +247,7 @@ msgstr "Alias domein" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "Automatisch abonneren" #. module: mail #: field:mail.mail,references:0 @@ -279,7 +279,7 @@ msgstr "uploaden" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "meer." #. module: mail #: help:mail.compose.message,type:0 @@ -288,6 +288,8 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Berichttype: e-mail voor e-mailbericht, notificatie voor systeembericht, " +"commentaar voor andere berichten zoals gebruiker beantwoord" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -323,7 +325,7 @@ msgstr "Indien aangevinkt zullen nieuwe berichten uw aandacht vragen." #. module: mail #: field:mail.group,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Foto van gemiddelde grootte" #. module: mail #: model:ir.actions.client,name:mail.action_mail_to_me_feeds @@ -354,7 +356,7 @@ msgstr "Niet volgen" #: code:addons/mail/static/src/xml/mail.xml:261 #, python-format msgid "show one more message" -msgstr "" +msgstr "geef meer berichten weer" #. module: mail #: code:addons/mail/mail_mail.py:71 @@ -406,7 +408,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Gerelateerd veld" #. module: mail #: selection:mail.compose.message,type:0 @@ -539,7 +541,7 @@ msgstr "Mailgroep" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Comments and Emails" -msgstr "" +msgstr "Reacties en e-mails" #. module: mail #: field:mail.alias,alias_defaults:0 @@ -578,22 +580,23 @@ msgstr "<<<" #: code:addons/mail/static/src/xml/mail.xml:43 #, python-format msgid "Write to the followers of this document..." -msgstr "" +msgstr "Schrijf aan de volgers van dit document" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Geautoriseerde groep" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Toetreden tot groep" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." msgstr "" +"Afzender van het bericht, overgenomen uit voorkeuren van de gebruiker." #. module: mail #: code:addons/mail/wizard/invite.py:39 @@ -625,6 +628,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Openbare berichten.\n" +"

\n" +" Deze lijst bevat berichten, welke aan u zijn verzonden\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd @@ -653,7 +662,7 @@ msgstr "Geavanceerd" #: code:addons/mail/static/src/xml/mail.xml:226 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Verplaats naar postvak in" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 @@ -679,7 +688,7 @@ msgstr "" #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Model van de gevolgde bron" #. module: mail #. openerp-web @@ -700,7 +709,7 @@ msgstr "Annuleren" #: code:addons/mail/static/src/xml/mail.xml:44 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Deel met mijn volgers...." #. module: mail #: field:mail.notification,partner_id:0 @@ -747,7 +756,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Bericht subtypen" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -755,6 +764,8 @@ msgstr "" msgid "" "Partners that have a notification pushing this message in their mailboxes" msgstr "" +"Relaties die een notificatie hebben, die dit bericht doorgestuurd hebben " +"naar hun e-mailbox" #. module: mail #: selection:mail.compose.message,type:0 @@ -777,6 +788,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Goed gedaan! Uw postvak in is leeg.\n" +"

\n" +" Uw postvak in bevat privé berichten of e-mails naar u " +"toegestuurd\n" +"                     alsmede informatie over documenten of mensen die u\n" +" volgt.\n" +"

\n" +" " #. module: mail #: field:mail.mail,notification:0 @@ -801,6 +821,8 @@ msgstr "Nu verzenden" msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" +"Niet mogelijk om e-mail te versturen. Stel het e-mail adres of alias van de " +"afzender in." #. module: mail #: help:res.users,alias_id:0 @@ -827,7 +849,7 @@ msgstr "of" #: help:mail.compose.message,vote_user_ids:0 #: help:mail.message,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Gebruikers die op dit bericht hebben gestemd." #. module: mail #: help:mail.group,alias_id:0 @@ -912,6 +934,7 @@ msgstr "Groep" #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"De huidige gebruiker heeft een ster notificatie gekoppeld aan dit bericht." #. module: mail #: field:mail.group,public:0 @@ -928,7 +951,7 @@ msgstr "Melding" #: code:addons/mail/static/src/js/mail.js:585 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Vul de volledige relatie informatie in" #. module: mail #: view:mail.wizard.invite:0 @@ -938,7 +961,7 @@ msgstr "Volgers toevoegen" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Volgers van de geselecteerde items en" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -962,6 +985,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Geen berichten gevonden en nog geen berichten verzonden.\n" +"

\n" +" Klik op de bovenste-rechter pictogram om een ​​bericht op " +"te stellen. Dit\n" +"                   bericht wordt verzonden per e-mail als het een interne " +"relatie is.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 @@ -984,7 +1016,7 @@ msgstr "Alle berichten" #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Verkrijg naam van het gerelateerde document" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -1028,7 +1060,7 @@ msgstr "door" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "" +msgstr "Beste verkoop technieken" #. module: mail #: selection:mail.group,public:0 @@ -1056,7 +1088,7 @@ msgstr "Groepen" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Berichten zoeken" #. module: mail #: field:mail.compose.message,date:0 @@ -1112,7 +1144,7 @@ msgstr "geef meer berichten weer" #: code:addons/mail/static/src/xml/mail.xml:228 #, python-format msgid "Mark as Todo" -msgstr "Markeer als nog te doen" +msgstr "Markeer als taak" #. module: mail #: help:mail.message.subtype,parent_id:0 @@ -1122,7 +1154,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Uitnodigen wizard" #. module: mail #: field:mail.group,message_summary:0 @@ -1148,14 +1180,14 @@ msgstr "Subtype" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Groepeer formulier" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Met ster" #. module: mail #. openerp-web @@ -1197,7 +1229,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "En" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1223,7 +1255,7 @@ msgstr "Bijlagen" #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Bericht veldnaam" #. module: mail #: field:mail.mail,email_cc:0 @@ -1233,7 +1265,7 @@ msgstr "CC" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Berichten met ster welke gaan naar het taken postvak" #. module: mail #. openerp-web @@ -1276,7 +1308,7 @@ msgstr "Volgen" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Naam" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1339,7 +1371,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Bestuursvergaderingen" #. module: mail #: constraint:mail.alias:0 @@ -1375,7 +1407,7 @@ msgstr "Document volgers" #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Verwijder deze volger" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1391,7 +1423,7 @@ msgstr "Uitgaande mailserver" #: code:addons/mail/mail_message.py:920 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "E-mail adres van de relatie niet gevonden" #. module: mail #: view:mail.mail:0 @@ -1409,6 +1441,8 @@ msgstr "Rich-tekst inhoud" #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"De huidige gebruiker heeft een ongelezen notificatie gekoppeld aan dit " +"bericht." #. module: mail #: help:res.partner,notification_email_send:0 @@ -1440,7 +1474,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:195 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Een ogenblik geduld a.u.b., het bestand wordt geupload." #. module: mail #: view:mail.group:0 @@ -1450,13 +1484,17 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Deze groep is zichtbaar voor iedereen,\n" +" inclusief uw klanten indien u de " +"portaal\n" +" module heeft geïnstalleerd." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:225 #, python-format msgid "Set back to Todo" -msgstr "Zet terug naar nog te doen" +msgstr "Zet terug naar taken" #. module: mail #. openerp-web @@ -1473,7 +1511,7 @@ msgstr "Filters" #. module: mail #: field:res.partner,notification_email_send:0 msgid "Receive Feeds by Email" -msgstr "" +msgstr "Ontvang berichten per e-mail" #. module: mail #: help:base.config.settings,alias_domain:0 @@ -1503,7 +1541,7 @@ msgstr "anderen..." #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Taken" #. module: mail #: view:mail.alias:0 @@ -1525,6 +1563,8 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Technisch veld bevat de berichtnotificaties. Gebruik notified_partner_ids " +"voor toegang tot geïnformeerde partners." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds @@ -1565,7 +1605,7 @@ msgstr "Bericht referenties, zoals identifiers van vorige berichten" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Bewerkmodus" #. module: mail #: field:mail.compose.message,model:0 @@ -1589,6 +1629,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Schrijver van het bericht. Als deze niet ingesteld is, kan email_from een e-" +"mailadres bevatten wat niet overeenkomt met een relatie." #. module: mail #: help:mail.mail,email_cc:0 @@ -1624,6 +1666,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Geen taken.\n" +"

\n" +" Wanneer u berichten verwerkt in uw postvak in, heeft u " +"de mogelijkheid om\n" +" berichten te kenmerken alsTaak. Vanuit dit menu " +"kunt u al uw taken verwerken.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1655,7 +1706,7 @@ msgstr "Alleen e-mails" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "Mijn Inbox" +msgstr "Postvak in" #. module: mail #. openerp-web diff --git a/addons/marketing/i18n/pt.po b/addons/marketing/i18n/pt.po index 8357ba530e0..9d95c88e60a 100644 --- a/addons/marketing/i18n/pt.po +++ b/addons/marketing/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:00+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: marketing @@ -29,6 +29,9 @@ msgid "" "Campaigns.\n" " This installs the module marketing_campaign_crm_demo." msgstr "" +"Instalação de dados de demonstração (dicas, campanhas e segmentos), para " +"campanhas de marketing.\n" +" Esta operação instalará o módulo marketing_campaign_crm_demo." #. module: marketing #: model:ir.actions.act_window,name:marketing.action_marketing_configuration @@ -95,6 +98,10 @@ msgid "" "CRM leads.\n" " This installs the module marketing_campaign." msgstr "" +"Proporciona a automatização das dicas através de campanhas de marketing.\n" +" As campanhas pode, realmente, ser definidas para qualquer " +"recurso (e não apenas dicas no CRM).\n" +" Esta operação instalará o módulo marketing_campaign." #. module: marketing #: help:marketing.config.settings,module_crm_profiling:0 @@ -102,6 +109,8 @@ msgid "" "Allows users to perform segmentation within partners.\n" " This installs the module crm_profiling." msgstr "" +"Permite aos utilizadores aplicar a segmentação aos parceiros.\n" +" Esta operação instalará o módulo crm_profiling." #. module: marketing #: field:marketing.config.settings,module_marketing_campaign_crm_demo:0 diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index b80265040de..861414e5494 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:10+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: mrp_byproduct @@ -98,6 +98,8 @@ msgid "" "The Product Unit of Measure you chose has a different category than in the " "product form." msgstr "" +"A unidade de medida do produto escolhida por si pertence a uma categoria " +"diferente da do formulário." #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct diff --git a/addons/note/i18n/sv.po b/addons/note/i18n/sv.po new file mode 100644 index 00000000000..3ed271d1f03 --- /dev/null +++ b/addons/note/i18n/sv.po @@ -0,0 +1,282 @@ +# Swedish 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-01-20 18:02+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: note +#: field:note.note,memo:0 +msgid "Note Content" +msgstr "Anteckningsinnehåll" + +#. module: note +#: view:note.stage:0 +msgid "Stages of Notes" +msgstr "Anteckningssteg" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_04 +#: model:note.stage,name:note.note_stage_02 +msgid "This Week" +msgstr "Denna vecka" + +#. module: note +#: model:ir.model,name:note.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: note +#: model:ir.model,name:note.model_note_tag +msgid "Note Tag" +msgstr "Anteckningsetikett" + +#. module: note +#: model:res.groups,name:note.group_note_fancy +msgid "Notes / Fancy mode" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_note_note +#: view:note.note:0 +msgid "Note" +msgstr "Anteckning" + +#. module: note +#: view:note.note:0 +msgid "Group By..." +msgstr "Gruppera efter..." + +#. module: note +#: field:note.note,message_follower_ids:0 +msgid "Followers" +msgstr "Följare" + +#. module: note +#: model:ir.actions.act_window,help:note.action_note_note +msgid "" +"

\n" +" Click to add a personal note.\n" +"

\n" +" Use notes to organize personal tasks or notes. All\n" +" notes are private; no one else will be able to see them. " +"However\n" +" you can share some notes with other people by inviting " +"followers\n" +" on the note. (Useful for meeting minutes, especially if\n" +" you activate the pad feature for collaborative writings).\n" +"

\n" +" You can customize how you process your notes/tasks by adding,\n" +" removing or modifying columns.\n" +"

\n" +" " +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_01 +#: model:note.stage,name:note.note_stage_01 +msgid "Today" +msgstr "Idag" + +#. module: note +#: model:ir.model,name:note.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: note +#: view:note.note:0 +msgid "í" +msgstr "" + +#. module: note +#: view:note.stage:0 +msgid "Stage of Notes" +msgstr "Anteckningssteg" + +#. module: note +#: field:note.note,message_unread:0 +msgid "Unread Messages" +msgstr "Olästa meddelanden" + +#. module: note +#: field:note.note,current_partner_id:0 +msgid "unknown" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "By sticky note Category" +msgstr "" + +#. module: note +#: help:note.note,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: note +#: field:note.stage,name:0 +msgid "Stage Name" +msgstr "Stegnamn" + +#. module: note +#: field:note.note,message_is_follower:0 +msgid "Is a Follower" +msgstr "Är en följare" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_02 +msgid "Tomorrow" +msgstr "Imorgon" + +#. module: note +#: view:note.note:0 +#: field:note.note,open:0 +msgid "Active" +msgstr "Aktiv" + +#. module: note +#: help:note.stage,user_id:0 +msgid "Owner of the note stage." +msgstr "" + +#. module: note +#: model:ir.ui.menu,name:note.menu_notes_stage +msgid "Categories" +msgstr "Kategorier" + +#. module: note +#: view:note.note:0 +#: field:note.note,stage_id:0 +msgid "Stage" +msgstr "Steg" + +#. module: note +#: field:note.tag,name:0 +msgid "Tag Name" +msgstr "Etikettnamn" + +#. module: note +#: field:note.note,message_ids:0 +msgid "Messages" +msgstr "Meddelanden" + +#. module: note +#: view:base.config.settings:0 +#: model:ir.actions.act_window,name:note.action_note_note +#: model:ir.ui.menu,name:note.menu_note_notes +#: view:note.note:0 +#: model:note.stage,name:note.note_stage_04 +msgid "Notes" +msgstr "Anteckningar" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_03 +#: model:note.stage,name:note.note_stage_03 +msgid "Later" +msgstr "Senare" + +#. module: note +#: model:ir.model,name:note.model_note_stage +msgid "Note Stage" +msgstr "" + +#. module: note +#: field:note.note,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: note +#: field:note.note,stage_ids:0 +msgid "Stages of Users" +msgstr "" + +#. module: note +#: field:note.note,name:0 +msgid "Note Summary" +msgstr "" + +#. module: note +#: model:ir.actions.act_window,name:note.action_note_stage +#: view:note.note:0 +msgid "Stages" +msgstr "" + +#. module: note +#: help:note.note,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "Delete" +msgstr "" + +#. module: note +#: field:note.note,color:0 +msgid "Color Index" +msgstr "" + +#. module: note +#: field:note.note,sequence:0 +#: field:note.stage,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: note +#: field:note.note,tag_ids:0 +msgid "Tags" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "Archive" +msgstr "" + +#. module: note +#: field:base.config.settings,module_note_pad:0 +msgid "Use collaborative pads (etherpad)" +msgstr "" + +#. module: note +#: help:note.note,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: note +#: field:base.config.settings,group_note_fancy:0 +msgid "Use fancy layouts for notes" +msgstr "" + +#. module: note +#: field:note.stage,user_id:0 +msgid "Owner" +msgstr "" + +#. module: note +#: help:note.stage,sequence:0 +msgid "Used to order the note stages" +msgstr "" + +#. module: note +#: field:note.note,date_done:0 +msgid "Date done" +msgstr "" + +#. module: note +#: field:note.stage,fold:0 +msgid "Folded by Default" +msgstr "" diff --git a/addons/pad_project/i18n/pt.po b/addons/pad_project/i18n/pt.po index 848354bf841..f898c3751e1 100644 --- a/addons/pad_project/i18n/pt.po +++ b/addons/pad_project/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:02+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: pad_project @@ -25,7 +25,7 @@ msgstr "Erro ! Data final da tarefa tem que ser posterior a data inicial" #. module: pad_project #: field:project.task,description_pad:0 msgid "Description PAD" -msgstr "" +msgstr "Descrição" #. module: pad_project #: model:ir.model,name:pad_project.model_project_task diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index b6cb735d086..9aede5c6071 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -8,13 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 02:31+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: point_of_sale @@ -86,7 +87,7 @@ msgstr "" #: field:pos.config,journal_id:0 #: field:pos.order,sale_journal:0 msgid "Sale Journal" -msgstr "" +msgstr "Diário de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_2l_product_template @@ -112,7 +113,7 @@ msgstr "" #: view:report.pos.order:0 #: field:report.pos.order,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Vendedor" #. module: point_of_sale #: view:report.pos.order:0 @@ -159,13 +160,13 @@ msgstr "Quantidade" #: model:ir.actions.act_window,name:point_of_sale.action_pos_box_out #: view:pos.session:0 msgid "Take Money Out" -msgstr "" +msgstr "Efetuar um Saque" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:105 #, python-format msgid "not used" -msgstr "" +msgstr "não usado" #. module: point_of_sale #: field:pos.config,iface_vkeyboard:0 @@ -177,12 +178,12 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:90 #, python-format msgid "+/-" -msgstr "" +msgstr "+/-" #. module: point_of_sale #: field:pos.ean_wizard,ean13_pattern:0 msgid "Reference" -msgstr "" +msgstr "Referência" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1038 @@ -196,7 +197,7 @@ msgstr "Imposto" #. module: point_of_sale #: report:pos.user.product:0 msgid "Starting Date" -msgstr "" +msgstr "Data de Início" #. module: point_of_sale #: constraint:pos.session:0 diff --git a/addons/portal/i18n/sv.po b/addons/portal/i18n/sv.po index dd4809cf7e3..4c5a0fc3722 100644 --- a/addons/portal/i18n/sv.po +++ b/addons/portal/i18n/sv.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-20 17:30+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: portal @@ -41,7 +41,7 @@ msgstr "" #. module: portal #: model:mail.group,name:portal.company_jobs msgid "Company Jobs" -msgstr "" +msgstr "Företagsjobb" #. module: portal #: view:portal.payment.acquirer:0 @@ -51,7 +51,7 @@ msgstr "" #. module: portal #: view:portal.wizard.user:0 msgid "Contacts" -msgstr "" +msgstr "Kontakter" #. module: portal #: view:share.wizard:0 @@ -62,12 +62,12 @@ msgstr "Befintliga grupper" #. module: portal #: view:res.groups:0 msgid "Portal Groups" -msgstr "" +msgstr "Portalgrupper" #. module: portal #: field:portal.wizard,welcome_message:0 msgid "Invitation Message" -msgstr "" +msgstr "Inbjudningsmeddelande" #. module: portal #: view:res.groups:0 @@ -110,7 +110,7 @@ msgstr "" #. module: portal #: field:portal.wizard.user,email:0 msgid "Email" -msgstr "" +msgstr "E-post" #. module: portal #: model:ir.actions.client,help:portal.action_news @@ -132,7 +132,7 @@ msgstr "" #: model:ir.actions.client,name:portal.action_jobs #: model:ir.ui.menu,name:portal.portal_jobs msgid "Jobs" -msgstr "" +msgstr "Jobb" #. module: portal #: field:portal.wizard,user_ids:0 @@ -143,7 +143,7 @@ msgstr "Användare" #: code:addons/portal/acquirer.py:82 #, python-format msgid "Pay safely online" -msgstr "" +msgstr "Betala säkert online" #. module: portal #: code:addons/portal/acquirer.py:77 @@ -197,23 +197,23 @@ msgstr "Portal" #: code:addons/portal/wizard/portal_wizard.py:34 #, python-format msgid "Your OpenERP account at %(company)s" -msgstr "" +msgstr "Ditt OpenERP-konto hos %(company)s" #. module: portal #: model:res.groups,name:portal.group_anonymous msgid "Anonymous" -msgstr "" +msgstr "Anonym" #. module: portal #: field:portal.wizard.user,in_portal:0 msgid "In Portal" -msgstr "" +msgstr "I portal" #. module: portal #: model:ir.actions.client,name:portal.action_news #: model:ir.ui.menu,name:portal.portal_company_news msgid "News" -msgstr "" +msgstr "Nyheter" #. module: portal #: model:ir.ui.menu,name:portal.portal_after_sales @@ -237,19 +237,19 @@ msgstr "" #. module: portal #: model:ir.ui.menu,name:portal.portal_projects msgid "Projects" -msgstr "" +msgstr "Projekt" #. module: portal #: model:ir.actions.client,name:portal.action_mail_inbox_feeds_portal #: model:ir.ui.menu,name:portal.portal_inbox msgid "Inbox" -msgstr "" +msgstr "Inkorg" #. module: portal #: view:share.wizard:0 #: field:share.wizard,user_ids:0 msgid "Existing users" -msgstr "" +msgstr "Existerande användare" #. module: portal #: field:portal.wizard.user,wizard_id:0 diff --git a/addons/portal_crm/i18n/sv.po b/addons/portal_crm/i18n/sv.po new file mode 100644 index 00000000000..b38b4caf994 --- /dev/null +++ b/addons/portal_crm/i18n/sv.po @@ -0,0 +1,548 @@ +# Swedish 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-01-20 18:09+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,type:0 +msgid "Lead" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,title:0 +msgid "Title" +msgstr "Titel" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,probability:0 +msgid "Success Rate (%)" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Contact us" +msgstr "Kontakta oss" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action:0 +msgid "Next Action Date" +msgstr "Datum för nästa åtgärd" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,zip:0 +msgid "Zip" +msgstr "Postnummer" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_unread:0 +msgid "Unread Messages" +msgstr "Olästa meddelanden" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_id:0 +msgid "Company" +msgstr "Företag" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Thank you for your interest, we'll respond to your request shortly." +msgstr "" +"Tack för ditt intresse, vi kommer att svara på din förfrågan så snart som " +"möjligt." + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Highest" +msgstr "Högsta" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,mobile:0 +msgid "Mobile" +msgstr "Mobil" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,description:0 +msgid "Notes" +msgstr "Anteckningar" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_ids:0 +msgid "Messages" +msgstr "Meddelanden" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,color:0 +msgid "Color Index" +msgstr "Färgindex" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_latitude:0 +msgid "Geo Latitude" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_name:0 +msgid "Customer Name" +msgstr "Kundnamn" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Cancelled" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,channel_id:0 +msgid "Communication channel (mail, direct, phone, ...)" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,type_id:0 +msgid "Campaign" +msgstr "Kampanj" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,ref:0 +msgid "Reference" +msgstr "Referens" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action_next:0 +#: field:portal_crm.crm_contact_us,title_action:0 +msgid "Next Action" +msgstr "Nästa åtgärd" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: portal_crm +#: model:ir.actions.act_window,name:portal_crm.action_contact_us +msgid "Contact Us" +msgstr "Kontakta oss" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,name:0 +msgid "Subject" +msgstr "Ämne" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,opt_out:0 +msgid "Opt-Out" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,priority:0 +msgid "Priority" +msgstr "Prioritet" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,state_id:0 +msgid "State" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_id:0 +msgid "Linked partner (optional). Usually created when converting the lead." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,payment_mode:0 +msgid "Payment Mode" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "New" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,type:0 +msgid "Type" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,email_from:0 +msgid "Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Name" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Lowest" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,create_date:0 +msgid "Creation Date" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Close" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Pending" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,categ_ids:0 +msgid "Categories" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_login:0 +msgid "User Login" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,opt_out:0 +msgid "" +"If opt-out is checked, this contact has refused to receive emails or " +"unsubscribed to a campaign." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,contact_name:0 +msgid "Contact Name" +msgstr "" + +#. module: portal_crm +#: model:ir.ui.menu,name:portal_crm.portal_company_contact +msgid "Contact" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_address_email:0 +msgid "Partner Contact Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,planned_revenue:0 +msgid "Expected Revenue" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,task_ids:0 +msgid "Tasks" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Contact form" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_currency:0 +msgid "Currency" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_deadline:0 +msgid "Expected Closing" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,ref2:0 +msgid "Reference 2" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_email:0 +msgid "User Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_open:0 +msgid "Opened" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "In Progress" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_name:0 +msgid "" +"The name of the future partner company that will be created while converting " +"the lead into opportunity" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,date_deadline:0 +msgid "Estimate of the date on which the opportunity will be won." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Low" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_closed:0 +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Closed" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_assign:0 +msgid "Assignation Date" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,state:0 +msgid "Status" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Normal" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,email_cc:0 +msgid "Global CC" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,street2:0 +msgid "Street2" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,id:0 +msgid "ID" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,phone:0 +msgid "Phone" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,active:0 +msgid "Active" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_id:0 +msgid "Salesperson" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_ids:0 +msgid "Companies" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,section_id:0 +msgid "" +"When sending mails, the default email address is taken from the sales team." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_address_name:0 +msgid "Partner Contact Name" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_longitude:0 +msgid "Geo Longitude" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,date_assign:0 +msgid "Last date this case was forwarded/assigned to a partner" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,email_from:0 +msgid "Email address of the contact" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,city:0 +msgid "City" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Submit" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,function:0 +msgid "Function" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,referred:0 +msgid "Referred By" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_assigned_id:0 +msgid "Assigned Partner" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,type:0 +msgid "Opportunity" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_assigned_id:0 +msgid "Partner this case has been forwarded/assigned to." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,country_id:0 +msgid "Country" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Thank you" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,state:0 +msgid "" +"The Status is set to 'Draft', when a case is created. If the case is in " +"progress the Status is set to 'Open'. When the case is over, the Status is " +"set to 'Done'. If the case needs to be reviewed then the Status is set to " +"'Pending'." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,type_id:0 +msgid "" +"From which campaign (seminar, marketing campaign, mass mailing, ...) did " +"this contact come from?" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "High" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,street:0 +msgid "Street" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: portal_crm +#: model:ir.model,name:portal_crm.model_portal_crm_crm_contact_us +msgid "Contact form for the portal" +msgstr "" diff --git a/addons/portal_event/i18n/pt.po b/addons/portal_event/i18n/pt.po index ce85c9e3d2f..2d20cab6498 100644 --- a/addons/portal_event/i18n/pt.po +++ b/addons/portal_event/i18n/pt.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:11+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: portal_event #: view:event.event:0 msgid "Portal Settings" -msgstr "" +msgstr "Configurações do portal" #. module: portal_event #: model:ir.actions.act_window,help:portal_event.action_event_view @@ -51,7 +51,7 @@ msgstr "Visibilidade" #. module: portal_event #: help:event.event,visibility:0 msgid "Event's visibility in the portal's contact page" -msgstr "" +msgstr "Visibilidade do evento na página de contactos do portal" #. module: portal_event #: selection:event.event,visibility:0 diff --git a/addons/portal_project/i18n/pt.po b/addons/portal_project/i18n/pt.po index 9caa2fceca7..7e0768daa28 100644 --- a/addons/portal_project/i18n/pt.po +++ b/addons/portal_project/i18n/pt.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: 2013-01-09 16:08+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-18 11:33+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:58+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: portal_project @@ -25,6 +25,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Carregue, para criar um projeto.\n" +"

\n" +" " #. module: portal_project #: model:ir.actions.act_window,name:portal_project.open_view_project diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index b1d8252afa7..9919729484b 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:03+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_gtd @@ -82,7 +82,7 @@ msgstr "Hoje" #. module: project_gtd #: view:project.task:0 msgid "Timeframe" -msgstr "" +msgstr "Intervalo temporal" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_lt diff --git a/addons/project_issue_sheet/i18n/pt.po b/addons/project_issue_sheet/i18n/pt.po index 910997109b9..aaaced523a7 100644 --- a/addons/project_issue_sheet/i18n/pt.po +++ b/addons/project_issue_sheet/i18n/pt.po @@ -8,20 +8,20 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:11+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 #, python-format msgid "The Analytic Account is pending !" -msgstr "" +msgstr "A conta analítica está pendente!" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_account_analytic_line @@ -41,7 +41,7 @@ msgstr "Linha da Folha de Horas" #. module: project_issue_sheet #: view:project.issue:0 msgid "on_change_project(project_id)" -msgstr "" +msgstr "on_change_project(project_id)" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index 0fad7828dc7..223b100f6a3 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -8,14 +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: 2013-01-06 23:34+0000\n" -"Last-Translator: Thorsten Vocks (OpenBig.org) \n" +"PO-Revision-Date: 2013-01-18 16:41+0000\n" +"Last-Translator: Ferdinand @ Camptocamp \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_timesheet @@ -238,7 +237,7 @@ msgid "" " " msgstr "" "

\n" -" Sie finden hier Stundenaufzichnungen und Aufwände die n " +" Sie finden hier Stundenaufzeichnungen und Aufwände die an " "Kunden weiterzuverrechnen sind.\n" " Wenn Sie neue Stundenaufzeichnungen erfassen wollen, " "benutzen Sie bitte die Stundenaufzeichnungsformulare.\n" diff --git a/addons/purchase_double_validation/i18n/pt.po b/addons/purchase_double_validation/i18n/pt.po index a32c5fd2d8e..d2c28fcd88e 100644 --- a/addons/purchase_double_validation/i18n/pt.po +++ b/addons/purchase_double_validation/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:05+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: purchase_double_validation @@ -30,7 +30,7 @@ msgstr "Ordens de compra que ainda não foram aprovadas." #. module: purchase_double_validation #: field:purchase.config.settings,limit_amount:0 msgid "limit to require a second approval" -msgstr "" +msgstr "limite para pedir uma segunda aprovação" #. module: purchase_double_validation #: view:board.board:0 diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index cf35914bca6..7e457b37ebb 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 11:15+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:05+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: resource @@ -101,7 +101,7 @@ msgstr "" #: code:addons/resource/resource.py:307 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: resource #: view:resource.calendar:0 @@ -207,7 +207,7 @@ msgstr "Tempo de Trabalho" #. module: resource #: help:resource.calendar.attendance,hour_from:0 msgid "Start and End time of working." -msgstr "" +msgstr "Horas de início e fim de trabalho" #. module: resource #: view:resource.calendar.leaves:0 diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index 3b64aaa9dac..87c050f975c 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -8,13 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:51+0000\n" +"Last-Translator: Moisés López - http://www.vauxoo.com " +"\n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: sale @@ -507,7 +508,7 @@ msgstr "Línea pedido de venta" #. module: sale #: field:sale.advance.payment.inv,amount:0 msgid "Advance Amount" -msgstr "" +msgstr "Importe avanzado" #. module: sale #: help:sale.order,invoice_exists:0 diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index 5b6d0d56f1c..6c5ea9947e2 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -8,13 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-18 23:51+0000\n" +"Last-Translator: David Arzaga - http://www.grupoaltegra.com " +"\n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:09+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: stock @@ -164,7 +165,7 @@ msgstr "La cantidad no puede ser negativa" #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Picking list" -msgstr "" +msgstr "Albarán" #. module: stock #: report:lot.stock.overview:0 @@ -290,7 +291,7 @@ msgstr "Origen" #: view:board.board:0 #: model:ir.actions.act_window,name:stock.action_stock_incoming_product_delay msgid "Incoming Products" -msgstr "" +msgstr "Albaranes de entrada" #. module: stock #: view:report.stock.lines.date:0 @@ -660,7 +661,7 @@ msgstr "" #: field:stock.picking.in,move_lines:0 #: field:stock.picking.out,move_lines:0 msgid "Internal Moves" -msgstr "" +msgstr "Albaranes internos" #. module: stock #: field:stock.move,location_dest_id:0 @@ -1015,7 +1016,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree4 #: view:stock.picking.in:0 msgid "Incoming Shipments" -msgstr "" +msgstr "Albaranes de entrada" #. module: stock #: view:report.stock.inventory:0 @@ -1170,7 +1171,7 @@ msgstr "" #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Back Orders" -msgstr "" +msgstr "Albaranes relacionados" #. module: stock #: field:stock.location,stock_virtual:0 @@ -1542,7 +1543,7 @@ msgstr "" #. module: stock #: view:stock.picking.in:0 msgid "Incoming Shipments already processed" -msgstr "" +msgstr "Envíos entrantes ya procesados" #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:99 @@ -1566,7 +1567,7 @@ msgstr "" #. module: stock #: view:stock.picking:0 msgid "Internal Picking List" -msgstr "" +msgstr "Albarán interno" #. module: stock #: selection:report.stock.inventory,state:0 @@ -1797,7 +1798,7 @@ msgstr "" #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Is a Back Order" -msgstr "" +msgstr "Es un albarán relacionado" #. module: stock #: report:stock.picking.list:0 @@ -3863,7 +3864,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree #: view:stock.picking.out:0 msgid "Delivery Orders" -msgstr "" +msgstr "Albaranes de salida" #. module: stock #: view:stock.picking:0 @@ -3940,7 +3941,7 @@ msgstr "" #: field:stock.picking.in,backorder_id:0 #: field:stock.picking.out,backorder_id:0 msgid "Back Order of" -msgstr "" +msgstr "Albarán relacionado de:" #. module: stock #: help:stock.partial.move.line,cost:0 @@ -3970,7 +3971,7 @@ msgstr "" #. module: stock #: view:stock.picking:0 msgid "Confirmed Internal Moves" -msgstr "" +msgstr "Movimientos internos confirmados" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_configuration diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index 05a1be72b34..276cda9d34f 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/i18n/pt.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:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"PO-Revision-Date: 2013-01-18 11:13+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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-01-18 07:10+0000\n" +"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: warning @@ -139,7 +139,7 @@ msgstr "Alerta para %s !" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "" +msgstr "Aviso relativo à ordem de venda" #. module: warning #: field:res.partner,invoice_warn_msg:0 @@ -149,7 +149,7 @@ msgstr "Mensagem para Fatura" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "" +msgstr "Mensagem para a ordem de venda" #. module: warning #: view:res.partner:0 @@ -177,7 +177,7 @@ msgstr "Aviso para %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "" +msgstr "Mensagem para a linha da ordem de venda" #. module: warning #: selection:product.product,purchase_line_warn:0 diff --git a/openerp/addons/base/i18n/it.po b/openerp/addons/base/i18n/it.po index f5611677fb0..1afe265ca30 100644 --- a/openerp/addons/base/i18n/it.po +++ b/openerp/addons/base/i18n/it.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-12 21:21+0000\n" -"Last-Translator: Sergio Corato \n" +"PO-Revision-Date: 2013-01-19 09:34+0000\n" +"Last-Translator: Davide Corio - agilebg.com \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -8259,7 +8259,7 @@ msgstr "Numero successivo di questa sequenza" #. module: base #: view:res.partner:0 msgid "at" -msgstr "alle" +msgstr "di" #. module: base #: view:ir.rule:0 diff --git a/openerp/addons/base/i18n/nl.po b/openerp/addons/base/i18n/nl.po index eccf0e80819..724ef073f65 100644 --- a/openerp/addons/base/i18n/nl.po +++ b/openerp/addons/base/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-13 13:24+0000\n" +"PO-Revision-Date: 2013-01-20 11:34+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-14 05:17+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -2658,6 +2658,9 @@ msgid "" "View type: Tree type to use for the tree view, set to 'tree' for a " "hierarchical tree view, or 'form' for a regular list view" msgstr "" +"Weergave soort: Het soort 'boom' wordt gebruikt voor de boomweergave. Zet op " +"boomweergave voor een hiërarchische weergave of op 'formulier' voor een " +"normale lijst weergave" #. module: base #: sql_constraint:ir.ui.view_sc:0 @@ -3405,7 +3408,7 @@ msgstr "Ongeldig rapport type: %s" #. module: base #: model:ir.module.module,summary:base.module_hr_expense msgid "Expenses Validation, Invoicing" -msgstr "" +msgstr "Declaratiebeheer, facturatie" #. module: base #: model:ir.module.module,description:base.module_l10n_be_hr_payroll_account @@ -5141,12 +5144,12 @@ msgstr "ir.needaction_mixin" #. module: base #: view:base.language.export:0 msgid "This file was generated using the universal" -msgstr "" +msgstr "Dit bestand was gegenereerd met gebruik van de universele" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "IT Services" -msgstr "" +msgstr "IT Services" #. module: base #: model:ir.module.category,name:base.module_category_specific_industry_applications @@ -5161,7 +5164,7 @@ msgstr "Google Docs integratie" #. module: base #: help:ir.attachment,res_model:0 msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "Het database object waaraan deze bijlage wordt gekoppeld" #. module: base #: code:addons/base/ir/ir_fields.py:327 @@ -5213,7 +5216,7 @@ msgstr "Overslaan" #. module: base #: model:ir.module.module,shortdesc:base.module_event_sale msgid "Events Sales" -msgstr "" +msgstr "Verkoop evenementen" #. module: base #: model:res.country,name:base.ls @@ -5223,7 +5226,7 @@ msgstr "Lesotho" #. module: base #: view:base.language.export:0 msgid ", or your preferred text editor" -msgstr "" +msgstr ", of uw favoriete tekstverwerker" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign @@ -5413,7 +5416,7 @@ msgstr "Alleen wanneer dit bankrekeningnummer behoort tot uw bedrijf" #: code:addons/base/ir/ir_fields.py:337 #, python-format msgid "Unknown sub-field '%s'" -msgstr "" +msgstr "Onbekend subveld '%s'" #. module: base #: model:res.country,name:base.za @@ -5546,7 +5549,7 @@ msgstr "Datum" #. module: base #: model:ir.module.module,shortdesc:base.module_event_moodle msgid "Event Moodle" -msgstr "" +msgstr "Moodle evenementen" #. module: base #: model:ir.module.module,description:base.module_email_template @@ -5637,12 +5640,12 @@ msgstr "Decimaal scheidingsteken" #: code:addons/orm.py:5318 #, python-format msgid "Missing required value for the field '%s'." -msgstr "" +msgstr "De benodigde waarde voor veld '%s' ontbreekt." #. module: base #: view:ir.rule:0 msgid "Write Access Right" -msgstr "" +msgstr "Schrijfrechten" #. module: base #: model:ir.actions.act_window,help:base.action_res_groups @@ -5682,7 +5685,7 @@ msgstr "Eiland Man" #. module: base #: help:ir.actions.client,res_model:0 msgid "Optional model, mostly used for needactions." -msgstr "" +msgstr "Optioneel model, meestal gebruikt voor acties" #. module: base #: code:addons/base/module/module.py:306 @@ -5698,7 +5701,7 @@ msgstr "Bouvet-eiland" #. module: base #: field:ir.model.constraint,type:0 msgid "Constraint Type" -msgstr "" +msgstr "Constraint soort" #. module: base #: field:res.company,child_ids:0 @@ -5764,7 +5767,7 @@ msgstr "Start configuratie wizard" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "" +msgstr "Productieorder, materiaallijsten, productie routes" #. module: base #: field:ir.attachment,name:0 @@ -5863,7 +5866,7 @@ msgstr "Naam bron" #. module: base #: model:ir.ui.menu,name:base.menu_ir_filters msgid "User-defined Filters" -msgstr "" +msgstr "Gebruikers filters" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -5934,6 +5937,9 @@ msgid "" "

You should try others search criteria.

\n" " " msgstr "" +"

Geen module gevonden!

\n" +"

Probeer andere zoek criteria.

\n" +" " #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -6254,6 +6260,9 @@ msgid "" "deleting it (if you delete a native record rule, it may be re-created when " "you reload the module." msgstr "" +"Als u het veld actief uitvinkt, zal het de record regel onbruikbaar maken, " +"zonder deze te verwijderen (indien u een oorspronkelijk record verwijderd, " +"wordt deze soms opnieuw aangemaakt, bij het herladen van de module)." #. module: base #: selection:base.language.install,lang:0 @@ -6416,13 +6425,13 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:182 #, python-format msgid "'%s' does not seem to be a number for field '%%(field)s'" -msgstr "" +msgstr "'%s' lijkt geen nummer te zijn voor veld '%%(field)s'" #. module: base #: help:res.country.state,name:0 msgid "" "Administrative divisions of a country. E.g. Fed. State, Departement, Canton" -msgstr "" +msgstr "Administratieve onderverdelen van een land." #. module: base #: view:res.partner.bank:0 @@ -6432,7 +6441,7 @@ msgstr "Mijn banken" #. module: base #: sql_constraint:ir.filters:0 msgid "Filter names must be unique" -msgstr "" +msgstr "Filternamen moeten uniek zijn" #. module: base #: help:multi_company.default,object_id:0 @@ -6442,7 +6451,7 @@ msgstr "Object waar deze regel op slaat" #. module: base #: selection:ir.actions.act_window,target:0 msgid "Inline View" -msgstr "" +msgstr "Inline weergave" #. module: base #: field:ir.filters,is_default:0 @@ -6576,7 +6585,7 @@ msgstr "Maleisië" #: code:addons/base/ir/ir_sequence.py:130 #, python-format msgid "Increment number must not be zero." -msgstr "" +msgstr "Toename nummer mag niet nul zijn." #. module: base #: model:ir.module.module,shortdesc:base.module_account_cancel @@ -6586,7 +6595,7 @@ msgstr "Annuleer journaalposten" #. module: base #: field:res.partner,tz_offset:0 msgid "Timezone offset" -msgstr "" +msgstr "Tijdzone compensatie" #. module: base #: model:ir.module.module,description:base.module_marketing_campaign @@ -6676,6 +6685,8 @@ msgstr "Kaapverdische Eilanden" #: model:res.groups,comment:base.group_sale_salesman msgid "the user will have access to his own data in the sales application." msgstr "" +"de gebruiker zal toegang hebben tot zijn eigen gegevens in de verkoop " +"applicatie." #. module: base #: model:res.groups,comment:base.group_user @@ -6683,6 +6694,9 @@ msgid "" "the user will be able to manage his own human resources stuff (leave " "request, timesheets, ...), if he is linked to an employee in the system." msgstr "" +"de gebruiker heeft de mogelijkheid om zijn eigen personeelsbeheer zaken te " +"beheren (verlofaanvragen, urenstaten, etc.) als hij is gekoppeld aan een " +"werknemer in het systeem." #. module: base #: code:addons/orm.py:2246 @@ -6868,7 +6882,7 @@ msgstr "Audittrail" #: code:addons/base/ir/ir_fields.py:264 #, python-format msgid "Value '%s' not found in selection field '%%(field)s'" -msgstr "" +msgstr "Waarde '%s' is niet gevonden in selectieveld '%%(field)s'" #. module: base #: model:res.country,name:base.sd @@ -6960,7 +6974,7 @@ msgstr "Israël" #: code:addons/base/res/res_config.py:443 #, python-format msgid "Cannot duplicate configuration!" -msgstr "" +msgstr "Het is niet mogelijk de instellingen te dupliceren!" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_syscohada @@ -6985,12 +6999,12 @@ msgstr "Tijdnotatie" #. module: base #: field:res.company,rml_header3:0 msgid "RML Internal Header for Landscape Reports" -msgstr "" +msgstr "RML interne kop voor liggende rapporten" #. module: base #: model:res.groups,name:base.group_partner_manager msgid "Contact Creation" -msgstr "" +msgstr "Aanmaken relaties" #. module: base #: view:ir.module.module:0 @@ -7046,7 +7060,7 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Week of the Year: %(woy)s" -msgstr "" +msgstr "Week van het jaar: %(woy)s" #. module: base #: field:res.users,id:0 @@ -7117,7 +7131,7 @@ msgstr "Juridische entiteit" #: code:addons/base/ir/ir_fields.py:227 #, python-format msgid "Use the format '%s'" -msgstr "" +msgstr "Gebruik het formaat '%s'" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -7149,12 +7163,12 @@ msgstr "Taken" #: code:addons/base/res/res_bank.py:195 #, python-format msgid "Invalid Bank Account Type Name format." -msgstr "" +msgstr "Ongeldig bankrekening typenaam formaat." #. module: base #: view:ir.filters:0 msgid "Filters visible only for one user" -msgstr "" +msgstr "Filters alleen zichtbaar voor één gebruiker" #. module: base #: model:ir.model,name:base.model_ir_attachment @@ -7219,11 +7233,13 @@ msgstr "" #: model:res.groups,comment:base.group_hr_user msgid "the user will be able to approve document created by employees." msgstr "" +"de gebruiker heeft de mogelijkheid om documenten goed te keuren welke zijn " +"gemaakt door werknemers." #. module: base #: field:ir.ui.menu,needaction_enabled:0 msgid "Target model uses the need action mechanism" -msgstr "" +msgstr "Doel module, welke het 'need action' mechanisme gebruikt." #. module: base #: help:ir.model.fields,relation:0 @@ -7278,7 +7294,7 @@ msgstr "Importeren modulebestand geslaagd!Geannu" #: view:ir.model.constraint:0 #: model:ir.ui.menu,name:base.ir_model_constraint_menu msgid "Model Constraints" -msgstr "" +msgstr "Model constraints" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -7433,7 +7449,7 @@ msgstr "Code staat/provincie" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_multilang msgid "Multi Language Chart of Accounts" -msgstr "" +msgstr "Grootboekschema voor meerdere talen" #. module: base #: model:ir.module.module,description:base.module_l10n_gt @@ -7463,7 +7479,7 @@ msgstr "Vertaalbaar" #. module: base #: help:base.language.import,code:0 msgid "ISO Language and Country code, e.g. en_US" -msgstr "" +msgstr "ISO taal en landcode bijv. nl_NL" #. module: base #: model:res.country,name:base.vn @@ -7473,7 +7489,7 @@ msgstr "Viëtnam" #. module: base #: field:res.users,signature:0 msgid "Signature" -msgstr "Ondertekening" +msgstr "Handtekening" #. module: base #: field:res.partner.category,complete_name:0 @@ -7567,7 +7583,7 @@ msgstr "" #. module: base #: field:res.partner,function:0 msgid "Job Position" -msgstr "" +msgstr "Functie" #. module: base #: view:res.partner:0 @@ -7769,6 +7785,10 @@ msgid "" "use the same timezone that is otherwise used to pick and render date and " "time values: your computer's timezone." msgstr "" +"De tijdzone van de relatie, die wordt gebruikt om de juiste datum en tijd " +"weer te geven in afgedrukte rapporten. Het is belangrijk om een waarde voor " +"dit veld in te stellen. U moet gebruik maken van dezelfde tijdzone die " +"anders wordt gebruikt op uw computer." #. module: base #: model:ir.module.module,shortdesc:base.module_account_analytic_default @@ -7783,7 +7803,7 @@ msgstr "mdx" #. module: base #: view:ir.cron:0 msgid "Scheduled Action" -msgstr "" +msgstr "Geplande actie" #. module: base #: model:res.country,name:base.bi @@ -7837,7 +7857,7 @@ msgstr "op" #. module: base #: view:ir.rule:0 msgid "Rule Definition (Domain Filter)" -msgstr "" +msgstr "Regel definitie (Domain Filter)" #. module: base #: selection:ir.actions.act_url,target:0 @@ -7847,7 +7867,7 @@ msgstr "Dit venster" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_anonymous msgid "Anonymous portal" -msgstr "" +msgstr "Anoniem portaal" #. module: base #: field:base.language.export,format:0 @@ -7906,7 +7926,7 @@ msgstr "Wachtwoord" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_claim msgid "Portal Claim" -msgstr "" +msgstr "Klachten portaat" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pe @@ -7964,7 +7984,7 @@ msgstr "Zoek weergave ref." #. module: base #: help:res.users,partner_id:0 msgid "Partner-related data of the user" -msgstr "" +msgstr "Relatie gerelateerde gegevens van de gebruiker" #. module: base #: model:ir.module.module,description:base.module_crm_todo @@ -8148,12 +8168,12 @@ msgstr "Eigen veld" #. module: base #: model:ir.module.module,summary:base.module_account_accountant msgid "Financial and Analytic Accounting" -msgstr "" +msgstr "Financieel en kostenplaats boekhouding" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project msgid "Portal Project" -msgstr "" +msgstr "Project portaal" #. module: base #: model:res.country,name:base.cc @@ -8186,7 +8206,7 @@ msgstr "Soort bank-velden" #. module: base #: constraint:ir.rule:0 msgid "Rules can not be applied on Transient models." -msgstr "" +msgstr "Regels kunnen niet worden toegewezen aan Transient models." #. module: base #: selection:base.language.install,lang:0 @@ -8233,7 +8253,7 @@ msgstr "Optioneel wachtwoord voor SMTP authenticatie" #: code:addons/base/ir/ir_model.py:720 #, python-format msgid "Sorry, you are not allowed to modify this document." -msgstr "" +msgstr "Sorry, het is u niet toegestaan om dit document te wijzigen" #. module: base #: code:addons/base/res/res_config.py:349 @@ -8267,12 +8287,12 @@ msgstr "Assistent" #: code:addons/base/ir/ir_fields.py:303 #, python-format msgid "database id" -msgstr "" +msgstr "database id" #. module: base #: model:ir.module.module,shortdesc:base.module_base_import msgid "Base import" -msgstr "" +msgstr "Basis import functionaliteit" #. module: base #: report:ir.module.reference:0 @@ -8305,6 +8325,8 @@ msgid "" "Select this if you want to set company's address information for this " "contact" msgstr "" +"Selecteer dit als u de bedrijfs NAW gegevens wilt instellen voor deze " +"relatie." #. module: base #: field:ir.default,field_name:0 @@ -8343,6 +8365,8 @@ msgid "" "This field holds the image used as avatar for this contact, limited to " "1024x1024px" msgstr "" +"Dit veld bevat de afbeelding welke wordt gebruikt als schermafbeelding voor " +"deze relatie. Beperk het formaat op 1024x1024px." #. module: base #: model:res.country,name:base.to @@ -8440,7 +8464,7 @@ msgstr "Type velden" #. module: base #: model:ir.module.module,summary:base.module_hr_recruitment msgid "Jobs, Recruitment, Applications, Job Interviews" -msgstr "" +msgstr "Functie, Werving, Vacatures, Sollicitatiegesprekken" #. module: base #: code:addons/base/module/module.py:540 @@ -8468,7 +8492,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_pad_project msgid "Pad on tasks" -msgstr "" +msgstr "Pad voor taken" #. module: base #: model:ir.model,name:base.model_base_update_translations @@ -8478,7 +8502,7 @@ msgstr "base.update.translations" #. module: base #: view:ir.rule:0 msgid "Full Access Right" -msgstr "" +msgstr "Volledige rechten" #. module: base #: field:res.partner.category,parent_id:0 @@ -8546,7 +8570,7 @@ msgstr "Grafiek weergaves" #. module: base #: help:ir.model.relation,name:0 msgid "PostgreSQL table name implementing a many2many relation." -msgstr "" +msgstr "PostgreSQL tabelnaam met een many2many relatie." #. module: base #: model:ir.module.module,description:base.module_base @@ -8579,7 +8603,7 @@ msgstr "Koeweit" #. module: base #: model:ir.module.module,shortdesc:base.module_account_followup msgid "Payment Follow-up Management" -msgstr "" +msgstr "Beheer betaalherinneringen" #. module: base #: field:workflow.workitem,inst_id:0 @@ -8650,7 +8674,7 @@ msgstr "Altijd doorzoekbaar" #. module: base #: help:res.country.state,code:0 msgid "The state code in max. three chars." -msgstr "" +msgstr "Staat code in max. drie karakters" #. module: base #: model:res.country,name:base.hk @@ -8660,7 +8684,7 @@ msgstr "Hong Kong" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_sale msgid "Portal Sale" -msgstr "" +msgstr "Verkoop portaal" #. module: base #: field:ir.default,ref_id:0 @@ -8675,7 +8699,7 @@ msgstr "Filippijnen" #. module: base #: model:ir.module.module,summary:base.module_hr_timesheet_sheet msgid "Timesheets, Attendances, Activities" -msgstr "" +msgstr "Urenstaten, aanwezigheid, activiteiten." #. module: base #: model:res.country,name:base.ma @@ -8704,6 +8728,8 @@ msgid "" "Translation features are unavailable until you install an extra OpenERP " "translation." msgstr "" +"Vertaal mogelijkheden zijn niet beschikbaar, zolang u geen extra OpenERP " +"taal heeft geïnstalleerd." #. module: base #: model:ir.module.module,description:base.module_l10n_nl @@ -8829,7 +8855,7 @@ msgstr "Geavanceerde routes" #. module: base #: model:ir.module.module,shortdesc:base.module_pad msgid "Collaborative Pads" -msgstr "" +msgstr "Pads voor samenwerking" #. module: base #: model:res.country,name:base.np @@ -8859,7 +8885,7 @@ msgstr "Gebruikers van deze groep erven automatisch deze groep" #. module: base #: model:ir.module.module,summary:base.module_note msgid "Sticky notes, Collaborative, Memos" -msgstr "" +msgstr "Post-it notities, Samenwerking, memo's" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_attendance @@ -8898,6 +8924,9 @@ msgid "" "If the selected language is loaded in the system, all documents related to " "this contact will be printed in this language. If not, it will be English." msgstr "" +"Als de geselecteerde taal is geladen in het systeem, worden alle documenten " +"gerelateerd aan deze relatie, afgedrukt in deze taal. Indien niets " +"geselecteerd, worden deze afgedrukt in het Engels." #. module: base #: model:ir.module.module,description:base.module_hr_evaluation @@ -9040,6 +9069,10 @@ msgid "" "\n" "(Document type: %s)" msgstr "" +"Voor dit soort documenten, heeft u alleen toegang tot regels welke u zelf " +"heeft aangemaakt.\n" +"\n" +"(Documentsoort: %s)" #. module: base #: view:base.language.export:0 @@ -9089,7 +9122,7 @@ msgstr "%b - Afkorting naam maand." #: code:addons/base/ir/ir_model.py:722 #, python-format msgid "Sorry, you are not allowed to delete this document." -msgstr "" +msgstr "Sorry, u mag dit document niet verwijderen" #. module: base #: constraint:ir.rule:0 @@ -9111,7 +9144,7 @@ msgstr "Multi-acties" #. module: base #: model:ir.module.module,summary:base.module_mail msgid "Discussions, Mailing Lists, News" -msgstr "" +msgstr "Discussies, Mailings, Nieuws" #. module: base #: model:ir.module.module,description:base.module_fleet @@ -9212,7 +9245,7 @@ msgstr "Gebruikersfout" #. module: base #: model:ir.module.module,summary:base.module_project_issue msgid "Support, Bug Tracker, Helpdesk" -msgstr "" +msgstr "Support, Bug Tracker, Helpdesk" #. module: base #: model:res.country,name:base.ae @@ -9474,7 +9507,7 @@ msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #. module: base #: view:ir.filters:0 msgid "Filters shared with all users" -msgstr "" +msgstr "Filters gedeeld met alle gebruikers" #. module: base #: view:ir.translation:0 @@ -9526,7 +9559,7 @@ msgstr "Geen" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_holidays msgid "Leave Management" -msgstr "" +msgstr "Verlofbeheer" #. module: base #: model:res.company,overdue_msg:base.main_company @@ -9620,7 +9653,7 @@ msgstr "Gebruikersinterface" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_byproduct msgid "MRP Byproducts" -msgstr "" +msgstr "productie bijproducten" #. module: base #: field:res.request,ref_partner_id:0 @@ -9630,7 +9663,7 @@ msgstr "Ref. relatie" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_expense msgid "Expense Management" -msgstr "" +msgstr "Declaratiebeheer" #. module: base #: field:ir.attachment,create_date:0 @@ -9709,7 +9742,7 @@ msgstr "Modellen" #: code:addons/base/module/module.py:500 #, python-format msgid "The `base` module cannot be uninstalled" -msgstr "" +msgstr "De `base` module kan niet worden gedeinstalleerd" #. module: base #: code:addons/base/ir/ir_cron.py:247 @@ -9736,7 +9769,7 @@ msgstr "osv_memory.autovacuum" #: code:addons/base/ir/ir_model.py:721 #, python-format msgid "Sorry, you are not allowed to create this kind of document." -msgstr "" +msgstr "Sorry, u mag dit soort documenten niet aanmaken." #. module: base #: field:base.language.export,lang:0 @@ -9839,7 +9872,7 @@ msgstr "Annuleren" #: code:addons/orm.py:1506 #, python-format msgid "Unknown database identifier '%s'" -msgstr "" +msgstr "Onbekende database identifier '%s'" #. module: base #: selection:base.language.export,format:0 @@ -9992,7 +10025,7 @@ msgstr "Duitsland" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth msgid "OAuth2 Authentication" -msgstr "" +msgstr "OAuth2 Authenticatie" #. module: base #: view:workflow:0 @@ -10029,7 +10062,7 @@ msgstr "De valutacode moet uniek zijn per bedrijf!" #: code:addons/base/module/wizard/base_export_language.py:39 #, python-format msgid "New Language (Empty translation template)" -msgstr "" +msgstr "Nieuwe taal (lege vertaling sjabloon)" #. module: base #: help:ir.actions.server,email:0 @@ -10090,7 +10123,7 @@ msgstr "Egypte" #. module: base #: view:ir.attachment:0 msgid "Creation" -msgstr "" +msgstr "Aanmaken" #. module: base #: help:ir.actions.server,model_id:0 @@ -10134,7 +10167,7 @@ msgstr "Omschrijving velden" #. module: base #: model:ir.module.module,shortdesc:base.module_analytic_contract_hr_expense msgid "Contracts Management: hr_expense link" -msgstr "" +msgstr "Contract Management: hr_expense link" #. module: base #: view:ir.attachment:0 @@ -10153,7 +10186,7 @@ msgstr "Groepeer op..." #. module: base #: view:base.module.update:0 msgid "Module Update Result" -msgstr "" +msgstr "Module update resultaat" #. module: base #: model:ir.module.module,description:base.module_analytic_contract_hr_expense @@ -10168,17 +10201,17 @@ msgstr "" #. module: base #: field:ir.attachment,store_fname:0 msgid "Stored Filename" -msgstr "" +msgstr "Opgeslagen bestandsnaam" #. module: base #: field:res.partner,use_parent_address:0 msgid "Use Company Address" -msgstr "" +msgstr "Gebruik bedrijfsadres" #. module: base #: model:ir.module.module,summary:base.module_hr_holidays msgid "Holidays, Allocation and Leave Requests" -msgstr "" +msgstr "Vakanties, Toekenning en verlofaanvragen" #. module: base #: model:ir.module.module,description:base.module_web_hello @@ -10391,7 +10424,7 @@ msgstr "Eenheid interval" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Voorraad portaal" #. module: base #: field:workflow.activity,kind:0 @@ -10474,7 +10507,7 @@ msgstr "res.request" #. module: base #: field:res.partner,image_medium:0 msgid "Medium-sized image" -msgstr "" +msgstr "Middelgrote afbeelding" #. module: base #: view:ir.model:0 @@ -10501,7 +10534,7 @@ msgstr "Bestandsinhoud" #: view:ir.model.relation:0 #: model:ir.ui.menu,name:base.ir_model_relation_menu msgid "ManyToMany Relations" -msgstr "" +msgstr "ManyToMany Relaties" #. module: base #: model:res.country,name:base.pa @@ -10539,7 +10572,7 @@ msgstr "Pitcairn eiland" #. module: base #: field:res.partner,category_id:0 msgid "Tags" -msgstr "" +msgstr "Labels" #. module: base #: view:base.module.upgrade:0 @@ -10559,7 +10592,7 @@ msgstr "Record-regels" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Multi-bedrijf" #. module: base #: model:ir.module.category,name:base.module_category_portal @@ -10570,13 +10603,13 @@ msgstr "Portaal" #. module: base #: selection:ir.translation,state:0 msgid "To Translate" -msgstr "" +msgstr "Te vertalen" #. module: base #: code:addons/base/ir/ir_fields.py:294 #, python-format msgid "See all possible values" -msgstr "" +msgstr "Bekijk alle mogelijke waarden" #. module: base #: model:ir.module.module,description:base.module_claim_from_delivery @@ -10616,7 +10649,7 @@ msgstr "" #. module: base #: view:res.company:0 msgid "Click to set your company logo." -msgstr "" +msgstr "Klik om uw bedrijfslogo in te stellen." #. module: base #: view:res.lang:0 @@ -10637,12 +10670,12 @@ msgstr "Guinea Bissau" #. module: base #: field:ir.actions.report.xml,header:0 msgid "Add RML Header" -msgstr "" +msgstr "RML kop toevoegen" #. module: base #: help:res.company,rml_footer:0 msgid "Footer text displayed at the bottom of all reports." -msgstr "" +msgstr "Voet tekst, weergegeven aan de onderzijde van alle rapporten." #. module: base #: field:ir.module.module,icon:0 @@ -10652,7 +10685,7 @@ msgstr "URL icoon" #. module: base #: model:ir.module.module,shortdesc:base.module_note_pad msgid "Memos pad" -msgstr "" +msgstr "Memo pad" #. module: base #: model:ir.module.module,description:base.module_pad @@ -10757,7 +10790,7 @@ msgstr "Italië" #. module: base #: model:res.groups,name:base.group_sale_salesman msgid "See Own Leads" -msgstr "" +msgstr "Bekijk eigen leads" #. module: base #: view:ir.actions.todo:0 @@ -10768,7 +10801,7 @@ msgstr "Te doen" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_hr_employees msgid "Portal HR employees" -msgstr "" +msgstr "Werknemers portaal" #. module: base #: selection:base.language.install,lang:0 @@ -10885,7 +10918,7 @@ msgstr "" #, python-format msgid "" "Please contact your system administrator if you think this is an error." -msgstr "" +msgstr "Neem contact op met uw beheerder, als u denkt dat dit een fout is." #. module: base #: code:addons/base/module/module.py:546 @@ -10893,7 +10926,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "" +msgstr "Geplande upgrade toepassen" #. module: base #: view:workflow.activity:0 @@ -10933,6 +10966,8 @@ msgid "" "One of the documents you are trying to access has been deleted, please try " "again after refreshing." msgstr "" +"Een van de documenten welke u wilt bekijken, is verwijderd. probeer het " +"opnieuw na het verversen van uw scherm." #. module: base #: model:ir.model,name:base.model_ir_mail_server @@ -11027,7 +11062,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_stock msgid "Sales and Warehouse Management" -msgstr "" +msgstr "Verkoop en magazijn beheer" #. module: base #: model:ir.module.module,description:base.module_hr_recruitment @@ -11094,7 +11129,7 @@ msgstr "" #. module: base #: help:res.partner,ean13:0 msgid "BarCode" -msgstr "" +msgstr "Barcode" #. module: base #: help:ir.model.fields,model_id:0 @@ -11115,7 +11150,7 @@ msgstr "Martinique" #. module: base #: help:res.partner,is_company:0 msgid "Check if the contact is a company, otherwise it is a person" -msgstr "" +msgstr "Controleer of de relatie een bedrijf is, anders is het een persoon." #. module: base #: view:ir.sequence.type:0 @@ -11125,13 +11160,13 @@ msgstr "Reekssoort" #. module: base #: view:res.partner:0 msgid "Mobile:" -msgstr "" +msgstr "Mobiel:" #. module: base #: code:addons/base/res/res_bank.py:195 #, python-format msgid "Formating Error" -msgstr "" +msgstr "Formating fout" #. module: base #: model:res.country,name:base.ye @@ -11200,7 +11235,7 @@ msgstr "" #: code:addons/base/ir/ir_model.py:1024 #, python-format msgid "Permission Denied" -msgstr "" +msgstr "Toegang geweigerd" #. module: base #: field:ir.ui.menu,child_id:0 @@ -11270,12 +11305,12 @@ msgstr "Email" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Office Supplies" -msgstr "" +msgstr "Kantoorbenodigdheden" #. module: base #: field:ir.attachment,res_model:0 msgid "Resource Model" -msgstr "" +msgstr "Resource model" #. module: base #: code:addons/custom.py:555 @@ -11351,7 +11386,7 @@ msgstr "workflow" #. module: base #: view:ir.rule:0 msgid "Read Access Right" -msgstr "" +msgstr "Leestrechten" #. module: base #: model:ir.module.module,shortdesc:base.module_analytic_user_function @@ -11382,7 +11417,7 @@ msgstr "Trapsgewijs" #. module: base #: model:ir.module.module,summary:base.module_crm msgid "Leads, Opportunities, Phone Calls" -msgstr "" +msgstr "Leads, prospects, telefoongesprekken" #. module: base #: model:ir.module.category,description:base.module_category_knowledge_management @@ -11401,13 +11436,13 @@ msgstr "Arabisch / الْعَرَبيّة" #. module: base #: selection:ir.translation,state:0 msgid "Translated" -msgstr "" +msgstr "Vertaald" #. module: base #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Standaard bedrijf per object" #. module: base #: model:ir.module.module,shortdesc:base.module_web_hello @@ -11437,7 +11472,7 @@ msgstr "Domein" #: code:addons/base/ir/ir_fields.py:166 #, python-format msgid "Use '1' for yes and '0' for no" -msgstr "" +msgstr "gebruik '1' voor ja en '0' voor nee" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_campaign @@ -11452,13 +11487,13 @@ msgstr "Naam staat/provincie" #. module: base #: help:ir.attachment,type:0 msgid "Binary File or URL" -msgstr "" +msgstr "Binaire bestand of URL" #. module: base #: code:addons/base/ir/ir_fields.py:313 #, python-format msgid "Invalid database id '%s' for the field '%%(field)s'" -msgstr "" +msgstr "Ongeldige database id '%s'voor het veld '%%(field)s'" #. module: base #: view:res.lang:0 @@ -11497,7 +11532,7 @@ msgstr "" #. module: base #: view:ir.filters:0 msgid "Shared" -msgstr "" +msgstr "Gedeeld" #. module: base #: code:addons/base/module/module.py:357 @@ -11631,7 +11666,7 @@ msgstr "Grenada" #. module: base #: help:res.partner,customer:0 msgid "Check this box if this contact is a customer." -msgstr "" +msgstr "Vink dit aan indien deze relatie een klant is." #. module: base #: view:ir.actions.server:0 @@ -11659,7 +11694,7 @@ msgstr "" #. module: base #: field:res.users,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Gekoppelde relatie" #. module: base #: code:addons/osv.py:153 @@ -11696,13 +11731,13 @@ msgstr "Productie verwerkingen" #. module: base #: view:base.language.export:0 msgid "Here is the exported translation file:" -msgstr "" +msgstr "Hier is het geëxporteerde vertaalbestand:" #. module: base #: field:ir.actions.report.xml,report_rml_content:0 #: field:ir.actions.report.xml,report_rml_content_data:0 msgid "RML Content" -msgstr "" +msgstr "RML inhoud" #. module: base #: view:res.lang:0 @@ -11853,7 +11888,7 @@ msgstr "A4" #. module: base #: view:res.config.installer:0 msgid "Configuration Installer" -msgstr "" +msgstr "Instellingen installer" #. module: base #: field:res.partner,customer:0 @@ -11943,13 +11978,13 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_fields_converter msgid "ir.fields.converter" -msgstr "" +msgstr "ir.fields.converter" #. module: base #: code:addons/base/res/res_partner.py:439 #, python-format msgid "Couldn't create contact without email address !" -msgstr "" +msgstr "Het was niet mogelijk een relatie aan te maken zinder e-mail adres!" #. module: base #: model:ir.module.category,name:base.module_category_manufacturing @@ -11971,12 +12006,12 @@ msgstr "Installatie afbreken" #. module: base #: model:ir.model,name:base.model_ir_model_relation msgid "ir.model.relation" -msgstr "" +msgstr "ir.model.relation" #. module: base #: model:ir.module.module,shortdesc:base.module_account_check_writing msgid "Check Writing" -msgstr "" +msgstr "Cheques schrijven" #. module: base #: model:ir.module.module,description:base.module_plugin_outlook @@ -12201,7 +12236,7 @@ msgstr "UK - Boekhouding" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_madam msgid "Mrs." -msgstr "" +msgstr "Mevr." #. module: base #: code:addons/base/ir/ir_model.py:426 @@ -12222,7 +12257,7 @@ msgstr "Ref. gebruiker" #: code:addons/base/ir/ir_fields.py:226 #, python-format msgid "'%s' does not seem to be a valid datetime for field '%%(field)s'" -msgstr "" +msgstr "'%s' is geen geldige datum/tijd voor veld '%%(field)s'" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_bic @@ -12237,7 +12272,7 @@ msgstr "Lus-expressie" #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Retailer" -msgstr "" +msgstr "Detailhandelaar" #. module: base #: view:ir.model.fields:0 @@ -12368,7 +12403,7 @@ msgstr "Verbindingsinformatie" #. module: base #: model:res.partner.title,name:base.res_partner_title_prof msgid "Professor" -msgstr "" +msgstr "Professor" #. module: base #: model:res.country,name:base.hm @@ -12397,7 +12432,7 @@ msgstr "Helpt u offertes, verkooporders en facturen te beheren." #. module: base #: field:res.users,login_date:0 msgid "Latest connection" -msgstr "" +msgstr "Laatste verbinding" #. module: base #: field:res.groups,implied_ids:0 @@ -12414,7 +12449,7 @@ msgstr "Selectie" #: model:ir.actions.act_window,name:base.change_password_wizard_action #: view:res.users:0 msgid "Change Password" -msgstr "" +msgstr "Wachtwoord wijzigen" #. module: base #: model:ir.module.module,description:base.module_l10n_es @@ -12482,7 +12517,7 @@ msgstr "Binair" #. module: base #: model:res.partner.title,name:base.res_partner_title_doctor msgid "Doctor" -msgstr "" +msgstr "Dr." #. module: base #: model:ir.module.module,description:base.module_mrp_repair @@ -12504,7 +12539,7 @@ msgstr "" #. module: base #: model:res.country,name:base.cd msgid "Congo, Democratic Republic of the" -msgstr "" +msgstr "Congo, Democratisch republiek van" #. module: base #: model:res.country,name:base.cr @@ -12539,7 +12574,7 @@ msgstr "Andere relaties" #: view:workflow.workitem:0 #: field:workflow.workitem,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -12551,7 +12586,7 @@ msgstr "Valuta" #. module: base #: model:res.partner.category,name:base.res_partner_category_8 msgid "Consultancy Services" -msgstr "" +msgstr "Consultancy services" #. module: base #: help:ir.values,value:0 @@ -12561,7 +12596,7 @@ msgstr "Standaardwaarde of verwijzing naar een actie" #. module: base #: field:ir.actions.report.xml,auto:0 msgid "Custom Python Parser" -msgstr "" +msgstr "Custom Python Parser" #. module: base #: sql_constraint:res.groups:0 @@ -12571,7 +12606,7 @@ msgstr "De groepsnaam moet uniek zijn !" #. module: base #: help:ir.translation,module:0 msgid "Module this term belongs to" -msgstr "" +msgstr "Module waaraan deze term toebehoort" #. module: base #: model:ir.module.module,description:base.module_web_view_editor @@ -12661,7 +12696,7 @@ msgstr "Verwervingen" #. module: base #: model:res.partner.category,name:base.res_partner_category_6 msgid "Bronze" -msgstr "" +msgstr "Brons" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_payroll_account @@ -12691,12 +12726,12 @@ msgstr "Aanmaak maand" #. module: base #: field:ir.module.module,demo:0 msgid "Demo Data" -msgstr "" +msgstr "Demogegevens" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_mister msgid "Mr." -msgstr "" +msgstr "Dhr." #. module: base #: model:res.country,name:base.mv @@ -12706,7 +12741,7 @@ msgstr "Malediven" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_crm msgid "Portal CRM" -msgstr "" +msgstr "CRM portaal" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -12726,7 +12761,7 @@ msgstr "Adres formaat" #. module: base #: model:ir.model,name:base.model_change_password_user msgid "Change Password Wizard User" -msgstr "" +msgstr "Wijzig wachtwoord wizard" #. module: base #: model:res.groups,name:base.group_no_one @@ -12816,7 +12851,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW Path" -msgstr "" +msgstr "SXW Pad" #. module: base #: model:ir.module.module,description:base.module_account_asset @@ -12849,7 +12884,7 @@ msgstr "BANK" #: model:ir.module.category,name:base.module_category_point_of_sale #: model:ir.module.module,shortdesc:base.module_point_of_sale msgid "Point of Sale" -msgstr "" +msgstr "Kassa" #. module: base #: model:ir.module.module,description:base.module_mail @@ -13050,7 +13085,7 @@ msgstr "Filter op mijn documenten" #. module: base #: model:ir.module.module,summary:base.module_project_gtd msgid "Personal Tasks, Contexts, Timeboxes" -msgstr "" +msgstr "Persoonlijke taken, Time management" #. module: base #: model:ir.module.module,description:base.module_l10n_cr @@ -13098,7 +13133,7 @@ msgstr "Gabon" #. module: base #: model:ir.module.module,summary:base.module_stock msgid "Inventory, Logistic, Storage" -msgstr "" +msgstr "Voorraadbeheer, Logistiek, Opslag" #. module: base #: view:ir.actions.act_window:0 @@ -13152,7 +13187,7 @@ msgstr "Nieuw Caledonië (Frans)" #. module: base #: field:ir.model,osv_memory:0 msgid "Transient Model" -msgstr "" +msgstr "Transient Model" #. module: base #: model:res.country,name:base.cy @@ -13162,7 +13197,7 @@ msgstr "Cyprus" #. module: base #: field:res.users,new_password:0 msgid "Set Password" -msgstr "" +msgstr "Wachtwoord instellen" #. module: base #: field:ir.actions.server,subject:0 @@ -13210,7 +13245,7 @@ msgstr "Voorkeuren" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Buyer" -msgstr "" +msgstr "Componenten koper" #. module: base #: model:ir.module.module,description:base.module_web_tests_demo @@ -13295,7 +13330,7 @@ msgstr "Uitgaande mailservers" #. module: base #: model:ir.ui.menu,name:base.menu_custom msgid "Technical" -msgstr "" +msgstr "Technisch" #. module: base #: model:res.country,name:base.cn @@ -13425,7 +13460,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_account_test msgid "Accounting Consistency Tests" -msgstr "" +msgstr "Boekhouding consistentie test" #. module: base #: model:ir.module.module,description:base.module_purchase_double_validation @@ -13480,6 +13515,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Middelgrote afbeelding van deze relatie. Het wordt automatisch aangepast " +"naar 128x128px, met behoud van de verhouding. Gebruik dit veld in " +"formulierweergaves en sommige kanban weergaves." #. module: base #: view:base.update.translations:0 @@ -13518,7 +13556,7 @@ msgstr "Uit te voeren actie" #: field:ir.model,modules:0 #: field:ir.model.fields,modules:0 msgid "In Modules" -msgstr "" +msgstr "In modules" #. module: base #: model:ir.module.module,shortdesc:base.module_contacts @@ -13592,7 +13630,7 @@ msgstr "BTW Nr." #. module: base #: model:ir.module.module,shortdesc:base.module_account_bank_statement_extensions msgid "Bank Statement Extensions to Support e-banking" -msgstr "" +msgstr "Bankafschrift extensie, voor de ondersteuning van e-banking" #. module: base #: field:ir.model.fields,field_description:0 @@ -13622,7 +13660,7 @@ msgstr "Zaïre" #. module: base #: model:ir.module.module,summary:base.module_project msgid "Projects, Tasks" -msgstr "" +msgstr "Projecten en projecttaken" #. module: base #: field:ir.attachment,res_id:0 @@ -13641,7 +13679,7 @@ msgstr "Informatie" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "false" -msgstr "" +msgstr "onwaar" #. module: base #: model:ir.module.module,description:base.module_account_analytic_analysis @@ -13711,6 +13749,8 @@ msgid "" "The user this filter is private to. When left empty the filter is public and " "available to all users." msgstr "" +"De gebruiker waarvoor het filter privé is. Wanneer u dit leeg laat is het " +"filter publiek en beschikbaar voor alle gebruikers." #. module: base #: field:ir.actions.act_window,auto_refresh:0 @@ -13740,6 +13780,8 @@ msgid "" "Automatically set to let administators find new terms that might need to be " "translated" msgstr "" +"Wordt automatisch ingesteld om beheerders nieuwe termen te laten vinden " +"welke vertaald moeten worden." #. module: base #: code:addons/base/ir/ir_model.py:84 @@ -13751,7 +13793,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Fax:" -msgstr "" +msgstr "Fax:" #. module: base #: selection:ir.ui.view,type:0 @@ -13771,7 +13813,7 @@ msgstr "Picking voor produceren" #. module: base #: model:ir.module.module,summary:base.module_note_pad msgid "Sticky memos, Collaborative" -msgstr "" +msgstr "Post-it's, samenwerking" #. module: base #: model:res.country,name:base.wf @@ -13852,6 +13894,8 @@ msgid "" "the user will have access to all records of everyone in the sales " "application." msgstr "" +"de gebruiker heeft toegang tot alle regels van iedereen in de " +"verkoopapplicatie." #. module: base #: model:ir.module.module,shortdesc:base.module_event @@ -13906,6 +13950,10 @@ msgid "" " the rightmost column (value) contains the " "translations" msgstr "" +"CSV formaat: kunt u rechtstreeks bewerken met uw favoriete spreadsheet-" +"software,\n" +"                                 de meest rechtse kolom (waarde) bevat de " +"vertalingen" #. module: base #: model:ir.module.module,description:base.module_account_chart @@ -13930,7 +13978,7 @@ msgstr "De doel activiteit" #. module: base #: model:ir.module.module,shortdesc:base.module_project_issue msgid "Issue Tracker" -msgstr "" +msgstr "Issue tracker" #. module: base #: view:base.module.update:0 @@ -14010,6 +14058,8 @@ msgid "" "Check this to define the report footer manually. Otherwise it will be " "filled in automatically." msgstr "" +"Vink dit aan om de voet handmatig te definiëren. Ander wordt deze " +"automatisch ingevuld." #. module: base #: view:res.partner:0 @@ -14024,7 +14074,7 @@ msgstr "Modules installeren" #. module: base #: model:ir.ui.menu,name:base.menu_import_crm msgid "Import & Synchronize" -msgstr "" +msgstr "Importeer en Synchroniseer" #. module: base #: view:res.partner:0 @@ -14055,7 +14105,7 @@ msgstr "Bron" #: field:ir.model.constraint,date_init:0 #: field:ir.model.relation,date_init:0 msgid "Initialization Date" -msgstr "" +msgstr "Initialisatie datum" #. module: base #: model:res.country,name:base.vu @@ -14295,7 +14345,7 @@ msgstr "Fout ! U kunt geen recursief menu maken." #. module: base #: view:ir.translation:0 msgid "Web-only translations" -msgstr "" +msgstr "Web-only vertalingen" #. module: base #: view:ir.rule:0 @@ -14356,7 +14406,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_gengo msgid "Automated Translations through Gengo API" -msgstr "" +msgstr "Automatische vertalingen via de Gengo API" #. module: base #: model:ir.module.module,shortdesc:base.module_account_payment @@ -14395,7 +14445,7 @@ msgstr "Wijzigen wachtwoord wizard" #. module: base #: model:ir.module.module,summary:base.module_account_voucher msgid "Send Invoices and Track Payments" -msgstr "" +msgstr "Stuur facturen en volg betalingen" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead @@ -14531,7 +14581,7 @@ msgstr "Helpdesk" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply for Write" -msgstr "" +msgstr "Schrijfrechten toepassen" #. module: base #: field:ir.ui.menu,parent_left:0 @@ -15817,6 +15867,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een relatie toe te voegen aan het adresboek.\n" +"

\n" +" OpenERP kunt u bij het eenvoudig volgen van alle activiteiten " +"met betrekking tot\n" +"               een klant. Bijvoorbeeld discussies, de geschiedenis van " +"zakelijke kansen,\n" +"               documenten, enz.\n" +"

\n" +" " #. module: base #: model:res.partner.category,name:base.res_partner_category_2 diff --git a/openerp/addons/base/i18n/pt.po b/openerp/addons/base/i18n/pt.po index 6c6e30c0570..77e939b6891 100644 --- a/openerp/addons/base/i18n/pt.po +++ b/openerp/addons/base/i18n/pt.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-15 10:00+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-18 11:56+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-16 05:52+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-19 06:36+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -60,7 +60,7 @@ msgstr "Arquitetura da vista" #. module: base #: model:ir.module.module,summary:base.module_sale_stock msgid "Quotation, Sale Orders, Delivery & Invoicing Control" -msgstr "" +msgstr "Orçamentos, ordens de venda, controlo de entregas e faturação" #. module: base #: selection:ir.sequence,implementation:0 @@ -140,7 +140,7 @@ msgstr "" #. module: base #: help:res.partner,employee:0 msgid "Check this box if this contact is an Employee." -msgstr "" +msgstr "Marque esta caixa se o contacto for um empregado." #. module: base #: help:ir.model.fields,domain:0 @@ -1312,7 +1312,7 @@ msgstr "Coreia do Sul" #. module: base #: model:ir.module.module,description:base.module_l10n_si msgid "Kontni načrt za gospodarske družbe" -msgstr "" +msgstr "Plano de contas para empresas" #. module: base #: code:addons/orm.py:4917 @@ -2325,7 +2325,7 @@ msgstr "Método" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_crypt msgid "Password Encryption" -msgstr "" +msgstr "Codificação de senha" #. module: base #: view:workflow.activity:0 @@ -3284,7 +3284,7 @@ msgstr "Arménia" #. module: base #: model:ir.module.module,summary:base.module_hr_evaluation msgid "Periodical Evaluations, Appraisals, Surveys" -msgstr "" +msgstr "Avaliações periódicas, decisões, pesquisas" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -3844,7 +3844,7 @@ msgstr "Recursividade detetada." #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_et msgid "Ethiopia - Accounting" -msgstr "" +msgstr "Etiópia - contabilidade" #. module: base #: code:addons/base/module/module.py:366 @@ -5012,7 +5012,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "IT Services" -msgstr "" +msgstr "Serviços de TI" #. module: base #: model:ir.module.category,name:base.module_category_specific_industry_applications @@ -6832,7 +6832,7 @@ msgstr "Às vezes chamado de BIC ou Swift." #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in msgid "Indian - Accounting" -msgstr "" +msgstr "Índia - contabilidade" #. module: base #: field:res.lang,time_format:0 @@ -7163,6 +7163,13 @@ msgid "" "============================================================\n" " " msgstr "" +"\n" +"Para adicionar dados chineses das províncias\n" +"Tipo de conta gráfico \\ modelo de contas \\ IVA \\ categoria de " +"Contabilidade auxiliar \\ gestão de livro comprovante de contabilidade \\ " +"contabilidade financeira livro documentos\n" +"============================================================\n" +" " #. module: base #: model:res.country,name:base.lc @@ -8284,7 +8291,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_hr_recruitment msgid "Jobs, Recruitment, Applications, Job Interviews" -msgstr "" +msgstr "Vagas, recrutamento, candidaturas, entrevistas" #. module: base #: code:addons/base/module/module.py:540 @@ -8859,6 +8866,13 @@ msgid "" "German accounting chart and localization.\n" " " msgstr "" +"\n" +"Este módulo inclui um plano de contas com base no sistema SKR03 alemão.\n" +"=============================================================================" +"=\n" +"\n" +"Plano de contas alemão e localização.\n" +" " #. module: base #: field:ir.actions.report.xml,attachment_use:0 @@ -9279,7 +9293,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_status msgid "State/Stage Management" -msgstr "" +msgstr "Gestão de estados" #. module: base #: model:ir.module.category,name:base.module_category_warehouse_management @@ -9518,7 +9532,7 @@ msgstr "Atalhos Personalizados" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_si msgid "Slovenian - Accounting" -msgstr "" +msgstr "Eslovénia - contabilidade" #. module: base #: model:ir.module.module,description:base.module_account_cancel @@ -9679,7 +9693,7 @@ msgstr "Cancelar" #: code:addons/orm.py:1506 #, python-format msgid "Unknown database identifier '%s'" -msgstr "" +msgstr "Identificador de base de dados '%s' desconhecido" #. module: base #: selection:base.language.export,format:0 @@ -10019,6 +10033,10 @@ msgid "" "===========================\n" "\n" msgstr "" +"\n" +"Módulo de exemplo para OpenERP Web.\n" +"===========================\n" +"\n" #. module: base #: selection:ir.module.module,state:0 @@ -10332,7 +10350,7 @@ msgstr "Conteúdo do Ficheiro" #: view:ir.model.relation:0 #: model:ir.ui.menu,name:base.ir_model_relation_menu msgid "ManyToMany Relations" -msgstr "" +msgstr "Reçaões de \"vários para vários\"" #. module: base #: model:res.country,name:base.pa @@ -10821,6 +10839,12 @@ msgid "" "Thai accounting chart and localization.\n" " " msgstr "" +"\n" +"Tabela de contas para a Tailândia.\n" +"===============================\n" +"\n" +"Tabela de contas para a Tailândia e localização.\n" +" " #. module: base #: model:res.country,name:base.kn diff --git a/openerp/addons/base/i18n/pt_BR.po b/openerp/addons/base/i18n/pt_BR.po index c801231f537..c22a985354f 100644 --- a/openerp/addons/base/i18n/pt_BR.po +++ b/openerp/addons/base/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-12 21:17+0000\n" -"Last-Translator: Projetaty Soluções OpenSource \n" +"PO-Revision-Date: 2013-01-20 02:21+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-13 05:27+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -1443,6 +1444,51 @@ msgid "" "come with any additional paid permission for online use of 'private " "modules'.\n" msgstr "" +"\n" +"Módulo Base para a Localização Brasileira\n" +"==========================================\n" +"\n" +"Este módulo consiste de:\n" +"\n" +" - Plano de Contas Genérico Brasileiro\n" +" - Impostos Brasileiros como:\n" +"\n" +" - IPI\n" +" - ICMS\n" +" - PIS\n" +" - COFINS\n" +" - ISS\n" +" - IR\n" +" - IRPJ\n" +" - CSLL\n" +"\n" +"O campo tax_discount também foi adicionado no account.tax.template e\n" +"account.tax objects para permitir o cálculo correto de alguns impostos " +"Brasileiros \n" +"como o ICMS. O assistente de criação do plano de contas foi extentido para \n" +"propagarr estes novos dados corretamente.\n" +"\n" +"É importante observar entretanto que ainda faltam neste módulo muitas " +"implementações\n" +"para usar o OpenERP adequadamente no Brasil. Estas implementações (como a NF-" +"e Nota Fiscal Eletrônica\n" +"que já está operacional) funciona através de mais de 15 módulos adicionais " +"do projeto da Localização Brasileira\n" +"no Launchpad\n" +"https://launchpad.net/openerp.pt-br-localiz e suas dependências na branch " +"extra addons.\n" +"Estes módulos visam não quebrar com a notável modularidade do OpenERP, por " +"isso são\n" +"vários, porém pequenos. Uma das razões para manter estes módulos separados é " +"por que \n" +"os líderes da Localização Brasileira necessitam de permissões de escrita " +"para agilizar \n" +"o término da localização e financiar o restante dos requisitos legais como\n" +"(livros fiscais, SPED Contábil, SPED Fiscal e o PAF ECF que ainda estão " +"incompletos em Setembro de\n" +"2011). Estes módulos também estão estritamente licenciados sob a licença " +"AGPL V3 e hoje não estão \n" +"com nenhuma permissão paga adicional para o uso de 'módulos privados'.\n" #. module: base #: code:addons/orm.py:406 @@ -2893,7 +2939,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth_signup msgid "Signup with OAuth2 Authentication" -msgstr "" +msgstr "Acessar com Autenticação OAuth2" #. module: base #: selection:ir.model,state:0 @@ -3492,7 +3538,7 @@ msgstr "" #. module: base #: field:res.company,rml_header1:0 msgid "Company Tagline" -msgstr "" +msgstr "Slogan da Empresa" #. module: base #: code:addons/base/res/res_users.py:668 @@ -4557,7 +4603,7 @@ msgstr "Ltd" #. module: base #: model:ir.actions.server,name:base.action_run_ir_action_todo msgid "Run Remaining Action Todo" -msgstr "" +msgstr "Executar ações a Fazer remanescentes" #. module: base #: field:res.partner,ean13:0 @@ -5368,7 +5414,7 @@ msgstr "Integração com Google Docs" #. module: base #: help:ir.attachment,res_model:0 msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "O objeto do banco de dados que este anexo será associado" #. module: base #: code:addons/base/ir/ir_fields.py:327 @@ -5563,6 +5609,18 @@ msgid "" " \n" "%(country_code)s: the code of the country" msgstr "" +"Você pode definir aqui o formato para os endereços deste pais.\n" +"\n" +"Você pode usar um padrão python-style string com todos os campos do endereço " +"(por exemplo, use '%(street)s' para mostrar o campo 'rua') mais\n" +" \n" +"%(state_name)s: o nome do estado\n" +" \n" +"%(state_code)s: o código do estado\n" +" \n" +"%(country_name)s: o nome do país\n" +" \n" +"%(country_code)s: o código do país" #. module: base #: model:res.country,name:base.mu @@ -5577,7 +5635,7 @@ msgstr "Acesso Completo" #. module: base #: model:ir.module.module,description:base.module_l10n_pt msgid "Plano de contas SNC para Portugal" -msgstr "" +msgstr "Plano de contas SNC para Portugal" #. module: base #: view:ir.actions.act_window:0 @@ -5646,6 +5704,12 @@ msgid "" "Collects web application usage with Google Analytics.\n" " " msgstr "" +"\n" +"Google Analytics.\n" +"=================\n" +"\n" +"Registre o uso do aplicativo com o Google Analytics.\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_hr_recruitment @@ -5872,12 +5936,12 @@ msgstr "Histórico" #. module: base #: model:res.country,name:base.im msgid "Isle of Man" -msgstr "" +msgstr "Ilha do Homem" #. module: base #: help:ir.actions.client,res_model:0 msgid "Optional model, mostly used for needactions." -msgstr "" +msgstr "Modelo opcional, usado principalmente para requer ação." #. module: base #: code:addons/base/module/module.py:306 @@ -6385,6 +6449,10 @@ msgid "" "===============================================\n" " " msgstr "" +"\n" +"Permite aos usuários se registrarem e alterarem suas senhas\n" +"===============================================\n" +" " #. module: base #: model:ir.module.category,name:base.module_category_usability @@ -6577,7 +6645,7 @@ msgstr "Sem categoria" #. module: base #: view:res.partner:0 msgid "Phone:" -msgstr "" +msgstr "Telefone:" #. module: base #: field:res.partner,is_company:0 @@ -7028,7 +7096,7 @@ msgstr "ir.cron" #. module: base #: model:res.country,name:base.cw msgid "Curaçao" -msgstr "" +msgstr "Curaçao" #. module: base #: view:ir.sequence:0 @@ -7213,7 +7281,7 @@ msgstr "Formato da Hora" #. module: base #: field:res.company,rml_header3:0 msgid "RML Internal Header for Landscape Reports" -msgstr "" +msgstr "Cabeçalho RML Interno para Relatórios em Paisagem" #. module: base #: model:res.groups,name:base.group_partner_manager @@ -7834,7 +7902,7 @@ msgstr "Ilhas Marianas do Norte" #. module: base #: field:change.password.user,user_login:0 msgid "User Login" -msgstr "" +msgstr "Login de Usuário" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hn @@ -8076,7 +8144,7 @@ msgstr "Esta janela" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_anonymous msgid "Anonymous portal" -msgstr "" +msgstr "Portal Anônimo" #. module: base #: field:base.language.export,format:0 @@ -8211,6 +8279,10 @@ msgid "" "==========================================\n" " " msgstr "" +"\n" +"Lista A Fazer para Prospectos e Oportunidades no CRM\n" +"==========================================\n" +" " #. module: base #: view:ir.mail_server:0 @@ -8671,7 +8743,7 @@ msgstr "Numeração Sequencial de Lançamento" #. module: base #: view:base.language.export:0 msgid "POEdit" -msgstr "" +msgstr "POEdit" #. module: base #: view:ir.values:0 @@ -9930,7 +10002,7 @@ msgstr "Interface de Usuário" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_byproduct msgid "MRP Byproducts" -msgstr "" +msgstr "Subprodutos MRP" #. module: base #: field:res.request,ref_partner_id:0 @@ -10501,7 +10573,7 @@ msgstr "" #. module: base #: field:ir.attachment,store_fname:0 msgid "Stored Filename" -msgstr "" +msgstr "Nome do Arquivo Armazenado" #. module: base #: field:res.partner,use_parent_address:0 @@ -10558,6 +10630,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um contato em sua agenda de " +"endereços.\n" +"

\n" +" O OpenERP auxilia a registrar todas as atividades " +"relacionadas a \n" +" um fornecedor: conversas, histórico de compras,\n" +" documentos, etc.\n" +"

\n" +" " #. module: base #: model:res.country,name:base.lr @@ -10727,7 +10809,7 @@ msgstr "Unidade de Intervalo" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Portal do Estoque" #. module: base #: field:workflow.activity,kind:0 @@ -10952,7 +11034,7 @@ msgstr "Nome da constraint PostgreSQL ou chave estrangeira(FK)" #. module: base #: view:res.company:0 msgid "Click to set your company logo." -msgstr "" +msgstr "Clique para definir o logo da sua empresa." #. module: base #: view:res.lang:0 @@ -11472,7 +11554,7 @@ msgstr "Tipo de Sequências" #. module: base #: view:res.partner:0 msgid "Mobile:" -msgstr "" +msgstr "Celular:" #. module: base #: code:addons/base/res/res_bank.py:195 @@ -11788,7 +11870,7 @@ msgstr "Nome do Estado" #. module: base #: help:ir.attachment,type:0 msgid "Binary File or URL" -msgstr "" +msgstr "Arquivo Binário ou URL" #. module: base #: code:addons/base/ir/ir_fields.py:313 @@ -12765,7 +12847,7 @@ msgstr "Seleção" #: model:ir.actions.act_window,name:base.change_password_wizard_action #: view:res.users:0 msgid "Change Password" -msgstr "" +msgstr "Alterar Senha" #. module: base #: model:ir.module.module,description:base.module_l10n_es @@ -13077,7 +13159,7 @@ msgstr "Formato de endereço" #. module: base #: model:ir.model,name:base.model_change_password_user msgid "Change Password Wizard User" -msgstr "" +msgstr "Assistente de alteração de Senha do Usuário" #. module: base #: model:res.groups,name:base.group_no_one @@ -14104,7 +14186,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Fax:" -msgstr "" +msgstr "Fax:" #. module: base #: selection:ir.ui.view,type:0 @@ -14292,7 +14374,7 @@ msgstr "A atividade destino." #. module: base #: model:ir.module.module,shortdesc:base.module_project_issue msgid "Issue Tracker" -msgstr "" +msgstr "Rastreador de Tíquetes" #. module: base #: view:base.module.update:0 @@ -14570,7 +14652,7 @@ msgstr "Configuração do Sistema pronta" #. module: base #: field:ir.attachment,db_datas:0 msgid "Database Data" -msgstr "" +msgstr "Dados do Banco de Dados" #. module: base #: model:res.country,name:base.tc @@ -14661,7 +14743,7 @@ msgstr "Erro ! Você não pode criar menu recursivo." #. module: base #: view:ir.translation:0 msgid "Web-only translations" -msgstr "" +msgstr "Traduções Web" #. module: base #: view:ir.rule:0 @@ -14756,7 +14838,7 @@ msgstr "Tailândia" #. module: base #: model:ir.model,name:base.model_change_password_wizard msgid "Change Password Wizard" -msgstr "" +msgstr "Assistente de alteração de Senha" #. module: base #: model:ir.module.module,summary:base.module_account_voucher @@ -14897,12 +14979,12 @@ msgstr "Helpdesk" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply for Write" -msgstr "" +msgstr "Aplicar para Gravação" #. module: base #: field:ir.ui.menu,parent_left:0 msgid "Parent Left" -msgstr "" +msgstr "Superior a esquerda" #. module: base #: model:ir.module.module,description:base.module_document_page @@ -15361,7 +15443,7 @@ msgstr "Limite" #. module: base #: model:res.groups,name:base.group_hr_user msgid "Officer" -msgstr "" +msgstr "Oficial" #. module: base #: code:addons/orm.py:785 @@ -15714,7 +15796,7 @@ msgstr "Contabilidade - Canadense" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_co msgid "Colombian - Accounting" -msgstr "" +msgstr "Colômbia - Contabilidade" #. module: base #: model:ir.module.module,description:base.module_account_voucher @@ -15791,7 +15873,7 @@ msgstr "Chile" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "" +msgstr "Editor de Visão" #. module: base #: view:ir.cron:0 @@ -15809,7 +15891,7 @@ msgstr "Condição" #: model:ir.actions.client,name:base.modules_updates_act_cl #: model:ir.ui.menu,name:base.menu_module_updates msgid "Updates" -msgstr "" +msgstr "Atualizações" #. module: base #: help:res.currency,rate:0 @@ -15896,12 +15978,12 @@ msgstr "Atualização do Sistema" #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW Content" -msgstr "" +msgstr "Conteúdo SXW" #. module: base #: field:ir.attachment,file_size:0 msgid "File Size" -msgstr "" +msgstr "Tamanho do Arquivo" #. module: base #: help:ir.sequence,prefix:0 @@ -15943,7 +16025,7 @@ msgstr "Informações Gerais" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pt msgid "Portugal - Chart of Accounts" -msgstr "" +msgstr "Portugal - Plano de Contas" #. module: base #: field:ir.model.data,complete_name:0 @@ -16025,7 +16107,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_module_tree msgid "Installed Modules" -msgstr "" +msgstr "Módulos Instalados" #. module: base #: code:addons/base/res/res_users.py:170 @@ -16055,7 +16137,7 @@ msgstr "Função" #. module: base #: field:ir.ui.menu,parent_right:0 msgid "Parent Right" -msgstr "" +msgstr "Superior a direita" #. module: base #: model:ir.module.category,description:base.module_category_customer_relationship_management From 48733540e10e396207b3cbf1cf9fc0bae67782d3 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Mon, 21 Jan 2013 09:53:11 +0100 Subject: [PATCH 26/72] [FIX] mail_followers: bug-1100691 bzr revid: chm@openerp.com-20130121085311-n1nwcmviykdp7u0o --- addons/mail/static/src/js/mail_followers.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/addons/mail/static/src/js/mail_followers.js b/addons/mail/static/src/js/mail_followers.js index 9f88116acc7..03351c24ac2 100644 --- a/addons/mail/static/src/js/mail_followers.js +++ b/addons/mail/static/src/js/mail_followers.js @@ -216,9 +216,12 @@ openerp_mail_followers = function(session, mail) { display_subtypes:function (data) { var self = this; var subtype_list_ul = this.$('.oe_subtype_list'); - subtype_list_ul.empty(); - var records = data[this.view.datarecord.id || this.view.dataset.ids[0]].message_subtype_data; + var records = []; var nb_subtype = 0; + subtype_list_ul.empty(); + if (this.view.datarecord.id) { + records = data[this.view.datarecord.id].message_subtype_data; + } _(records).each(function (record) {nb_subtype++;}); if (nb_subtype > 1) { this.$('hr').show(); From 13c129a71797438e5d6aee9ef1c5a75503b94728 Mon Sep 17 00:00:00 2001 From: Arnaud Pineux Date: Mon, 21 Jan 2013 10:16:32 +0100 Subject: [PATCH 27/72] [IMP] Your lunch account is group_by user bzr revid: api@openerp.com-20130121091632-jp8cqsoy35o61rwd --- addons/lunch/lunch_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/lunch/lunch_view.xml b/addons/lunch/lunch_view.xml index 8974099a294..bd8ab3c82c8 100644 --- a/addons/lunch/lunch_view.xml +++ b/addons/lunch/lunch_view.xml @@ -39,7 +39,7 @@ - +
@@ -116,7 +116,7 @@ lunch.cashmove tree - {"search_default_is_mine":1} + {"search_default_is_mine_group":1}

Here you can see your cash moves.
A cash moves can be either an expense or a payment. From 142df9e80567b4a7f3e318efeb95e9103d243abb Mon Sep 17 00:00:00 2001 From: Arnaud Pineux Date: Mon, 21 Jan 2013 10:31:40 +0100 Subject: [PATCH 28/72] [IMP] Your lunch account is group_by user (+additional filter) bzr revid: api@openerp.com-20130121093140-m6dhv6kqlrocn9t6 --- addons/lunch/lunch_view.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/lunch/lunch_view.xml b/addons/lunch/lunch_view.xml index bd8ab3c82c8..dd387620102 100644 --- a/addons/lunch/lunch_view.xml +++ b/addons/lunch/lunch_view.xml @@ -40,6 +40,7 @@ + From dd91a1c94a48034eb7552d00142cce308e3d33b4 Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Mon, 21 Jan 2013 11:22:45 +0100 Subject: [PATCH 29/72] [FIX]Uninstall : Savepoint before unlink bzr revid: dle@openerp.com-20130121102245-dkha32uistm3hgca --- openerp/addons/base/ir/ir_model.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openerp/addons/base/ir/ir_model.py b/openerp/addons/base/ir/ir_model.py index ed6f843f898..5927b500a0f 100644 --- a/openerp/addons/base/ir/ir_model.py +++ b/openerp/addons/base/ir/ir_model.py @@ -1062,9 +1062,13 @@ class ir_model_data(osv.osv): continue _logger.info('Deleting %s@%s', res_id, model) try: + cr.execute('SAVEPOINT record_unlink_save') self.pool.get(model).unlink(cr, uid, [res_id], context=context) except Exception: _logger.info('Unable to delete %s@%s', res_id, model, exc_info=True) + cr.execute('ROLLBACK TO SAVEPOINT record_unlink_save') + else: + cr.execute('RELEASE SAVEPOINT record_unlink_save') # Remove non-model records first, then model fields, and finish with models unlink_if_refcount((model, res_id) for model, res_id in to_unlink From 152aadcc9e46f920b15591144dcaa02d0390adf0 Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Mon, 21 Jan 2013 16:03:18 +0100 Subject: [PATCH 30/72] [FIX]Autovacuum force true bzr revid: dle@openerp.com-20130121150318-o12a9o1y8olulz04 --- openerp/addons/base/ir/osv_memory_autovacuum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/ir/osv_memory_autovacuum.py b/openerp/addons/base/ir/osv_memory_autovacuum.py index 1b3ca507eb8..b5224c0e7de 100644 --- a/openerp/addons/base/ir/osv_memory_autovacuum.py +++ b/openerp/addons/base/ir/osv_memory_autovacuum.py @@ -28,7 +28,7 @@ class osv_memory_autovacuum(openerp.osv.osv.osv_memory): def power_on(self, cr, uid, context=None): for model in self.pool.models.values(): if model.is_transient(): - model._transient_vacuum(cr, uid) + model._transient_vacuum(cr, uid, force=True) return True From f4fd5fd99ccc4c74a789d84679b581e74b8b11a6 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Tue, 22 Jan 2013 05:31:31 +0000 Subject: [PATCH 31/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130122053126-83zqktwur95krpav bzr revid: launchpad_translations_on_behalf_of_openerp-20130118071115-y2843mxyuler6hek bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052757-d35pqy1p2am5fh9m bzr revid: launchpad_translations_on_behalf_of_openerp-20130122053131-v8w8ndi4bzy750yj --- addons/account/i18n/mn.po | 12 +- addons/account_analytic_default/i18n/pt.po | 17 ++- addons/account_check_writing/i18n/ro.po | 6 +- addons/base_calendar/i18n/cs.po | 22 ++-- addons/base_import/i18n/ro.po | 141 +++++++++++++++++---- addons/delivery/i18n/pt.po | 14 +- addons/event_sale/i18n/pt.po | 8 +- addons/hr_evaluation/i18n/pt.po | 8 +- addons/hr_timesheet_invoice/i18n/sv.po | 6 +- addons/idea/i18n/pt.po | 28 ++-- addons/plugin_outlook/i18n/pt.po | 16 ++- addons/plugin_outlook/i18n/sv.po | 27 ++-- addons/portal_anonymous/i18n/pt.po | 25 ++++ addons/portal_project_issue/i18n/pt.po | 40 ++++++ addons/product_expiry/i18n/pt.po | 24 +++- addons/product_margin/i18n/pt.po | 8 +- addons/project_long_term/i18n/pt.po | 12 +- addons/project_mrp/i18n/pt.po | 25 ++-- addons/purchase_requisition/i18n/pt.po | 10 +- addons/sale/i18n/pt.po | 114 +++++++++-------- addons/sale_journal/i18n/pt.po | 9 +- addons/sale_order_dates/i18n/pt.po | 10 +- addons/stock/i18n/et.po | 8 +- addons/web/i18n/bg.po | 12 +- addons/web/i18n/es_EC.po | 26 ++-- addons/web/i18n/nl.po | 42 +++--- 26 files changed, 439 insertions(+), 231 deletions(-) create mode 100644 addons/portal_anonymous/i18n/pt.po create mode 100644 addons/portal_project_issue/i18n/pt.po diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index f0ca8fae48e..af88e1173e4 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.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:04+0000\n" -"PO-Revision-Date: 2013-01-11 09:46+0000\n" -"Last-Translator: erdenebold \n" +"PO-Revision-Date: 2013-01-21 09:38+0000\n" +"Last-Translator: gobi \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:26+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account @@ -405,7 +405,7 @@ msgstr "Худалдан авалтын буцаалт" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "Нээх / Хаах Нөхцөл" +msgstr "Нээх/Хаах нөхцөл байдал" #. module: account #: help:account.journal,currency:0 @@ -8652,7 +8652,7 @@ msgstr "Төгсгөлийн баланс" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Төвлөрсөн эсрэг тал" #. module: account #: help:account.move.line,blocked:0 @@ -10049,7 +10049,7 @@ msgstr "Энэ бол тухайн харилцагчийн өглөгийн б #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "Мөчлөг нээж хаах" +msgstr "Нээлт/Хаалтын мөчлөг" #. module: account #: field:account.account,currency_id:0 diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 9701ac18e5b..c1123da89a0 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:11+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_analytic_default @@ -41,6 +41,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Selecione um produto que vá utilizar a conta analítica indicada como padrão. " +"(por exemplo, se criar uma fatura ou uma ordem de venda com este produto, a " +"conta analítica indicada será automaticamente selecionada)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -65,6 +68,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Selecione um cliente que vá utilizar a conta analítica indicada como padrão. " +"(por exemplo, se criar uma fatura ou uma ordem de venda com este cliente, a " +"conta analítica indicada será automaticamente selecionada)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -105,6 +111,8 @@ msgstr "Sequência" msgid "" "Select a user which will use analytic account specified in analytic default." msgstr "" +"Selecione um utilizador que vá utilizar a conta analítica indicada como " +"padrão." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line @@ -118,6 +126,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Selecione uma empresa que vá utilizar a conta analítica indicada como " +"padrão. (por exemplo, se criar uma nova fatura ou ordem de venda nesta " +"empresa, a conta analítica padrão será automaticamente selecionada)" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index 41695c70b70..69d1076d87f 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.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: 2013-01-07 18:21+0000\n" +"PO-Revision-Date: 2013-01-21 06:53+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: account_check_writing @@ -151,7 +151,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"\n" " Faceti click pentru a crea un cec nou. \n" "

\n" " Forma de plata cu cecuri va permite sa urmariti platile pe " diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index 5656d927819..9d7d4f7a4b8 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 22:19+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_calendar @@ -232,7 +232,7 @@ msgstr "Minulý" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Zprávy a historie komunikace" #. module: base_calendar #: field:crm.meeting,message_ids:0 @@ -248,7 +248,7 @@ msgstr "Dnů" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Adresát" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1255 @@ -264,7 +264,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Moje schůzky" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -533,7 +533,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Datum vytvoření" #. module: base_calendar #: view:crm.meeting:0 @@ -829,7 +829,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Od" #. module: base_calendar #: view:calendar.event:0 @@ -866,7 +866,7 @@ msgstr "Události" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -937,7 +937,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Datum zápisu" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -1147,7 +1147,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Den v měsíci" #. module: base_calendar #: selection:calendar.alarm,state:0 diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 711c4adf048..d0368eb901d 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.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: 2013-01-20 19:05+0000\n" +"PO-Revision-Date: 2013-01-21 18:49+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: base_import @@ -952,7 +952,7 @@ msgstr "Fisier pentru niste Cotatii" #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "Codare:" #. module: base_import #. openerp-web @@ -972,6 +972,19 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"Pentru a gestiona relatiile dintre tabele, \n" +" puteti folosi facilitatile \"Id-ului Extern\" din " +"OpenERP. \n" +" \"ID-ul Extern\" al unei inregistrari este " +"identificatorul unic \n" +" al acestei inregistrari intr-o alta aplicatie. Acest " +"\"ID Extern\" \n" +" trebuie sa fie unic peste toate inregistrarile " +"tuturor \n" +" obiectelor, astfel ca este bine sa prefixati acest \n" +" \"ID Extern\" cu numele aplicatiei sau \n" +" al tabelului. (cum ar fi 'compania_1', 'persoana_1' " +"in loc de '1')" #. module: base_import #. openerp-web @@ -982,6 +995,9 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Mai intai exportam toate companiile si \n" +" \"ID-ul lor Extern\". In PSQL, scrieti urmatoarea " +"comanda:" #. module: base_import #. openerp-web @@ -991,13 +1007,15 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"Cum pot sa import o relatie one2many (de exemplu mai multe \n" +" Linii de comanda ale Comenzii de Vanzari?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Totul pare valabil." #. module: base_import #. openerp-web @@ -1010,13 +1028,18 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"Totusi, daca nu doriti sa schimbati \n" +" configuratia categoriilor produselor, va recomandam " +"sa \n" +" folositi ID-ul extern pentru acest camp \n" +" 'Categorie'." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:390 #, python-format msgid "at row %d" -msgstr "" +msgstr "la randul %d" #. module: base_import #. openerp-web @@ -1026,13 +1049,15 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"Cum pot importa un camp relatie many2many \n" +" (de exemplu un client care are etichete multiple)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" -msgstr "" +msgstr "XXX/ID" #. module: base_import #. openerp-web @@ -1048,6 +1073,15 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"Daca trebuie sa importati date din diferite tabele, \n" +" va trebui sa recreati legaturile dintre " +"inregistrarile \n" +" care apartin de tabele diferite. (de exemplu, daca " +"importati \n" +" companii sau persoane, va trebui sa recreati \n" +" legatura dintre fiecare persoana si compania pentru " +"care \n" +" lucreaza)." #. module: base_import #. openerp-web @@ -1060,13 +1094,18 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"In functie de nevoile dumneavoastra, ar trebui sa folositi \n" +" una din aceste 3 modalitati de referinta a " +"inregistrarilor in relatie. \n" +" Iata cand ar trebui sa folositi una sau alta, \n" +" in functie de nevoile dumneavoastra:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:319 #, python-format msgid "person_4,Ramsy,False,company_3" -msgstr "" +msgstr "persoana_4,Ramsy,Fals,compania_3" #. module: base_import #. openerp-web @@ -1082,13 +1121,21 @@ msgid "" " will set the EMPTY value in the field, instead of \n" " assigning the default value." msgstr "" +"Daca nu configurati toate campurile in fisierul dumneavoastra CSV, \n" +" OpenERP va atribui valoarea implicita pentru fiecare " +"dintre \n" +" campurile nedefinite. Dar daca\n" +" setati campurile sa ramana necompletate in fisierul " +"dumneavoastra CSV, OpenERP \n" +" nu va seta nicio valoare in camp, in loc sa \n" +" atribuie valoarea implicita." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "Anuleaza" #. module: base_import #. openerp-web @@ -1098,20 +1145,22 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"Ce se intampla daca nu furnizez o valoare pentru un \n" +" anumit camp?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "Intrebari Frecvente" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "compania_3,Boum,Adevarat" #. module: base_import #. openerp-web @@ -1125,6 +1174,12 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"Aceasta caracteristica \n" +" va permite sa folositi unealta Import/Export din " +"OpenERP pentru a \n" +" modifica un set de inregistrari in aplicatia " +"dumneavoastra preferata \n" +" cu tabele." #. module: base_import #. openerp-web @@ -1135,6 +1190,9 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" +"coloana in OpenERP. Atunci cand\n" +" importati o alta inregistrare care are legatura cu\n" +" prima, folositi" #. module: base_import #. openerp-web @@ -1155,20 +1213,31 @@ msgid "" " take care of creating or modifying each record \n" " depending if it's new or not." msgstr "" +"Daca importati un fisier care contine una dintre \n" +" coloanele \"ID Extern\" sau \"ID Baza de date\", " +"inregistrarile care \n" +" au fost deja importate vor fi modificate in loc sa \n" +" fie create. Acest lucru este foarte util deoarece va " +"permite \n" +" sa importati acelasi fisier CSV de mai multe ori, in " +"timp ce faceti \n" +" unele modificari intre doua importuri. OpenERP va \n" +" crea sau va modifica fiecare inregistrare \n" +" in functie daca este noua sau nu." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "Fisier CSV pentru categorii" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:309 #, python-format msgid "Normal Fields" -msgstr "" +msgstr "Campuri Obisnuite" #. module: base_import #. openerp-web @@ -1180,13 +1249,18 @@ msgid "" " identifier from the original application and\n" " map it to the" msgstr "" +"Pentru a recrea relatia dintre\n" +" diferite inregistrari, ar trebui sa folositi " +"identificatorul\n" +" unic din aplicatia originala si\n" +" sa il trasati in" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "Fisier CSV pentru Produse" #. module: base_import #. openerp-web @@ -1206,35 +1280,45 @@ msgid "" "\n" " the fields relative to the order." msgstr "" +"Daca doriti sa importati comenzi de vanzare care au mai multe \n" +" linii de comanda; pentru fiecare linie a comenzii, " +"trebuie sa rezervati \n" +" un anumit rand in fisierul CSV. Prima linie a " +"comenzii \n" +" va fi importata in acelasi rand ca si informatiile \n" +" asociate comenzii. Orice linii suplimentare vor avea " +"nevoie de un \n" +" rand suplimentar care nu are alte informatii in \n" +" campurile asociate comenzii." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "baza_impot.teste.modele.m2o.asociate" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "Nume" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "to the original unique identifier." -msgstr "" +msgstr "identificatorul original unic." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "persoana_3,Eric,Fals,compania_2" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base_import #. openerp-web @@ -1242,7 +1326,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "ID" #. module: base_import #. openerp-web @@ -1258,6 +1342,13 @@ msgid "" " to the first company). You must first import the \n" " companies and then the persons." msgstr "" +"Cele doua fisiere produse sunt gata pentru a fi importate in \n" +" OpenERP fara alte modificari. Dupa ce ati \n" +" importat aceste doua fisiere CSV, veti avea 4 " +"contacte \n" +" si 3 companii. (primele doua contacte sunt legate \n" +" de prima companie). Mai intai trebuie sa importati \n" +" companiile si apoi persoanele." #. module: base_import #. openerp-web @@ -1277,12 +1368,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Separator:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Numele Fisierului" #. module: base_import #. openerp-web @@ -1292,28 +1383,28 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "ID Extern" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "Optiuni de Format Fisier..." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:392 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "intre randurile %d si %d" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "sau" #. module: base_import #. openerp-web diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 39b9205f997..675c866bb46 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:13+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: delivery @@ -52,7 +52,7 @@ msgstr "Linha da grelha de entrega" #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de medida" #. module: delivery #: view:delivery.carrier:0 @@ -151,7 +151,7 @@ msgstr "Montante" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Adicionar ao orçamento" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -476,7 +476,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Unidade de peso" #. module: delivery #: report:sale.shipping:0 @@ -591,7 +591,7 @@ msgstr "Estados" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "\"Unidade de Medida\" é a unidade de peso" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index 2b4a41624ab..582084ce4a6 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/i18n/pt.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: 2013-01-18 11:18+0000\n" +"PO-Revision-Date: 2013-01-21 15:16+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: event_sale @@ -50,6 +50,8 @@ msgid "" "Select event types so when we use this product in sales order lines, it will " "filter events of this type only." msgstr "" +"Selecione os tipos de eventos para que, quando indicar este produto numa " +"linha de uma ordem de venda, seja aplicado um filtro àqueles." #. module: event_sale #: field:product.product,event_type_id:0 @@ -80,7 +82,7 @@ msgstr "Formação técnica" #: code:addons/event_sale/event_sale.py:88 #, python-format msgid "The registration %s has been created from the Sales Order %s." -msgstr "" +msgstr "A inscrição %s foi criada a partir da ordem de venda %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index 59cf6cc227b..de114a24395 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/i18n/pt.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:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:17+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr_evaluation @@ -149,7 +149,7 @@ msgstr "Avaliação" #: help:hr.evaluation.interview,message_unread:0 #: help:hr_evaluation.evaluation,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index 564015fdc92..12b5906ca7c 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/i18n/sv.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-21 23:00+0000\n" +"PO-Revision-Date: 2013-01-21 07:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: hr_timesheet_invoice @@ -60,7 +60,7 @@ msgstr "Gruppera på..." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Force to use a specific product" -msgstr "Force to use a specific product" +msgstr "" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 diff --git a/addons/idea/i18n/pt.po b/addons/idea/i18n/pt.po index 4bc4e65c647..c7666523feb 100644 --- a/addons/idea/i18n/pt.po +++ b/addons/idea/i18n/pt.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: 2013-01-16 11:09+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-21 15:42+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: idea @@ -31,7 +31,7 @@ msgstr "Em Progresso" #. module: idea #: view:idea.idea:0 msgid "By States" -msgstr "" +msgstr "Por estados" #. module: idea #: sql_constraint:idea.category:0 @@ -41,7 +41,7 @@ msgstr "O nome da categoria deve ser único" #. module: idea #: view:idea.idea:0 msgid "By Idea Category" -msgstr "" +msgstr "Por categoria de ideias" #. module: idea #: model:ir.model,name:idea.model_idea_category @@ -61,7 +61,7 @@ msgstr "Agrupar por..." #. module: idea #: field:idea.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Nome da categoria" #. module: idea #: view:idea.idea:0 @@ -83,7 +83,7 @@ msgstr "Estados" #. module: idea #: sql_constraint:idea.idea:0 msgid "The name of the idea must be unique" -msgstr "" +msgstr "O nome da ideia deve ser único" #. module: idea #: view:idea.idea:0 @@ -98,17 +98,17 @@ msgstr "" #. module: idea #: field:idea.idea,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens por ler" #. module: idea #: help:idea.idea,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: idea #: field:idea.idea,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um seguidor" #. module: idea #: model:ir.model,name:idea.model_idea_idea @@ -163,7 +163,7 @@ msgstr "Resumo" #. module: idea #: help:idea.idea,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: idea #: field:idea.idea,description:0 @@ -206,7 +206,7 @@ msgstr "" #. module: idea #: selection:idea.idea,state:0 msgid "Done" -msgstr "" +msgstr "Concluído" #. module: idea #: view:idea.idea:0 @@ -216,12 +216,12 @@ msgstr "Por criadores" #. module: idea #: field:idea.idea,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: idea #: view:idea.category:0 msgid "Category of Ideas" -msgstr "" +msgstr "Categoria de ideias" #. module: idea #: view:idea.category:0 diff --git a/addons/plugin_outlook/i18n/pt.po b/addons/plugin_outlook/i18n/pt.po index 03ccb675447..288f5903423 100644 --- a/addons/plugin_outlook/i18n/pt.po +++ b/addons/plugin_outlook/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:20+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook @@ -35,7 +35,7 @@ msgstr "outlook.installer" #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS .Net Framework 3.5 or above." -msgstr "" +msgstr "MS .Net Framework 3.5 ou superior." #. module: plugin_outlook #: model:ir.actions.act_window,name:plugin_outlook.action_outlook_installer @@ -48,7 +48,7 @@ msgstr "Instale o Plug-In do Outlook" #. module: plugin_outlook #: view:outlook.installer:0 msgid "System requirements:" -msgstr "" +msgstr "Exigências de sistema" #. module: plugin_outlook #: view:outlook.installer:0 @@ -61,16 +61,18 @@ msgid "" "Click on the link above to download the installer for either 32 or 64 bits, " "and execute it." msgstr "" +"Carregue na ligação acima para descarregar o instalador para 23 ou 64 bits, " +"e corra-o." #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS Outlook 2005 or above." -msgstr "" +msgstr "MS Outlook 2005 ou superior." #. module: plugin_outlook #: view:outlook.installer:0 msgid "Close" -msgstr "" +msgstr "Fechar" #. module: plugin_outlook #: field:outlook.installer,plugin64:0 diff --git a/addons/plugin_outlook/i18n/sv.po b/addons/plugin_outlook/i18n/sv.po index 94f141eb001..77577063498 100644 --- a/addons/plugin_outlook/i18n/sv.po +++ b/addons/plugin_outlook/i18n/sv.po @@ -8,24 +8,24 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 07:35+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 msgid "Outlook Plug-in 32bits" -msgstr "" +msgstr "Outlook-tillägg 32-bit" #. module: plugin_outlook #: view:sale.config.settings:0 msgid "Download and install the plug-in" -msgstr "" +msgstr "Ladda ner och installera tillägget" #. module: plugin_outlook #: model:ir.model,name:plugin_outlook.model_outlook_installer @@ -35,7 +35,7 @@ msgstr "outlook.installer" #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS .Net Framework 3.5 or above." -msgstr "" +msgstr "MS .NET Framework 3.5 eller högre." #. module: plugin_outlook #: model:ir.actions.act_window,name:plugin_outlook.action_outlook_installer @@ -43,12 +43,12 @@ msgstr "" #: model:ir.ui.menu,name:plugin_outlook.menu_base_config_plugins_outlook #: view:outlook.installer:0 msgid "Install Outlook Plug-In" -msgstr "Installera Outlook-programtillägg" +msgstr "Installera Outlook-tillägg" #. module: plugin_outlook #: view:outlook.installer:0 msgid "System requirements:" -msgstr "" +msgstr "Systemkrav:" #. module: plugin_outlook #: view:outlook.installer:0 @@ -61,29 +61,32 @@ msgid "" "Click on the link above to download the installer for either 32 or 64 bits, " "and execute it." msgstr "" +"Klicka på länken ovan för att ladda ner antingen 32-bits- eller 64-bits-" +"installationen och kör den." #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS Outlook 2005 or above." -msgstr "" +msgstr "MS Outlook 2005 eller högre." #. module: plugin_outlook #: view:outlook.installer:0 msgid "Close" -msgstr "" +msgstr "Stäng" #. module: plugin_outlook #: field:outlook.installer,plugin64:0 msgid "Outlook Plug-in 64bits" -msgstr "" +msgstr "Outlook-tillägg 64-bitars" #. module: plugin_outlook #: view:outlook.installer:0 msgid "Installation and Configuration Steps" -msgstr "Installation och konfigureringssteg" +msgstr "Installations- och konfigureringssteg" #. module: plugin_outlook #: help:outlook.installer,plugin32:0 #: help:outlook.installer,plugin64:0 msgid "Outlook plug-in file. Save this file and install it in Outlook." msgstr "" +"Filen för Outlook-tillägget. Spara filen och installera den i Outlook." diff --git a/addons/portal_anonymous/i18n/pt.po b/addons/portal_anonymous/i18n/pt.po new file mode 100644 index 00000000000..a19da1f7aee --- /dev/null +++ b/addons/portal_anonymous/i18n/pt.po @@ -0,0 +1,25 @@ +# Portuguese 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-01-21 15:25+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: portal_anonymous +#. openerp-web +#: code:addons/portal_anonymous/static/src/xml/portal_anonymous.xml:8 +#, python-format +msgid "Login" +msgstr "Nome de utilizador" diff --git a/addons/portal_project_issue/i18n/pt.po b/addons/portal_project_issue/i18n/pt.po new file mode 100644 index 00000000000..3fcb4a66839 --- /dev/null +++ b/addons/portal_project_issue/i18n/pt.po @@ -0,0 +1,40 @@ +# Portuguese 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:06+0000\n" +"PO-Revision-Date: 2013-01-21 15:22+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: portal_project_issue +#: view:project.issue:0 +msgid "Creation:" +msgstr "Criação:" + +#. module: portal_project_issue +#: model:ir.actions.act_window,help:portal_project_issue.project_issue_categ_act0 +msgid "" +"

\n" +" Click to create an issue.\n" +"

\n" +" You can track your issues from this menu and the action we\n" +" will take.\n" +"

\n" +" " +msgstr "" + +#. module: portal_project_issue +#: model:ir.actions.act_window,name:portal_project_issue.project_issue_categ_act0 +msgid "Issues" +msgstr "" diff --git a/addons/product_expiry/i18n/pt.po b/addons/product_expiry/i18n/pt.po index cc5091c5a4c..9b78e5f26d1 100644 --- a/addons/product_expiry/i18n/pt.po +++ b/addons/product_expiry/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:33+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: product_expiry @@ -38,6 +38,8 @@ msgid "" "This is the date on which the goods with this Serial Number should be " "removed from the stock." msgstr "" +"Esta é a data em que os bens com este número de série devem ser removidos " +"das existências." #. module: product_expiry #: help:product.product,removal_time:0 @@ -45,6 +47,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods should be removed from the stock." msgstr "" +"Quando um novo número de série é emitido, este valor indica o número de dias " +"até o produto ser removido das existências." #. module: product_expiry #: field:product.product,use_time:0 @@ -62,6 +66,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods starts deteriorating, without being dangerous yet." msgstr "" +"Quando um novo número de série é emitido, este valor indica o número de dias " +"até que os bens comecem a deteriorar-se (sem serem, ainda, perigosos)." #. module: product_expiry #: field:product.product,removal_time:0 @@ -74,11 +80,13 @@ msgid "" "This is the date on which an alert should be notified about the goods with " "this Serial Number." msgstr "" +"Esta é a data em que um alerta relativo aos bens com este número de série " +"deve ser ativado." #. module: product_expiry #: model:ir.model,name:product_expiry.model_stock_production_lot msgid "Serial Number" -msgstr "" +msgstr "Número de série" #. module: product_expiry #: help:product.product,alert_time:0 @@ -86,6 +94,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before an " "alert should be notified." msgstr "" +"Quando um novo número de série é emitido, este valor indica o número de dias " +"até um alerta ser ativado." #. module: product_expiry #: field:stock.production.lot,removal_date:0 @@ -123,6 +133,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods may become dangerous and must not be consumed." msgstr "" +"Quando um novo número de série é emitido, este valor indica o número de dias " +"até os bens se tornarem perigosos e não deverem ser consumidos." #. module: product_expiry #: field:stock.production.lot,alert_date:0 @@ -135,6 +147,8 @@ msgid "" "This is the date on which the goods with this Serial Number start " "deteriorating, without being dangerous yet." msgstr "" +"Esta é a data em que os bens com este número de série começam a deteriorar-" +"se (sem serem, ainda, perigosos)." #. module: product_expiry #: help:stock.production.lot,life_date:0 @@ -142,6 +156,8 @@ msgid "" "This is the date on which the goods with this Serial Number may become " "dangerous and must not be consumed." msgstr "" +"Esta é a data em que os bens com este número de série se podem tornar " +"perigosos e impróprios para consumo." #. module: product_expiry #: field:product.product,alert_time:0 diff --git a/addons/product_margin/i18n/pt.po b/addons/product_margin/i18n/pt.po index 588e57c3591..c9849b2ce29 100644 --- a/addons/product_margin/i18n/pt.po +++ b/addons/product_margin/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:21+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:00+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: product_margin @@ -156,7 +156,7 @@ msgstr "Margem Esperada * 100 / Venda Esperada" #. module: product_margin #: help:product.product,sale_avg_price:0 msgid "Avg. Price in Customer Invoices." -msgstr "" +msgstr "Preço média nas faturas." #. module: product_margin #: help:product.product,purchase_avg_price:0 diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index e86609f5471..eefe74ab449 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/i18n/pt.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-21 23:00+0000\n" +"PO-Revision-Date: 2013-01-21 15:35+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_long_term @@ -41,7 +41,7 @@ msgstr "Fases" #: view:project.phase:0 #: view:project.user.allocation:0 msgid "Team Planning" -msgstr "" +msgstr "Planeamento de equipa" #. module: project_long_term #: field:project.phase,user_ids:0 @@ -128,7 +128,7 @@ msgstr "Novo" #. module: project_long_term #: field:project.phase,product_uom:0 msgid "Duration Unit of Measure" -msgstr "" +msgstr "Unidade de tempo" #. module: project_long_term #: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar_leaves @@ -183,7 +183,7 @@ msgstr "Data mínima de Início" #: help:project.phase,product_uom:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Duration" -msgstr "" +msgstr "\"Unidade de medida\" é a unidade para medição de tempo." #. module: project_long_term #: help:project.phase,user_ids:0 @@ -315,7 +315,7 @@ msgstr "Detalhes das Tarefas" #. module: project_long_term #: field:project.project,phase_count:0 msgid "Open Phases" -msgstr "" +msgstr "Fases em aberto" #. module: project_long_term #: help:project.phase,date_end:0 diff --git a/addons/project_mrp/i18n/pt.po b/addons/project_mrp/i18n/pt.po index 4c95557efc0..a5846b5950f 100644 --- a/addons/project_mrp/i18n/pt.po +++ b/addons/project_mrp/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:27+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: project_mrp @@ -36,7 +36,7 @@ msgstr "Tarefa criada" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 msgid "In case you sell services on sales order" -msgstr "" +msgstr "No caso de se vender serviços numa ordem de venda" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_mrptask0 @@ -51,7 +51,7 @@ msgstr "Artigo" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_saleordertask0 msgid "Sales Order Task" -msgstr "" +msgstr "Tarefa de ordem de venda" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 @@ -71,7 +71,7 @@ msgstr "Tarefa de Aquisições" #. module: project_mrp #: field:procurement.order,sale_line_id:0 msgid "Sales order line" -msgstr "" +msgstr "Linha de ordem de venda" #. module: project_mrp #: model:ir.model,name:project_mrp.model_project_task @@ -90,11 +90,16 @@ msgid "" " in the project related to the contract of the sales " "order." msgstr "" +"será \n" +" criada para seguir a operação a executar. Esta " +"tarefa aparecerá\n" +" no projeto relacionado com o contrato da ordem de " +"venda." #. module: project_mrp #: view:product.product:0 msgid "When you sell this service to a customer," -msgstr "" +msgstr "Quando se vende este serviço a um cliente," #. module: project_mrp #: field:product.product,project_id:0 @@ -128,7 +133,7 @@ msgstr "" #. module: project_mrp #: field:project.task,sale_line_id:0 msgid "Sales Order Line" -msgstr "" +msgstr "Linha da ordem de venda" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 @@ -143,9 +148,9 @@ msgstr "Ordem de Vendas" #. module: project_mrp #: view:project.task:0 msgid "Order Line" -msgstr "" +msgstr "Linha da ordem" #. module: project_mrp #: view:product.product:0 msgid "a task" -msgstr "" +msgstr "uma tarefa" diff --git a/addons/purchase_requisition/i18n/pt.po b/addons/purchase_requisition/i18n/pt.po index 1c7e61059e2..006d5e1c01d 100644 --- a/addons/purchase_requisition/i18n/pt.po +++ b/addons/purchase_requisition/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:38+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:04+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: purchase_requisition @@ -30,7 +30,7 @@ msgstr "Múltiplas Requisições" #. module: purchase_requisition #: field:purchase.requisition.line,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de medida do produto" #. module: purchase_requisition #: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition @@ -359,7 +359,7 @@ msgstr "Parceiro da requisição de compra" #. module: purchase_requisition #: help:purchase.requisition,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: purchase_requisition #: report:purchase.requisition:0 diff --git a/addons/sale/i18n/pt.po b/addons/sale/i18n/pt.po index 970d07e5254..87cca5de7b9 100644 --- a/addons/sale/i18n/pt.po +++ b/addons/sale/i18n/pt.po @@ -8,19 +8,19 @@ 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-01-09 16:11+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"PO-Revision-Date: 2013-01-21 16:28+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting msgid "Analytic Accounting for Sales" -msgstr "" +msgstr "Conta analítica para vendas" #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 @@ -42,7 +42,7 @@ msgstr "" #: model:ir.actions.act_window,name:sale.action_order_line_tree2 #: model:ir.ui.menu,name:sale.menu_invoicing_sales_order_lines msgid "Order Lines to Invoice" -msgstr "" +msgstr "Linhas da ordem, para faturar" #. module: sale #: field:sale.order,date_confirm:0 @@ -64,12 +64,12 @@ msgstr "Parceiro do lote" #. module: sale #: model:ir.actions.act_window,name:sale.action_view_sale_advance_payment_inv msgid "Invoice Order" -msgstr "" +msgstr "Faturar a ordem" #. module: sale #: view:sale.config.settings:0 msgid "Product Features" -msgstr "" +msgstr "Características do produto" #. module: sale #: help:sale.config.settings,module_account_analytic_analysis:0 @@ -123,12 +123,12 @@ msgstr "Março" #: code:addons/sale/sale.py:559 #, python-format msgid "First cancel all invoices attached to this sales order." -msgstr "" +msgstr "Primeiro, cancele todas as faturas relacionadas com esta ordem." #. module: sale #: view:sale.order:0 msgid "Quotation Number" -msgstr "" +msgstr "Número do orçamento" #. module: sale #: view:sale.order:0 @@ -158,7 +158,7 @@ msgstr "Linhas não Faturadas e Entregues" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Orçamento confirmado" #. module: sale #: selection:sale.order,state:0 @@ -217,7 +217,7 @@ msgstr "Peso" #. module: sale #: view:sale.config.settings:0 msgid "Warehouse Features" -msgstr "" +msgstr "Características do armazém" #. module: sale #: field:sale.config.settings,time_unit:0 @@ -249,7 +249,7 @@ msgstr "" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Linhas da ordem de venda que estão com o estado 'concluído/fechado'." #. module: sale #: selection:sale.order.line,type:0 @@ -264,7 +264,7 @@ msgstr "Mensagens" #. module: sale #: field:sale.report,state:0 msgid "Order Status" -msgstr "" +msgstr "Estado da ordem" #. module: sale #: field:sale.order,amount_tax:0 @@ -337,12 +337,12 @@ msgstr "Orçamento enviado" #. module: sale #: model:ir.model,name:sale.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Assistente de criação de mensagem eletrónica" #. module: sale #: help:sale.order,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: sale #: selection:sale.order,state:0 @@ -402,7 +402,7 @@ msgstr "Criar Faturas" #. module: sale #: report:sale.order:0 msgid "Tax" -msgstr "" +msgstr "Imposto" #. module: sale #: code:addons/sale/sale.py:270 @@ -463,6 +463,8 @@ msgstr "Fax:" msgid "" "In order to delete a confirmed sales order, you must cancel it before !" msgstr "" +"Para poder apagar uma ordem de venda já confirmada, é preciso, primeiro, " +"cancelá-la" #. module: sale #: view:sale.order:0 @@ -479,7 +481,7 @@ msgstr "Parceiro" #. module: sale #: view:sale.config.settings:0 msgid "Contract Features" -msgstr "" +msgstr "Características do contrato" #. module: sale #: code:addons/sale/sale.py:280 @@ -498,7 +500,7 @@ msgstr "Ordem de venda" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Permitir faturação das linhas da ordem de venda" #. module: sale #: model:ir.model,name:sale.model_sale_order_line @@ -513,7 +515,7 @@ msgstr "Adiantamento do Valor" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "Indica que a ordem de venda tem, pelo menos, uma fatura." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -530,7 +532,7 @@ msgstr "" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Faturar a ordem de venda inteira" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -552,6 +554,8 @@ msgstr "" #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." msgstr "" +"Não se pode cancelar uma ordem de venda cujas linhas já tenham sido " +"faturadas." #. module: sale #: view:account.invoice.report:0 @@ -574,12 +578,12 @@ msgstr "Ano" #. module: sale #: field:sale.config.settings,group_uom:0 msgid "Allow using different units of measures" -msgstr "" +msgstr "Permitir usar diferentes unidades de medida." #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Ordem de venda confirmada" #. module: sale #: view:sale.order:0 @@ -611,7 +615,7 @@ msgstr "Desc.(%)" #: code:addons/sale/sale.py:756 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Por favor defina conta de receita para este produto: \"%s\" (id:%d)." #. module: sale #: field:sale.order.line,invoice_lines:0 @@ -627,7 +631,7 @@ msgstr "Preço Total" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Permite indicar uma conta analítica nas ordens de venda." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -658,7 +662,7 @@ msgstr "Hora" #. module: sale #: field:res.partner,sale_order_count:0 msgid "# of Sales Order" -msgstr "" +msgstr "Número da ordem de venda" #. module: sale #: help:sale.config.settings,timesheet:0 @@ -699,7 +703,7 @@ msgstr "Ordenar por ano a ordem de venda" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Endereços nas ordes de venda" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -716,7 +720,7 @@ msgstr "Total :" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Linhas de ordem de venda prontas para serem faturadas" #. module: sale #: view:sale.report:0 @@ -769,7 +773,7 @@ msgstr "Erro de Configuração!" #. module: sale #: field:account.config.settings,group_analytic_account_for_sales:0 msgid "Analytic accounting for sales" -msgstr "" +msgstr "Contabilidade analítica para vendas" #. module: sale #: view:sale.order:0 @@ -823,6 +827,7 @@ msgstr "" #, python-format msgid "Please define sales journal for this company: \"%s\" (id:%d)." msgstr "" +"Por favor, defina um diário de vendas para esta empresa: \"%s\" (id:%d)." #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order @@ -840,6 +845,7 @@ msgstr "Pago" msgid "" "Allows you to select and maintain different units of measure for products." msgstr "" +"Permite-lhe seleccionar e gerir diferentes unidades de medida para produtos." #. module: sale #: view:sale.report:0 @@ -974,7 +980,7 @@ msgstr "Nome da Loja" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "As minhas ordens de venda" #. module: sale #: report:sale.order:0 @@ -1009,7 +1015,7 @@ msgstr "Abrir menu de vendas" #: code:addons/sale/sale.py:592 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "" +msgstr "Não se pode confirmar uma ordem de venda que não tenha linhas." #. module: sale #: selection:sale.report,state:0 @@ -1159,6 +1165,8 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Ordens de venda que estejam confirmadas, fechadas ou num estado de exceção e " +"que ainda não tenham sido faturadas." #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1254,7 +1262,7 @@ msgstr "Janeiro" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Permitir definir um desconto nas linhas das ordens de venda" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1282,7 +1290,7 @@ msgstr "" #. module: sale #: field:sale.order,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Endereço Paypal" #. module: sale #: help:sale.order,project_id:0 @@ -1292,7 +1300,7 @@ msgstr "A conta analítica relacionada com uma ordem de venda." #. module: sale #: view:sale.order:0 msgid "View Invoice" -msgstr "" +msgstr "Ver fatura" #. module: sale #: field:sale.advance.payment.inv,advance_payment_method:0 @@ -1359,7 +1367,7 @@ msgstr "Cotações" #. module: sale #: help:account.config.settings,module_sale_analytic_plans:0 msgid "This allows install module sale_analytic_plans." -msgstr "" +msgstr "Isto permite instalar o módulo sale_analytic_plans." #. module: sale #: view:sale.order:0 @@ -1369,7 +1377,7 @@ msgstr "Ignorar Excepção" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Delivery address for current sales order." -msgstr "" +msgstr "Endereço de entrega para a ordem de venda corrente." #. module: sale #: field:sale.config.settings,module_sale_margin:0 @@ -1394,7 +1402,7 @@ msgstr "Sua Referência" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Show Lines to Invoice" -msgstr "" +msgstr "Mostrar linhas a serem faturadas" #. module: sale #: field:sale.report,date:0 @@ -1521,13 +1529,13 @@ msgstr "Sem Lista de Preços ! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Ordem de venda " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Envio de orçamento" #. module: sale #: view:sale.order.line:0 @@ -1575,7 +1583,7 @@ msgstr "" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Faturar ordem de venda" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1749,13 +1757,13 @@ msgstr "Montante total." #. module: sale #: view:sale.order:0 msgid "Confirm Sale" -msgstr "" +msgstr "Confirmar venda" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:96 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Não há conta de receita definida para este produto: \"%s\" (id:%d)." #. module: sale #: selection:sale.report,month:0 @@ -1768,6 +1776,8 @@ msgid "" "${object.company_id.name} ${object.state in ('draft', 'sent') and " "'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" msgstr "" +"${object.company_id.name} ${object.state in ('draft', 'sent') and " +"'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" #. module: sale #: report:sale.order:0 @@ -1862,12 +1872,12 @@ msgstr "" #. module: sale #: selection:sale.order,state:0 msgid "Sale to Invoice" -msgstr "" +msgstr "Venda a ser faturada" #. module: sale #: view:sale.order:0 msgid "Order Number" -msgstr "" +msgstr "Número de ordem" #. module: sale #: view:sale.order:0 @@ -1909,7 +1919,7 @@ msgstr "Fatura sobre" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Fixed price (deposit)" -msgstr "" +msgstr "Preço fixo (depósito)" #. module: sale #: model:ir.model,name:sale.model_sale_config_settings @@ -1929,7 +1939,7 @@ msgstr "Data Pedida" #. module: sale #: selection:sale.order,order_policy:0 msgid "Before Delivery" -msgstr "" +msgstr "Antes da entrega" #. module: sale #: field:sale.order.line,product_uos:0 @@ -1997,7 +2007,7 @@ msgstr "Resumo" #. module: sale #: help:sale.order,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: sale #: view:sale.order:0 @@ -2033,7 +2043,7 @@ msgstr "A partir de ordem de venda" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Linhas de ordens de venda confirmadas mas ainda por entregar" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2056,13 +2066,13 @@ msgstr "UoS" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Some order lines" -msgstr "" +msgstr "Algumas linhas" #. module: sale #: code:addons/sale/sale.py:976 #, python-format msgid "Cannot delete a sales order line which is in state '%s'." -msgstr "" +msgstr "Não se pode apagar uma linha que esteja com o estado '%s'." #. module: sale #: report:sale.order:0 @@ -2078,7 +2088,7 @@ msgstr "Ordem de vendas pronta a ser faturada" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Gerar faturas a partir das linhas das ordens de venda." #. module: sale #: view:sale.advance.payment.inv:0 @@ -2135,6 +2145,8 @@ msgid "" "Before choosing a product,\n" " select a customer in the sales form." msgstr "" +"Antes de escolher um produto,\n" +" selecione um cliente no formulário de venda." #. module: sale #: view:sale.order:0 @@ -2144,7 +2156,7 @@ msgstr "Total com impostos" #. module: sale #: view:sale.order:0 msgid "New Copy of Quotation" -msgstr "" +msgstr "Cópia do orçamento" #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index 71c02a38b09..68b7fdf2016 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:23+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: sale_journal @@ -32,6 +32,7 @@ msgstr "Tipo faturação" msgid "" "This invoicing type will be used, by default, to invoice the current partner." msgstr "" +"Este tipo de fatura será o padrão a aplicar às faturas para este cliente." #. module: sale_journal #: view:res.partner:0 @@ -46,7 +47,7 @@ msgstr "Faturação" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Receções Agendadas" #. module: sale_journal #: help:sale_journal.invoice.type,active:0 diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index df8e4fbfa33..8c6bb0fae72 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/i18n/pt.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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-21 15:43+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: sale_order_dates @@ -40,7 +40,7 @@ msgstr "Data em que a recolha é criada." #. module: sale_order_dates #: help:sale.order,requested_date:0 msgid "Date requested by the customer for the sale." -msgstr "" +msgstr "Data de venda pedida pelo cliente" #. module: sale_order_dates #: field:sale.order,requested_date:0 @@ -55,4 +55,4 @@ msgstr "Ordem de Vendas" #. module: sale_order_dates #: help:sale.order,commitment_date:0 msgid "Committed date for delivery." -msgstr "" +msgstr "Data marcada para a entrega" diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index bda87875561..e3a57ed37d2 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.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:04+0000\n" -"PO-Revision-Date: 2013-01-06 18:00+0000\n" +"PO-Revision-Date: 2013-01-21 17:07+0000\n" "Last-Translator: Ahti Hinnov \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:07+0000\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" "X-Generator: Launchpad (build 16430)\n" #. module: stock @@ -1655,7 +1655,7 @@ msgstr "Allavoolu jälgitavus" #. module: stock #: view:stock.picking.in:0 msgid "Receive" -msgstr "" +msgstr "Võta vastu" #. module: stock #: model:res.company,overdue_msg:stock.res_company_1 @@ -3001,7 +3001,7 @@ msgstr "" #: code:addons/stock/wizard/stock_partial_picking.py:95 #, python-format msgid "_Receive" -msgstr "" +msgstr "_Võta vastu" #. module: stock #: field:stock.incoterms,active:0 diff --git a/addons/web/i18n/bg.po b/addons/web/i18n/bg.po index a97032db9f3..0a339a02909 100644 --- a/addons/web/i18n/bg.po +++ b/addons/web/i18n/bg.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-03 13:53+0000\n" -"Last-Translator: Emil Stoyanov \n" +"PO-Revision-Date: 2013-01-17 19:26+0000\n" +"Last-Translator: tuxar \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-04 05:28+0000\n" -"X-Generator: Launchpad (build 16393)\n" +"X-Launchpad-Export-Date: 2013-01-18 07:11+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web #. openerp-web @@ -29,7 +29,7 @@ msgstr "Език по подразбиране:" #: code:addons/web/static/src/js/coresetup.js:602 #, python-format msgid "%d minutes ago" -msgstr "" +msgstr "Преди %d минути" #. module: web #. openerp-web @@ -59,7 +59,7 @@ msgstr "по-малко или равно на" #: code:addons/web/static/src/js/chrome.js:393 #, python-format msgid "Please enter your previous password" -msgstr "Въвдете Вашата предишна парола" +msgstr "Въведете Вашата предишна парола" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_EC.po b/addons/web/i18n/es_EC.po index a53f304a472..1aa50525a68 100644 --- a/addons/web/i18n/es_EC.po +++ b/addons/web/i18n/es_EC.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 03:23+0000\n" +"Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:38+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web #. openerp-web @@ -103,7 +103,7 @@ msgstr "Acceso denegado" #: code:addons/web/static/src/js/view_form.js:5183 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Error cargando datos" #. module: web #. openerp-web @@ -126,7 +126,7 @@ msgstr "Base de datos de respaldo" #: code:addons/web/static/src/js/views.js:463 #, python-format msgid "%(view_type)s view" -msgstr "" +msgstr "Vista %(view_type)s" #. module: web #. openerp-web @@ -270,7 +270,7 @@ msgstr "Nueva Password:" #: code:addons/web/static/src/xml/base.xml:610 #, python-format msgid "Attachment :" -msgstr "" +msgstr "Adjunto:" #. module: web #. openerp-web @@ -754,7 +754,7 @@ msgstr "Guardar Como" #: code:addons/web/doc/module/static/src/xml/web_example.xml:3 #, python-format msgid "00:00:00" -msgstr "" +msgstr "00:00:00" #. module: web #. openerp-web @@ -1023,7 +1023,7 @@ msgstr "Guardar lista de campos" #: code:addons/web/doc/module/static/src/xml/web_example.xml:5 #, python-format msgid "Start" -msgstr "" +msgstr "Start" #. module: web #. openerp-web @@ -1366,7 +1366,7 @@ msgstr "La confirmación no coincide con la contraseña" #: code:addons/web/static/src/xml/base.xml:441 #, python-format msgid "Edit Company data" -msgstr "" +msgstr "Editar datos de la compañía" #. module: web #. openerp-web @@ -1867,7 +1867,7 @@ msgstr "OpenERP" #: code:addons/web/doc/module/static/src/xml/web_example.xml:8 #, python-format msgid "Stop" -msgstr "" +msgstr "Stop" #. module: web #. openerp-web @@ -2094,7 +2094,7 @@ msgstr "Cargar datos de demostración" #: code:addons/web/static/src/xml/base.xml:615 #, python-format msgid "Created by :" -msgstr "" +msgstr "Creado por:" #. module: web #. openerp-web @@ -2475,7 +2475,7 @@ msgstr "Campo:" #: code:addons/web/static/src/xml/base.xml:620 #, python-format msgid "Modified by :" -msgstr "" +msgstr "Modificado por:" #. module: web #. openerp-web diff --git a/addons/web/i18n/nl.po b/addons/web/i18n/nl.po index 59d6ec5ebc3..b22e56d0d77 100644 --- a/addons/web/i18n/nl.po +++ b/addons/web/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-22 07:31+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2013-01-21 10:11+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" +"X-Generator: Launchpad (build 16430)\n" #. module: web #. openerp-web @@ -68,7 +68,7 @@ msgstr "Geef uw vorige wachtwoord in" #: code:addons/web/static/src/xml/base.xml:282 #, python-format msgid "Master password:" -msgstr "Master wachtwoord:" +msgstr "Hoofdwachtwoord:" #. module: web #. openerp-web @@ -103,7 +103,7 @@ msgstr "Toegang geweigerd" #: code:addons/web/static/src/js/view_form.js:5183 #, python-format msgid "Uploading error" -msgstr "Uploading fottmelding" +msgstr "Fout bij uploaden" #. module: web #. openerp-web @@ -177,7 +177,7 @@ msgstr "Ongeldige gebruikersnaam of wachtwoord" #: code:addons/web/static/src/xml/base.xml:260 #, python-format msgid "Master Password:" -msgstr "Master wachtwoord:" +msgstr "Hoofdwachtwoord" #. module: web #. openerp-web @@ -333,7 +333,7 @@ msgstr "Aangepaste Filter" #: code:addons/web/static/src/xml/base.xml:159 #, python-format msgid "Duplicate Database" -msgstr "Dupliceer Database" +msgstr "Dupliceer database" #. module: web #. openerp-web @@ -348,7 +348,7 @@ msgstr "Dupliceer Database" #: code:addons/web/static/src/xml/base.xml:336 #, python-format msgid "Change Password" -msgstr "Wachtwoord wijzigen" +msgstr "Wijzig wachtwoord" #. module: web #. openerp-web @@ -629,7 +629,7 @@ msgstr "Export Formaten" #: code:addons/web/static/src/xml/base.xml:974 #, python-format msgid "On change:" -msgstr "On change:" +msgstr "Bij wijziging" #. module: web #. openerp-web @@ -899,7 +899,7 @@ msgstr "Fout bij het wijzigen van het formaat: %s" #: code:addons/web/static/src/xml/base.xml:185 #, python-format msgid "Drop Database" -msgstr "Verwijder Database" +msgstr "Verwijder database" #. module: web #. openerp-web @@ -1095,7 +1095,7 @@ msgstr "Open: " #: code:addons/web/static/src/xml/base.xml:309 #, python-format msgid "Backup" -msgstr "Backup" +msgstr "Back-up" #. module: web #. openerp-web @@ -1319,7 +1319,7 @@ msgstr "U moet tenminste één record kiezen." #: code:addons/web/static/src/js/coresetup.js:631 #, python-format msgid "Don't leave yet,
it's still loading..." -msgstr "Nog niet weggaan,
het is nog steeds aan het laden..." +msgstr "Nog niet weggaan,
het systeem is nog steeds aan het laden..." #. module: web #. openerp-web @@ -1389,7 +1389,7 @@ msgstr "Kan de geselecteerde afbeelding niet tonen." #: code:addons/web/static/src/js/chrome.js:509 #, python-format msgid "Database backed up successfully" -msgstr "Database succesvol gebackupped" +msgstr "Database back-up succesvol" #. module: web #. openerp-web @@ -1442,7 +1442,7 @@ msgstr "Wijzig standaard" #: code:addons/web/static/src/xml/base.xml:171 #, python-format msgid "Original database name:" -msgstr "Originele Database naam:" +msgstr "Originele database naam:" #. module: web #. openerp-web @@ -1473,7 +1473,7 @@ msgstr "Geavanceerd zoeken" #: code:addons/web/static/src/xml/base.xml:290 #, python-format msgid "Confirm new master password:" -msgstr "Bevestig nieuw master wachtwoord:" +msgstr "Bevestig nieuw hoofdwachtwoord:" #. module: web #. openerp-web @@ -1811,7 +1811,7 @@ msgstr "Weergeven velden" #: code:addons/web/static/src/xml/base.xml:330 #, python-format msgid "Confirm New Password:" -msgstr "Bevestig nieuw wachtwoord" +msgstr "Bevestig nieuw wachtwoord:" #. module: web #. openerp-web @@ -2243,7 +2243,7 @@ msgstr "Selecteer velden voor export" #: code:addons/web/static/src/xml/base.xml:286 #, python-format msgid "New master password:" -msgstr "Nieuw master wachtwoord:" +msgstr "Nieuw hoofdwachtwoord:" #. module: web #. openerp-web @@ -2277,7 +2277,7 @@ msgstr "Geen inhoud gevonden voor veld '%s' bij '%s:%s'" #: code:addons/web/static/src/xml/base.xml:304 #, python-format msgid "Database Management" -msgstr "Database Beheer" +msgstr "Database beheer" #. module: web #. openerp-web @@ -2291,7 +2291,7 @@ msgstr "Afbeelding" #: code:addons/web/static/src/xml/base.xml:81 #, python-format msgid "Manage Databases" -msgstr "Beheer administraties" +msgstr "Beheer databases" #. module: web #. openerp-web @@ -2623,7 +2623,7 @@ msgstr "Scheidingsteken:" #: code:addons/web/static/src/xml/base.xml:300 #, python-format msgid "Back to Login" -msgstr "Terug naar aanmelding" +msgstr "Terug naar login" #. module: web #. openerp-web From 7ae392d316ba2cda49781064699dfdf6294ddb40 Mon Sep 17 00:00:00 2001 From: "Anand Patel (OpenERP)" Date: Tue, 22 Jan 2013 11:34:20 +0530 Subject: [PATCH 32/72] [FIX][7.0]Fixed float_time widget show wrong format of time. bzr revid: pan@tinyerp.com-20130122060420-7cho7hewmj80mb16 --- addons/web/static/src/js/formats.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/addons/web/static/src/js/formats.js b/addons/web/static/src/js/formats.js index 9432b02826f..851b60af229 100644 --- a/addons/web/static/src/js/formats.js +++ b/addons/web/static/src/js/formats.js @@ -166,9 +166,13 @@ instance.web.format_value = function (value, descriptor, value_if_empty) { value = Math.abs(value); pattern = '-' + pattern; } - return _.str.sprintf(pattern, - Math.floor(value), - Math.round((value % 1) * 60)); + var hour = Math.floor(value); + var min = Math.round((value % 1) * 60); + if (min == 60){ + min = 0; + hour = hour + 1; + } + return _.str.sprintf(pattern, hour, min); case 'many2one': // name_get value format return value[1] ? value[1].split("\n")[0] : value[1]; From bb61f6fb7d58b54d8f105b070b8684b330634eb9 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Tue, 22 Jan 2013 09:12:10 +0100 Subject: [PATCH 33/72] [FIX] mail: js error to format author_id bzr revid: chm@openerp.com-20130122081210-r90809pxjpyggv7p --- addons/mail/static/src/js/mail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index e3986a390d6..f428dc043cf 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -253,7 +253,7 @@ openerp.mail = function (session) { } else { this.avatar = mail.ChatterUtils.get_image(this.session, 'res.users', 'image_small', this.session.uid); } - if (this.author_id) { + if (this.author_id && this.author_id[1]) { var email = this.author_id[1].match(/(.*)<(.*@.*)>/); if (!email) { this.author_id.push(_.str.escapeHTML(this.author_id[1]), '', this.author_id[1]); From 5e70ca62672e99ba24db45498bc3a102e37053da Mon Sep 17 00:00:00 2001 From: "vta vta@openerp.com" <> Date: Tue, 22 Jan 2013 10:40:04 +0100 Subject: [PATCH 34/72] [IMP] Allow to pass an initial url to the tracker bzr revid: vta@openerp.com-20130122094004-495mnx971rwia6vb --- addons/web_analytics/static/src/js/web_analytics.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/web_analytics/static/src/js/web_analytics.js b/addons/web_analytics/static/src/js/web_analytics.js index ec35663a7b5..959e9f0daf2 100644 --- a/addons/web_analytics/static/src/js/web_analytics.js +++ b/addons/web_analytics/static/src/js/web_analytics.js @@ -67,7 +67,7 @@ openerp.web_analytics = function(instance) { * This method contains the initialization of all user-related custom variables * stored in GA. Also other modules can override it to add new custom variables */ - initialize_custom: function() { + initialize_custom: function(url) { var self = this; return instance.session.rpc("/web/webclient/version_info", {}) .done(function(res) { @@ -79,7 +79,7 @@ openerp.web_analytics = function(instance) { // Track User Type Conversion, Custom Variable 3 in GA with session level scope // Values: 'Visitor', 'Demo', 'Online Trial', 'Online Paying', 'Local User' _gaq.push(['_setCustomVar', 1, 'User Type Conversion', self._get_user_type(), 2]); - _gaq.push(['_trackPageview']); + _gaq.push(['_trackPageview', url]); return; }); }, @@ -251,11 +251,11 @@ openerp.web_analytics = function(instance) { return url; }; - instance.web_analytics.setupTracker = function(wc) { + instance.web_analytics.setupTracker = function(wc, url) { var t = wc.tracker; return $.when(t._get_user_access_level()).then(function(r) { t.user_access_level = r; - t.initialize_custom().then(function() { + t.initialize_custom(url).then(function() { wc.on('state_pushed', t, t.on_state_pushed); t.include_tracker(); }); @@ -276,8 +276,8 @@ openerp.web_analytics = function(instance) { }, show_application: function() { var self = this; - $.when(this.subscribe_deferred).then(function() { - instance.web_analytics.setupTracker(self); + $.when(this.subscribe_deferred).then(function(url) { + instance.web_analytics.setupTracker(self, url); }); this._super(); }, From 71b2aecf50c15b5fcd270aff82fc4a608a675b9e Mon Sep 17 00:00:00 2001 From: "Bhumi Thakkar (Open ERP)" Date: Tue, 22 Jan 2013 15:58:57 +0530 Subject: [PATCH 35/72] [FIX] Add filter for deprecated in ExtendedSearchProposition. bzr revid: bth@tinyerp.com-20130122102857-86sbqqvlldxb2zhc --- addons/web/static/src/js/search.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index a0208cc6d7a..f8aee92027b 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -1787,6 +1787,7 @@ instance.web.search.ExtendedSearchProposition = instance.web.Widget.extend(/** @ init: function (parent, fields) { this._super(parent); this.fields = _(fields).chain() + .filter(function (field) { return !field.deprecated; }) .map(function(val, key) { return _.extend({}, val, {'name': key}); }) .sortBy(function(field) {return field.string;}) .value(); From e82d59e5473259c4aa0ce950df953f2b2494b31d Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Tue, 22 Jan 2013 11:52:27 +0100 Subject: [PATCH 36/72] [FIX] account.invoice.report: search view should not OR the filters Invoice/Refund filters with the Customer/Supplier ones These filters are typically checked alternatively to obtain the Customer Invoices or Customer Refunds or Supplier Invoices or Supplier Refunds, so these 2 series of filters must be combined with AND. This requires an extra separator in the search view. bzr revid: odo@openerp.com-20130122105227-dbhltam9alfr8i9q --- addons/account/report/account_invoice_report_view.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index ed3649c300a..dad70f695dc 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -58,6 +58,7 @@ + From 85579d5022fee919e95b3a2ec54db176eea42aa1 Mon Sep 17 00:00:00 2001 From: "Bhumi Thakkar (Open ERP)" Date: Tue, 22 Jan 2013 17:43:32 +0530 Subject: [PATCH 37/72] [FIX] Advanced search does not support local language.--fixes:lp1099833 bzr revid: bth@tinyerp.com-20130122121332-9iw75g5ddunzam58 --- addons/web/static/src/js/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index a0208cc6d7a..70211792c26 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -1718,7 +1718,7 @@ instance.web.search.Advanced = instance.web.search.Input.extend({ }); return $.when( this._super(), - new instance.web.Model(this.view.model).call('fields_get').done(function(data) { + new instance.web.Model(this.view.model).call('fields_get',{'context': this.view.dataset.context}).done(function(data) { self.fields = _.extend({ id: { string: 'ID', type: 'id' } }, data); From 227758417ae1718636d85607c90f7005056c7320 Mon Sep 17 00:00:00 2001 From: Vishmita Date: Tue, 22 Jan 2013 15:38:42 +0100 Subject: [PATCH 38/72] [FIX] correctly remove existing needaction counter on reload bzr revid: xmo@openerp.com-20130122143842-zv3tpd36glphrutu --- addons/web/static/src/js/chrome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 30a51026684..91a006c1f7c 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -868,7 +868,7 @@ instance.web.Menu = instance.web.Widget.extend({ this.needaction_data = data; _.each(this.needaction_data, function (item, menu_id) { var $item = self.$secondary_menus.find('a[data-menu="' + menu_id + '"]'); - $item.remove('oe_menu_counter'); + $item.find('.oe_menu_counter').remove(); if (item.needaction_counter && item.needaction_counter > 0) { $item.append(QWeb.render("Menu.needaction_counter", { widget : item })); } From b1c6ae39a20f1cd32312c9babf6e20a7f621e4bb Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Tue, 22 Jan 2013 15:59:25 +0100 Subject: [PATCH 39/72] [FIX]Set password mail on user create (auth_signup) bzr revid: dle@openerp.com-20130122145925-xmf04tevib4fj4lc --- addons/auth_signup/auth_signup_data.xml | 34 +++++++++++++++++++++++++ addons/auth_signup/res_users.py | 12 +++++++-- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/addons/auth_signup/auth_signup_data.xml b/addons/auth_signup/auth_signup_data.xml index 32e397b1ba6..31e3b61a9f6 100644 --- a/addons/auth_signup/auth_signup_data.xml +++ b/addons/auth_signup/auth_signup_data.xml @@ -33,5 +33,39 @@

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

]]>
+ + + OpenERP Enterprise Connection + + ]]> + ${object.email} + + + + ${object.name}, +

+

+ You have been invited to connect to "${object.company_id.name}" in order to get access to your documents in OpenERP. +

+

+ To accept the invitation, click on the following link: +

+ +

+ Thanks, +

+
+--
+${object.company_id.name or ''}
+${object.company_id.email or ''}
+${object.company_id.phone or ''}
+                    
+ ]]> +
+
+ diff --git a/addons/auth_signup/res_users.py b/addons/auth_signup/res_users.py index b35ff274a6d..f77d6f990bb 100644 --- a/addons/auth_signup/res_users.py +++ b/addons/auth_signup/res_users.py @@ -247,7 +247,14 @@ class res_users(osv.Model): res_partner.signup_prepare(cr, uid, partner_ids, signup_type="reset", expiration=now(days=+1), context=context) # send email to users with their signup url - template = self.pool.get('ir.model.data').get_object(cr, uid, 'auth_signup', 'reset_password_email') + template = False + if context.get('create_user'): + try: + template = self.pool.get('ir.model.data').get_object(cr, uid, 'auth_signup', 'set_password_email') + except ValueError: + pass + if not bool(template): + template = self.pool.get('ir.model.data').get_object(cr, uid, 'auth_signup', 'reset_password_email') mail_obj = self.pool.get('mail.mail') assert template._name == 'email.template' for user in self.browse(cr, uid, ids, context): @@ -274,5 +281,6 @@ class res_users(osv.Model): user_id = super(res_users, self).create(cr, uid, values, context=context) user = self.browse(cr, uid, user_id, context=context) if context and context.get('reset_password') and user.email: - user.action_reset_password() + ctx = dict(context, create_user=True) + self.action_reset_password(cr, uid, [user.id], context=ctx) return user_id From 3499c3327088e7a9d9e5ee037a08853a4d428ef5 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 23 Jan 2013 06:03:28 +0000 Subject: [PATCH 40/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060246-kt475gbzoz4f1703 bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060324-z9zt3oif6p20i6mp bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060328-e0rnct2yu9lh23vp --- addons/account/i18n/pt.po | 18 +- addons/account/i18n/sl.po | 14 +- addons/account_analytic_analysis/i18n/ru.po | 54 +- addons/account_asset/i18n/pt.po | 10 +- addons/account_budget/i18n/ru.po | 14 +- addons/analytic/i18n/ru.po | 70 +- addons/anonymization/i18n/ru.po | 20 +- addons/base_action_rule/i18n/ru.po | 30 +- addons/base_calendar/i18n/cs.po | 12 +- addons/base_import/i18n/ro.po | 23 +- addons/base_setup/i18n/ro.po | 83 +- addons/board/i18n/pt.po | 32 +- addons/crm_partner_assign/i18n/pt.po | 30 +- addons/event/i18n/pt.po | 18 +- addons/fleet/i18n/es_MX.po | 10 +- addons/fleet/i18n/pt.po | 445 ++- addons/hr_recruitment/i18n/ru.po | 42 +- addons/hr_timesheet_invoice/i18n/pt.po | 22 +- addons/mail/i18n/ru.po | 8 +- addons/project/i18n/ru.po | 40 +- addons/project_issue_sheet/i18n/ru.po | 10 +- addons/purchase/i18n/es_MX.po | 3827 ++++++++++--------- addons/sale/i18n/hu.po | 463 ++- addons/sale/i18n/ru.po | 33 +- addons/survey/i18n/pt.po | 25 +- addons/web/i18n/es_EC.po | 4 +- addons/web_linkedin/i18n/pt.po | 18 +- openerp/addons/base/i18n/es_EC.po | 145 +- openerp/addons/base/i18n/hu.po | 38 +- 29 files changed, 2955 insertions(+), 2603 deletions(-) diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index a40f49eb8f6..d3af3c44023 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -8,14 +8,14 @@ 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-01-15 10:50+0000\n" +"PO-Revision-Date: 2013-01-22 11:49+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:02+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -371,7 +371,7 @@ msgstr "" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Permite usar a contabilidade analítica." #. module: account #: view:account.invoice:0 @@ -458,7 +458,7 @@ msgstr "Template de plano de contas" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Modificar: estorno, reconciliação e criação de rascunho de fatura" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -608,7 +608,7 @@ msgstr "O contabilista confirma o extrato" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 #, python-format msgid "Nothing to reconcile" -msgstr "" +msgstr "Nada a reconciliar" #. module: account #: field:account.config.settings,decimal_precision:0 @@ -749,7 +749,7 @@ msgstr "Contas a Receber" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Configure as contas bancárias da sua empresa" #. module: account #: view:account.invoice.refund:0 @@ -1785,7 +1785,7 @@ msgstr "Fatura" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "saldo" #. module: account #: model:process.node,note:account.process_node_analytic0 @@ -4656,7 +4656,7 @@ msgstr "Tipo de conta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banco e Cheques" #. module: account #: field:account.account.template,note:0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 8d7bff85f80..6dda2e390de 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-13 12:01+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-01-22 11:48+0000\n" +"Last-Translator: Matjaz Kalic \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:28+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -7684,7 +7684,7 @@ msgstr "Za procent vnesite vrednost med 0-1." #: field:account.invoice,date_invoice:0 #: field:report.invoice.created,date_invoice:0 msgid "Invoice Date" -msgstr "Datum računa" +msgstr "Datum DUR" #. module: account #: view:account.invoice.report:0 @@ -8043,7 +8043,7 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" -"Ta datume bo uporabljen kot datum računa in s tem bo določeno tudi obdobje " +"Ta datum bo uporabljen kot datum DUR in s tem bo določeno tudi obdobje " "knjiženja." #. module: account @@ -8585,7 +8585,7 @@ msgstr "Trenutni konti" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "Združeno po datumu računa" +msgstr "Združeno po datumu DUR" #. module: account #: help:account.journal,user_id:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 1c9fc1dff26..10d8436c59e 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 15:58+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -25,17 +25,17 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Group By..." -msgstr "" +msgstr "Группировать по ..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "" +msgstr "В счет" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Remaining" -msgstr "" +msgstr "Остаётся" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -123,7 +123,7 @@ msgstr "Счет аналитики" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Partner" -msgstr "" +msgstr "Партнёр" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -152,12 +152,12 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "End Date" -msgstr "" +msgstr "Дата окончания" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Управляющий счётом" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 @@ -167,7 +167,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expected" -msgstr "" +msgstr "Ожидается" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -190,7 +190,7 @@ msgstr "" #: field:account.analytic.account,remaining_hours_to_invoice:0 #: field:account.analytic.account,timesheet_ca_invoiced:0 msgid "Remaining Time" -msgstr "" +msgstr "Оставшееся время" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -259,7 +259,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Parent" -msgstr "" +msgstr "Родитель" #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 @@ -277,17 +277,17 @@ msgstr "" #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all msgid "Contracts" -msgstr "" +msgstr "Договоры" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Start Date" -msgstr "" +msgstr "Дата начала" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Invoiced" -msgstr "" +msgstr "Выставлен счет" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -304,7 +304,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "" +msgstr "Табели" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -316,7 +316,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Pending" -msgstr "" +msgstr "В ожидании" #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 @@ -326,7 +326,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 @@ -347,7 +347,7 @@ msgstr "" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" -msgstr "" +msgstr "Заказы продаж" #. module: account_analytic_analysis #: help:account.analytic.account,last_invoice_date:0 @@ -392,7 +392,7 @@ msgstr "Итого часов по пользователю" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contract" -msgstr "" +msgstr "Договор" #. module: account_analytic_analysis #: help:sale.config.settings,group_template_required:0 @@ -437,17 +437,17 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Sale Orders" -msgstr "" +msgstr "Заказы продаж" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Open" -msgstr "" +msgstr "Открыт" #. module: account_analytic_analysis #: field:account.analytic.account,invoiced_total:0 msgid "Total Invoiced" -msgstr "" +msgstr "Всего по счетам" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 @@ -507,7 +507,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue msgid "Contracts to Renew" -msgstr "" +msgstr "Договоры к продлению" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 @@ -522,7 +522,7 @@ msgstr "Теоретическая маржа" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_total:0 msgid "Total Remaining" -msgstr "" +msgstr "Итоговый остаток" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 @@ -537,7 +537,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_invoices:0 msgid "Fixed Price" -msgstr "" +msgstr "Фиксированная цена" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 1055d55afa7..ae14ad49a14 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 10:10+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -346,7 +346,7 @@ msgstr "Pesquisar categoria de ativos" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "meses" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 96dc180da3a..2406dc06b4f 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 16:09+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -235,7 +235,7 @@ msgstr "" #. module: account_budget #: view:crossovered.budget:0 msgid "Duration" -msgstr "" +msgstr "Длительность" #. module: account_budget #: field:account.budget.post,code:0 @@ -333,7 +333,7 @@ msgstr "Теоретическая сумма" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "or" -msgstr "" +msgstr "или" #. module: account_budget #: field:crossovered.budget.lines,analytic_account_id:0 @@ -419,4 +419,4 @@ msgstr "Анализ с" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "" +msgstr "Черновые бюджеты" diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index 8ef010e63fa..e27be914f82 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 16:06+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,13 +25,13 @@ msgstr "Субсчета" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "Выполняется" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Договор: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -41,7 +41,7 @@ msgstr "Шаблон" #. module: analytic #: view:account.analytic.account:0 msgid "End Date" -msgstr "" +msgstr "Дата окончания" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -83,12 +83,12 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Договор или проект" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Наименование счета/договора" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -98,7 +98,7 @@ msgstr "Управляющий счётом" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Подписчики" #. module: analytic #: selection:account.analytic.account,state:0 @@ -108,22 +108,22 @@ msgstr "Закрыто" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Договор к продлению" #. module: analytic #: selection:account.analytic.account,state:0 msgid "New" -msgstr "" +msgstr "Создать" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Руководитель проекта" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: analytic #: code:addons/analytic/analytic.py:268 @@ -145,12 +145,12 @@ msgstr "Описание" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные сообщения" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Ошибка! Вы не можете создавать рекурсивные аналитические счета." #. module: analytic #: field:account.analytic.account,company_id:0 @@ -161,12 +161,12 @@ msgstr "Компания" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Продление" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -195,7 +195,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Является подписчиком" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -205,7 +205,7 @@ msgstr "Пользователь" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending msgid "Contract pending" -msgstr "" +msgstr "Договор в ожидании" #. module: analytic #: field:account.analytic.line,date:0 @@ -215,12 +215,12 @@ msgstr "Дата" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Договор завершен" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Правила и условия" #. module: analytic #: help:account.analytic.line,amount:0 @@ -234,7 +234,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Клиент" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -244,7 +244,7 @@ msgstr "Иерархия счета" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: analytic #: field:account.analytic.account,parent_id:0 @@ -254,18 +254,18 @@ msgstr "Основной аналитический счет" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Информация договора" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Шаблон договора" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Сводка" #. module: analytic #: field:account.analytic.account,quantity_max:0 @@ -280,12 +280,12 @@ msgstr "Кредит" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Договор открыт" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed msgid "Contract closed" -msgstr "" +msgstr "Договор закрыт" #. module: analytic #: selection:account.analytic.account,state:0 @@ -305,12 +305,12 @@ msgstr "Баланс" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "К продлению" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -326,18 +326,18 @@ msgstr "Дата окончания" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Ссылка" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Аналитический учет" #. module: analytic #: field:account.analytic.line,amount:0 @@ -360,7 +360,7 @@ msgstr "Счет аналитики" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Валюта" #. module: analytic #: help:account.analytic.account,message_summary:0 diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index 36a25f10afc..c4ef13b1af6 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 16:07+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -65,7 +65,7 @@ msgstr "Поле" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Создать" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -89,7 +89,7 @@ msgstr "" #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -250,7 +250,7 @@ msgstr "История анонимизации" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Модель" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -271,7 +271,7 @@ msgstr "" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Ошибка !" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -287,7 +287,7 @@ msgstr "Имя файла" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Последовательность" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -314,7 +314,7 @@ msgstr "Выполнено" #: field:ir.model.fields.anonymization.migration.fix,query:0 #: field:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "Query" -msgstr "" +msgstr "Запрос" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 10b0a6908f6..58226ca3241 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 16:10+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Выполняется" #. module: base_action_rule #: view:base.action.rule:0 @@ -53,7 +53,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Добавить подписчиков" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -76,12 +76,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Закрыт" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Создать" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,12 +96,12 @@ msgstr "Условия" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "В ожидании" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 @@ -206,7 +206,7 @@ msgstr "Дней" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Таймер" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -226,12 +226,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Отменен" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Модель" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -289,7 +289,7 @@ msgstr "Дата создания" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Последнее действие" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,7 +305,7 @@ msgstr "Дата активации" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Действия сервера" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index 9d7d4f7a4b8..26159caedb7 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -8,14 +8,14 @@ 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-01-21 22:19+0000\n" +"PO-Revision-Date: 2013-01-22 18:30+0000\n" "Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -313,7 +313,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Konec opakování" #. module: base_calendar #: view:calendar.event:0 @@ -481,7 +481,7 @@ msgstr "Den v měsíci" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Sledující" #. module: base_calendar #: field:calendar.event,location:0 @@ -658,7 +658,7 @@ msgstr "Opakovat dokud" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Možnosti" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index d0368eb901d..40575fe96da 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.po @@ -8,14 +8,14 @@ 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-01-21 18:49+0000\n" +"PO-Revision-Date: 2013-01-22 18:19+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base_import #. openerp-web @@ -1362,6 +1362,15 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"In mod implicit, previzualizarea Import este setata pe virgule ca si \n" +" separatori ai campurilor si ghilimele ca si " +"delimitatori \n" +" de text. Daca fisierul dumneavoastra csv nu are " +"aceste \n" +" setari, puteti modifica Optiunile Formatului " +"Fisierelor \n" +" (afisate sub bara de Rasfoire fisier CSV dupa ce \n" +" selectati fisierul)." #. module: base_import #. openerp-web @@ -1418,8 +1427,14 @@ msgid "" "demo \n" " data." msgstr "" +"Ca exemplu, iata \n" +" fisierul " +"purchase.order_functional_error_line_cant_adpat.CSV \n" +" cu niste cotatii pe care le puteti importa, pe baza " +"datelor \n" +" demonstrative." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Fisier" diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index 705a5f411b2..72c794836cb 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 18:44+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Integrare Email-uri" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -30,18 +30,20 @@ msgstr "Invitat" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Contacte" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings (setari.config.de_baza)" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Folositi furnizori de autentificare externa, autentificati-va cu google, " +"facebook, ..." #. module: base_setup #: view:sale.config.settings:0 @@ -55,11 +57,20 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP permite sa creati automat piste (sau alte documente)\n" +" din email-urile primite. Puteti sincroniza email-" +"uri automat cu OpenERP\n" +" folosind conturi obisnuite POP/IMAP, folosind un " +"script de integrare a email-urilor pentru\n" +" serverul de email-uri, sau trimitand email-urile " +"manual in OpenERP folosind plugin-uri\n" +" specifice pentru aplicatia dumneavoastra " +"preferata de email." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "VANZARE" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -69,24 +80,24 @@ msgstr "Membru" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Acces portal" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Autentificare" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Cotatii si Comenzi de Vanzare" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Configurari Generale" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,12 +107,12 @@ msgstr "Sponsor" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "MRC (Managementul Relatiei cu Clientii)" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -111,32 +122,32 @@ msgstr "Rabdator" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Permite utilizatorilor sa importe date din fisiere CSV" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Gestioneaza companii multiple" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Pe Client Email" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filtru=BAZA_DE_DATE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Ia contactele automat din linkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Activeaza aplicatia Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +157,22 @@ msgstr "res_config_continuturi" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Caracteristici Clienti" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Caracteristici Vanzare" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Activeaza aplicatia Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -180,7 +191,7 @@ msgstr "Chirias" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Imparte sau integreaza orice ecran openerp." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -193,6 +204,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Atunci cand creati un contact nou (persoana sau companie), veti putea sa " +"incarcati toate datele din LinkedIn (fotografii, adresa, etc)." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -201,6 +214,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Lucreaza in medii multi corporatiste, cu accesul de securitate adecvat intre " +"companii.\n" +" Acesta instaleaza modulul multi_companie." #. module: base_setup #: view:base.config.settings:0 @@ -209,6 +225,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Portalul public este accesibil doar daca sunteti in modul baza de date unic. " +"Puteti\n" +" lansa Serverul OpenERP cu optiunea" #. module: base_setup #: view:base.config.settings:0 @@ -216,11 +235,13 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Veti gasi mai multe optiuni in detaliile companiei dumneavoastra: adresa " +"pentru antet si subsol, texte in legatura cu platile restante, etc." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "setari.config.vanzare" #. module: base_setup #: field:base.setup.terminology,partner:0 @@ -239,6 +260,14 @@ msgid "" "projects,\n" " etc." msgstr "" +"Atunci cand trimiteti un document unui client\n" +" (cotatie, factura), clientul " +"dumneavoastra va putea\n" +" sa se inregistreze ca sa primeasca toate " +"documentele,\n" +" sa citeasca stirile companiei, sa isi " +"verifice proiectele,\n" +" etc." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -254,6 +283,8 @@ msgstr "Client" #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"Activeaza partea publica a lui openerp, openerp devine un site de Internet " +"public." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index 8b1c3ed4cd2..73c2492bce2 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 09:55+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -33,7 +33,7 @@ msgstr "Criar" #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Repor Estrutura" #. module: board #: view:board.create:0 @@ -52,14 +52,14 @@ msgstr "Escolha o aspeto do painel" #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Adicionar" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Tem a certeza de que pretende remover este item?" #. module: board #: model:ir.model,name:board.model_board_board @@ -115,13 +115,27 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" O seu painel pessoal está vazio.\n" +"

\n" +" Para adicionar o seu primeiro relatório, vá ao\n" +" menu, mude para a vista de gráfico ou de listagem, e " +"carregue em 'Adicionar\n" +" ao painel' nas opções avançadas de pesquisa.\n" +"

\n" +" Pode filtrar e agrupar dados antes de os inserir no " +"painel, usando a pesquisa avançada.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Reiniciar" #. module: board #: field:board.create,menu_parent_id:0 @@ -164,4 +178,4 @@ msgstr "ou" #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Título do novo item de painel" diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index 20a2e2db988..f7dfd0c1dc8 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 12:08+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -111,7 +111,7 @@ msgstr "Empresa" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,notification_ids:0 msgid "Notifications" -msgstr "" +msgstr "Notificações" #. module: crm_partner_assign #: field:crm.lead.report.assign,date_assign:0 @@ -123,7 +123,7 @@ msgstr "Data do parceiro" #: view:crm.partner.report.assign:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "" +msgstr "Vendedor" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -170,7 +170,7 @@ msgstr "Localização Geográfica" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner msgid "Email composition wizard" -msgstr "" +msgstr "Assistente de criação de mensagem eletrónica" #. module: crm_partner_assign #: field:crm.partner.report.assign,turnover:0 @@ -199,7 +199,7 @@ msgstr "" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 msgid "System notification" -msgstr "" +msgstr "Notificação do sistema" #. module: crm_partner_assign #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:77 @@ -271,7 +271,7 @@ msgstr "Tipo" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: crm_partner_assign #: help:crm.lead,partner_assigned_id:0 @@ -311,7 +311,7 @@ msgstr "Data de criação" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_activation msgid "res.partner.activation" -msgstr "" +msgstr "res.partner.activation" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,parent_id:0 @@ -358,7 +358,7 @@ msgstr "Fase" #: view:crm.lead.report.assign:0 #: field:crm.lead.report.assign,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,to_read:0 @@ -451,7 +451,7 @@ msgstr "Dezembro" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Utilizadores que votaram nesta mensagem" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -493,7 +493,7 @@ msgstr "" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Votos" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -874,7 +874,7 @@ msgstr "Relatório de Dicas de CRM" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Modo de composição" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,model:0 @@ -906,7 +906,7 @@ msgstr "Alto" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Contactos adicionais" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,parent_id:0 diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index 5d90d2db408..f7809eef72d 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 12:14+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: event #: view:event.event:0 @@ -427,7 +427,7 @@ msgstr "Inscrições confirmadas" #. module: event #: view:event.event:0 msgid "Starting Date" -msgstr "" +msgstr "Data de início" #. module: event #: view:event.event:0 @@ -702,7 +702,7 @@ msgstr "" #: help:event.event,message_ids:0 #: help:event.registration,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: event #: field:event.registration,phone:0 @@ -747,7 +747,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "(confirmed:" -msgstr "" +msgstr "(confirmado:" #. module: event #: view:event.registration:0 @@ -869,7 +869,7 @@ msgstr "" #: code:addons/event/event.py:106 #, python-format msgid "Only %d Seats are Available!" -msgstr "" +msgstr "Apenas existem %d lugares disponíveis!" #. module: event #: model:email.template,subject:event.confirmation_event @@ -1052,7 +1052,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "available." -msgstr "" +msgstr "disponível." #. module: event #: field:event.registration,event_begin_date:0 diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index a4f8a859102..5b2cb14ddfe 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.po @@ -8,14 +8,14 @@ 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: 2013-01-18 23:31+0000\n" +"PO-Revision-Date: 2013-01-22 22:50+0000\n" "Last-Translator: Antonio Fregoso \n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -923,7 +923,7 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 @@ -1600,7 +1600,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 msgid "Brand Name" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index 325dd288842..746445a2472 100644 --- a/addons/fleet/i18n/pt.po +++ b/addons/fleet/i18n/pt.po @@ -8,34 +8,34 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 09:44+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Hybrid" -msgstr "" +msgstr "Híbrido" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_compact msgid "Compact" -msgstr "" +msgstr "Compacto" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_1 msgid "A/C Compressor Replacement" -msgstr "" +msgstr "Substituição do compressor A/C" #. module: fleet #: help:fleet.vehicle,vin_sn:0 msgid "Unique number written on the vehicle motor (VIN/SN number)" -msgstr "" +msgstr "Número do quadro" #. module: fleet #: selection:fleet.service.type,category:0 @@ -90,12 +90,12 @@ msgstr "Agrupar por..." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_32 msgid "Oil Pump Replacement" -msgstr "" +msgstr "Substituição da bomba de óleo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_18 msgid "Engine Belt Inspection" -msgstr "" +msgstr "Inspecção da correia de distribuição" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -105,12 +105,12 @@ msgstr "Não" #. module: fleet #: help:fleet.vehicle,power:0 msgid "Power in kW of the vehicle" -msgstr "" +msgstr "Potência do veículo em Kw" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_2 msgid "Depreciation and Interests" -msgstr "" +msgstr "Amortização e juros" #. module: fleet #: field:fleet.vehicle.log.contract,insurer_id:0 @@ -122,12 +122,12 @@ msgstr "Fornecedor" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_35 msgid "Power Steering Hose Replacement" -msgstr "" +msgstr "Substituição da direção assistida" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Odometer details" -msgstr "" +msgstr "Detalhes da quilometragem" #. module: fleet #: view:fleet.vehicle:0 @@ -255,7 +255,7 @@ msgstr "" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 msgid "Parent cost to this current cost" -msgstr "" +msgstr "Custo ascendente do atual custo" #. module: fleet #: help:fleet.vehicle.log.contract,cost_frequency:0 @@ -296,7 +296,7 @@ msgstr "Mensagens" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "Utilizador" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 @@ -318,7 +318,7 @@ msgstr "Mensagens por ler" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_6 msgid "Air Filter Replacement" -msgstr "" +msgstr "Substituição do filtro de ar" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_tag @@ -328,7 +328,7 @@ msgstr "fleet.vehicle.tag" #. module: fleet #: view:fleet.vehicle:0 msgid "show the services logs for this vehicle" -msgstr "" +msgstr "mostrar os registos de serviço deste veículo" #. module: fleet #: field:fleet.vehicle,contract_renewal_name:0 @@ -338,22 +338,22 @@ msgstr "Nome do contrato a renovar brevemente" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior msgid "Senior" -msgstr "" +msgstr "Sénior" #. module: fleet #: help:fleet.vehicle.log.contract,state:0 msgid "Choose wheter the contract is still valid or not" -msgstr "" +msgstr "Selecione se o contrato se mantém válido ou não" #. module: fleet #: selection:fleet.vehicle,transmission:0 msgid "Automatic" -msgstr "" +msgstr "Automático" #. module: fleet #: help:fleet.vehicle,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, há novas mensagens que pedem a sua atenção." #. module: fleet #: code:addons/fleet/fleet.py:414 @@ -374,7 +374,7 @@ msgstr "Foto de tamanho médio" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_34 msgid "Oxygen Sensor Replacement" -msgstr "" +msgstr "Substituição do sensor de oxigénio" #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -407,12 +407,12 @@ msgstr "Unidade do conta quilómetros " #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Costs Per Month" -msgstr "" +msgstr "Custo dos serviços ao mês" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Effective Costs" -msgstr "" +msgstr "Custos efetivos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_8 @@ -440,6 +440,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo contrato. \n" +"

\n" +" Gira todos os seus contratos (aluguer, seguros, etc) com os " +"seus serviços e custos associados. O OpenERP irá automaticamente notificá-lo " +"mal um contrato careça de ser renovado.\n" +"

\n" +" Cada contrato (ex.: aluguer) poderá incluir vários serviços " +"(reparação, seguros, manutenção periódica).\n" +"

\n" +" " #. module: fleet #: model:ir.model,name:fleet.model_fleet_service_type @@ -455,19 +466,19 @@ msgstr "Tipos de serviço" #. module: fleet #: view:board.board:0 msgid "Contracts Costs" -msgstr "" +msgstr "Custos de contratos" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_services_menu msgid "Vehicles Services Logs" -msgstr "" +msgstr "Registos de manutenção de veículos" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "" +msgstr "Registos de combustível de veículos" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -475,11 +486,13 @@ msgid "" "$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " "$(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " +"$(this).addClass('oe_employee_picture_wide') } });" #. module: fleet #: view:board.board:0 msgid "Vehicles With Alerts" -msgstr "" +msgstr "Veículos com alertas" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_costs_act @@ -493,16 +506,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo custo.\n" +"

\n" +" O OpenERP ajuda-o a gerir os custos dos seus diferentes " +"veículos. \n" +" Os custos são criados automaticamente em função dos " +"serviços, contratos (fixos ou recorrentes) e registos de combustível.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 msgid "show the fuel logs for this vehicle" -msgstr "" +msgstr "mostrar os registos de combustível para este veículo" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "" +msgstr "Contratante" #. module: fleet #: field:fleet.vehicle,license_plate:0 @@ -512,18 +534,18 @@ msgstr "Matrícula" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "To Close" -msgstr "" +msgstr "Para fechar" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 msgid "Recurring Cost Frequency" -msgstr "" +msgstr "Frequência do custo recorrente" #. module: fleet #: field:fleet.vehicle.log.fuel,inv_ref:0 #: field:fleet.vehicle.log.services,inv_ref:0 msgid "Invoice Reference" -msgstr "" +msgstr "Referência da fatura" #. module: fleet #: field:fleet.vehicle,message_follower_ids:0 @@ -533,7 +555,7 @@ msgstr "Seguidores" #. module: fleet #: field:fleet.vehicle,location:0 msgid "Location" -msgstr "" +msgstr "Localização" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -543,7 +565,7 @@ msgstr "Custos por mês" #. module: fleet #: field:fleet.contract.state,name:0 msgid "Contract Status" -msgstr "" +msgstr "Estado do contrato" #. module: fleet #: field:fleet.vehicle,contract_renewal_total:0 @@ -558,7 +580,7 @@ msgstr "Tipo" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 msgid "Has Contracts Overdued" -msgstr "" +msgstr "Possui contratos expirados" #. module: fleet #: field:fleet.vehicle.cost,amount:0 @@ -600,7 +622,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 msgid "A/C Recharge" -msgstr "" +msgstr "Recarga do A/C" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel @@ -620,7 +642,7 @@ msgstr "Custos de combustível por mês" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan msgid "Sedan" -msgstr "" +msgstr "Sedan" #. module: fleet #: field:fleet.vehicle,seats:0 @@ -641,12 +663,12 @@ msgstr "Configuração" #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,sum_cost:0 msgid "Indicative Costs Total" -msgstr "" +msgstr "Custos totais indicativos" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_junior msgid "Junior" -msgstr "" +msgstr "Júnior" #. module: fleet #: help:fleet.vehicle,model_id:0 @@ -665,6 +687,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Carregar para criar um estado de veículo.\n" +"

\n" +" Pode personalizar o estado disponível para rastrear a " +"evolução de cada veículo. Exemplo: Ativo, Em reparação, Vendido.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 @@ -680,13 +709,13 @@ msgstr "Registos de combustível" #: code:addons/fleet/fleet.py:420 #, python-format msgid "None" -msgstr "" +msgstr "Nada" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs_non_effective #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_indicative_costs msgid "Indicative Costs Analysis" -msgstr "" +msgstr "Análise de custos indicativa" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_12 @@ -726,11 +755,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma nova marca.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 msgid "Contract Start Date" -msgstr "" +msgstr "Data de início do contrato" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 @@ -755,7 +788,7 @@ msgstr "Pneus de neve" #. module: fleet #: help:fleet.vehicle.cost,date:0 msgid "Date when the cost has been executed" -msgstr "" +msgstr "Data em que o custo foi aplicado" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -776,7 +809,7 @@ msgstr "Custo indicativo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_26 msgid "Heater Control Valve Replacement" -msgstr "" +msgstr "Substituição da válvula de controlo de aquecimento" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -784,6 +817,8 @@ msgid "" "Create a new contract automatically with all the same informations except " "for the date that will start at the end of current contract" msgstr "" +"Criar um novo contrato automaticamente com os mesmos dados com exceção da " +"data de início que deverá ser quando o contrato corrente acabar" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 @@ -798,7 +833,7 @@ msgstr "Custo relacionado com um veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_33 msgid "Other Maintenance" -msgstr "" +msgstr "Manutenção diversa" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -810,12 +845,12 @@ msgstr "" #: field:fleet.vehicle,state_id:0 #: view:fleet.vehicle.state:0 msgid "State" -msgstr "" +msgstr "Estado" #. module: fleet #: field:fleet.vehicle.log.contract,cost_generated:0 msgid "Recurring Cost Amount" -msgstr "" +msgstr "Valor de custo recorrente" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_49 @@ -835,6 +870,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clicar para criar um novo registo de combustível. \n" +"

\n" +" Aqui pode adicionar entradas de reabastecimento para todos " +"os veículos. Pode ainda filtrar registos de um veículo em particular usando " +"o campo de pesquisa.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_11 @@ -844,7 +887,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,odometer:0 msgid "Last Odometer" -msgstr "" +msgstr "Última quilometragem registada" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act @@ -880,7 +923,7 @@ msgstr "Combustível usado pelo veículo" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Set Contract In Progress" -msgstr "" +msgstr "Definir o contrato em progresso" #. module: fleet #: field:fleet.vehicle.cost,odometer_unit:0 @@ -912,23 +955,23 @@ msgstr "Logótipo" #. module: fleet #: field:fleet.vehicle,horsepower_tax:0 msgid "Horsepower Taxation" -msgstr "" +msgstr "Taxação de potência" #. module: fleet #: field:fleet.vehicle,log_services:0 #: view:fleet.vehicle.log.services:0 msgid "Services Logs" -msgstr "" +msgstr "Registos de serviços" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 msgid "Thermostat Replacement" -msgstr "" +msgstr "Substituição do termostato" #. module: fleet #: field:fleet.service.type,category:0 @@ -946,6 +989,8 @@ msgid "" "This field holds the image used as logo for the brand, limited to " "1024x1024px." msgstr "" +"Este campo guarda a imagem usada como logótipo da marca, limitada a " +"1024x1024 pixéis." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_11 @@ -966,7 +1011,7 @@ msgstr "Informação adicional" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_services_graph msgid "Services Costs by Month" -msgstr "" +msgstr "Custos de serviços por mês" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_9 @@ -981,7 +1026,7 @@ msgstr "Preço por litro" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_17 msgid "Door Window Motor/Regulator Replacement" -msgstr "" +msgstr "Substituição do motor/regulador da janela da porta" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_46 @@ -1001,7 +1046,7 @@ msgstr "Tipo de combustível" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_22 msgid "Fuel Injector Replacement" -msgstr "" +msgstr "Substituição do injetor de combustível" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act @@ -1017,7 +1062,7 @@ msgstr "Substituição da bomba de água" #. module: fleet #: help:fleet.vehicle,location:0 msgid "Location of the vehicle (garage, ...)" -msgstr "" +msgstr "Localização do veículo (garagem, ...)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_28 @@ -1027,12 +1072,12 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_40 msgid "Rotor Replacement" -msgstr "" +msgstr "Substituição do rotor" #. module: fleet #: help:fleet.vehicle.model,brand_id:0 @@ -1042,17 +1087,17 @@ msgstr "Marca do veículo" #. module: fleet #: help:fleet.vehicle.log.contract,start_date:0 msgid "Date when the coverage of the contract begins" -msgstr "" +msgstr "Data em que se inicia a cobertura do contrato" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Electric" -msgstr "" +msgstr "Elétrico" #. module: fleet #: field:fleet.vehicle,tag_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiquetas" #. module: fleet #: view:fleet.vehicle:0 @@ -1063,7 +1108,7 @@ msgstr "Contratos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_13 msgid "Brake Pad(s) Replacement" -msgstr "" +msgstr "Substituição das pastilhas de travão" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -1083,6 +1128,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Foto de tamanho pequeno da marca. É automaticamente redimensionada para uma " +"imagem de 64x64 pixéis, com o rácio preservado. Use este campo onde for " +"necessária uma imagem pequena." #. module: fleet #: view:board.board:0 @@ -1102,7 +1150,7 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Details" -msgstr "" +msgstr "Detalhes dos serviços" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_15 @@ -1117,7 +1165,7 @@ msgstr "Substituição do alternador" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_3 msgid "A/C Diagnosis" -msgstr "" +msgstr "Diagnóstico do A/C" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_23 @@ -1142,12 +1190,12 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "show all the costs for this vehicle" -msgstr "" +msgstr "mostrar todos os custos com este veículo" #. module: fleet #: view:fleet.vehicle.odometer:0 msgid "Odometer Values Per Month" -msgstr "" +msgstr "Quilómetros por mês" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act @@ -1160,6 +1208,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo modelo.\n" +"

\n" +" Pode definir diversos modelos (ex: A3, A4) para cada marca " +"(Audi).\n" +"

\n" +" " #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_act @@ -1178,6 +1233,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clicar para criar um novo veículo. \n" +"

\n" +" Poderá gerir a sua frota rastreando contratos, serviços, " +"custos fixos e recorrentes, quilometragens e registos de combustível " +"associados a cada veículo.\n" +"

\n" +" O OpenERP irá notificá-lo quando os serviços ou contratos " +"tiverem de ser renovados.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 @@ -1192,7 +1258,7 @@ msgstr "Data de expiração do contrato" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Subtype" -msgstr "" +msgstr "Subtipo de custo" #. module: fleet #: model:ir.actions.act_window,help:fleet.open_board_fleet @@ -1212,11 +1278,24 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" O painel da frota está vazio.\n" +"

\n" +" Para adicionar o seu primeiro relatório a este painel, " +"vá a qualquer menu, altere a visualização para lista ou gráfico e clique em " +"'Adicionar ao Painel' nas opções avançadas de pesquisa..\n" +"

\n" +" Pode filtrar e agrupar os dados antes de adicionar ao " +"painel usando as opções de pesquisa.\n" +"

\n" +"
\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 msgid "Rent (Excluding VAT)" -msgstr "" +msgstr "Aluguer (excluindo IVA)" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 @@ -1239,7 +1318,7 @@ msgstr "Contrato" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "" +msgstr "Modelo do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 @@ -1271,16 +1350,18 @@ msgid "" "Costs paid at regular intervals, depending on the cost frequency. If the " "cost frequency is set to unique, the cost will be logged at the start date" msgstr "" +"Custo pago em intervalos regulares, dependendo da sua frequência. Se esta " +"for definida como fixa, o custo será registado à data de início" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_17 msgid "Emissions" -msgstr "" +msgstr "Emissões" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model msgid "Model of a vehicle" -msgstr "" +msgstr "Modelo de um veículo" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs @@ -1298,11 +1379,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" O OpenERP ajuda-o a gerir os custos dos seus diferentes veículos\n" +" Os custos são geralmente criados a partir dos serviços e contratos " +"e aparecem aqui.\n" +"

\n" +"

\n" +" Graças a diferentes filtros, o OpenERP apenas pode imprimir os " +"custos reais,\n" +" ordenando-os por tipo e veículo.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle,car_value:0 msgid "Car Value" -msgstr "" +msgstr "Valor do carro" #. module: fleet #: model:ir.actions.act_window,name:fleet.open_board_fleet @@ -1311,33 +1403,33 @@ msgstr "" #: model:ir.ui.menu,name:fleet.menu_fleet_reporting #: model:ir.ui.menu,name:fleet.menu_root msgid "Fleet" -msgstr "" +msgstr "Frota" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_14 msgid "Total expenses (Excluding VAT)" -msgstr "" +msgstr "Despesas totais (excluindo IVA)" #. module: fleet #: field:fleet.vehicle.cost,odometer_id:0 msgid "Odometer" -msgstr "" +msgstr "Conta quilómetros" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_45 msgid "Tire Replacement" -msgstr "" +msgstr "Substituição de pneus" #. module: fleet #: view:fleet.service.type:0 msgid "Service types" -msgstr "" +msgstr "Tipos de serviços" #. module: fleet #: field:fleet.vehicle.log.fuel,purchaser_id:0 #: field:fleet.vehicle.log.services,purchaser_id:0 msgid "Purchaser" -msgstr "" +msgstr "Comprador" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_3 @@ -1348,7 +1440,7 @@ msgstr "" #: view:fleet.vehicle.model:0 #: field:fleet.vehicle.model,vendors:0 msgid "Vendors" -msgstr "" +msgstr "Vendedores" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_leasing @@ -1362,48 +1454,51 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Logótipo de tamanho médio da marca. É automaticamente redimensionado para " +"uma imagem de 128x128 pixéis, com o rácio preservado. Use este campo em " +"vistas de formulário ou em algumas vistas kanban." #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Weekly" -msgstr "" +msgstr "Semanalmente" #. module: fleet #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "" +msgstr "Registos de quilometragem" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 msgid "Acquisition Date" -msgstr "" +msgstr "Data de aquisição" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "" +msgstr "Registo de quilometragem para um veículo" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 msgid "Category of the cost" -msgstr "" +msgstr "Categoria do custo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_5 #: model:fleet.service.type,name:fleet.type_service_service_7 msgid "Summer tires" -msgstr "" +msgstr "Pneus de verão" #. module: fleet #: field:fleet.vehicle,contract_renewal_due_soon:0 msgid "Has Contracts to renew" -msgstr "" +msgstr "Possui contratos por renovar" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_31 msgid "Oil Change" -msgstr "" +msgstr "Mudança de oleo" #. module: fleet #: field:fleet.vehicle.model.brand,image_small:0 @@ -1413,17 +1508,17 @@ msgstr "Foto de tamanho pequeno" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model_brand msgid "Brand model of the vehicle" -msgstr "" +msgstr "Modelo do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_51 msgid "Wheel Alignment" -msgstr "" +msgstr "Alinhamento das rodas" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_purchased msgid "Purchased" -msgstr "" +msgstr "Comprado" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act @@ -1436,6 +1531,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui pode adicionar várias entradas de quilometragem para " +"todos os veículos. \n" +" Pode também mostrar a quilometragem para um veículo em " +"particular usando o campo de pesquisa.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.model,brand_id:0 @@ -1446,7 +1548,7 @@ msgstr "Marca do modelo" #. module: fleet #: view:fleet.vehicle:0 msgid "General Properties" -msgstr "" +msgstr "Propriedades gerais" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_21 @@ -1456,49 +1558,49 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_47 msgid "Transmission Filter Replacement" -msgstr "" +msgstr "Substituição do filtro de transmissão" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_10 msgid "Replacement Vehicle" -msgstr "" +msgstr "Veículo de substituição" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "In Progress" -msgstr "" +msgstr "Em progresso" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Yearly" -msgstr "" +msgstr "Anualmente" #. module: fleet #: field:fleet.vehicle.model,modelname:0 msgid "Model name" -msgstr "" +msgstr "Nome do modelo" #. module: fleet #: view:board.board:0 #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_costs_graph msgid "Costs by Month" -msgstr "" +msgstr "Custos por mês" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_18 msgid "Touring Assistance" -msgstr "" +msgstr "Assistência em viagem" #. module: fleet #: field:fleet.vehicle,power:0 msgid "Power (kW)" -msgstr "" +msgstr "Potência (Kw)" #. module: fleet #: code:addons/fleet/fleet.py:418 #, python-format msgid "State: from '%s' to '%s'" -msgstr "" +msgstr "Estado: de '%s' a '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_2 @@ -1508,18 +1610,18 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_19 msgid "Engine Coolant Replacement" -msgstr "" +msgstr "Substituição do líquido refrigerante" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Details" -msgstr "" +msgstr "Detalhes do custo" #. module: fleet #: code:addons/fleet/fleet.py:410 #, python-format msgid "Model: from '%s' to '%s'" -msgstr "" +msgstr "Modelo: de '%s' a '%s'" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 @@ -1529,107 +1631,107 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract details" -msgstr "" +msgstr "Detalhes do contrato" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_leasing msgid "Employee Car" -msgstr "" +msgstr "Carro do funcionário" #. module: fleet #: field:fleet.vehicle.cost,auto_generated:0 msgid "Automatically Generated" -msgstr "" +msgstr "Gerado automaticamente" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 msgid "Fuel" -msgstr "" +msgstr "Combustível" #. module: fleet #: sql_constraint:fleet.vehicle.state:0 msgid "State name already exists" -msgstr "" +msgstr "Este estado já existe" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_37 msgid "Radiator Repair" -msgstr "" +msgstr "Reparação do radiador" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_contract msgid "Contract information on a vehicle" -msgstr "" +msgstr "Informação de contrato num veículo" #. module: fleet #: field:fleet.vehicle.log.contract,days_left:0 msgid "Warning Date" -msgstr "" +msgstr "Data de aviso" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_19 msgid "Residual value in %" -msgstr "" +msgstr "Valor residual em %" #. module: fleet #: view:fleet.vehicle:0 msgid "Additional Properties" -msgstr "" +msgstr "Propriedades adicionais" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state msgid "fleet.vehicle.state" -msgstr "" +msgstr "fleet.vehicle.state" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract Costs Per Month" -msgstr "" +msgstr "Custos do contrato por mês" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_contract_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_contract_menu msgid "Vehicles Contracts" -msgstr "" +msgstr "Contratos de veículos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_48 msgid "Transmission Fluid Replacement" -msgstr "" +msgstr "Substituição do fluído da transmissão" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 msgid "Brand Name" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "" +msgstr "Substituição da bomba da direção assistida" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 msgid "Contract attached to this cost" -msgstr "" +msgstr "Contrato anexado a este custo" #. module: fleet #: code:addons/fleet/fleet.py:397 #, python-format msgid "Vehicle %s has been added to the fleet!" -msgstr "" +msgstr "O veículo %s foi adicionado à frota" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Price" -msgstr "" +msgstr "Preço" #. module: fleet #: field:fleet.vehicle.cost,odometer:0 #: field:fleet.vehicle.odometer,value:0 msgid "Odometer Value" -msgstr "" +msgstr "Quilometragem" #. module: fleet #: view:fleet.vehicle:0 @@ -1637,14 +1739,14 @@ msgstr "" #: field:fleet.vehicle.cost,vehicle_id:0 #: field:fleet.vehicle.odometer,vehicle_id:0 msgid "Vehicle" -msgstr "" +msgstr "Veículo" #. module: fleet #: field:fleet.vehicle.cost,cost_ids:0 #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.services:0 msgid "Included Services" -msgstr "" +msgstr "Serviços incluídos" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_vehicle_kanban @@ -1656,11 +1758,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui são mostrados os veículos para os quais um ou mais contratos " +"precisam ser renovados.\n" +" Se está a ler esta mensagem é porque não existem contratos para " +"renovar.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_15 msgid "Catalytic Converter Replacement" -msgstr "" +msgstr "Substituição do conversor catalítico" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_25 @@ -1671,38 +1780,38 @@ msgstr "" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu msgid "Vehicles Odometer" -msgstr "" +msgstr "Quilometragem dos veículos" #. module: fleet #: help:fleet.vehicle.log.contract,notes:0 msgid "Write here all supplementary informations relative to this contract" -msgstr "" +msgstr "Escreva aqui todas as informações suplementares a este contrato" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_29 msgid "Ignition Coil Replacement" -msgstr "" +msgstr "Substituição da bobina de chamada" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_16 msgid "Options" -msgstr "" +msgstr "Preferências" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_repairing msgid "Repairing" -msgstr "" +msgstr "Em reparação" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_costs msgid "Costs Analysis" -msgstr "" +msgstr "Análise de custos" #. module: fleet #: field:fleet.vehicle.log.contract,ins_ref:0 msgid "Contract Reference" -msgstr "" +msgstr "Referência do contrato" #. module: fleet #: field:fleet.service.type,name:0 @@ -1714,27 +1823,27 @@ msgstr "" #: field:fleet.vehicle.state,name:0 #: field:fleet.vehicle.tag,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: fleet #: help:fleet.vehicle,doors:0 msgid "Number of doors of the vehicle" -msgstr "" +msgstr "Número de portas do veículo" #. module: fleet #: field:fleet.vehicle,transmission:0 msgid "Transmission" -msgstr "" +msgstr "Transmissão" #. module: fleet #: field:fleet.vehicle,vin_sn:0 msgid "Chassis Number" -msgstr "" +msgstr "Número do quadro" #. module: fleet #: help:fleet.vehicle,color:0 msgid "Color of the vehicle" -msgstr "" +msgstr "Cor do veículo" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_services_act @@ -1748,78 +1857,87 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um serviço. \n" +"

\n" +" O OpenERP ajuda-o a rastrear todos os serviços realizados ao " +"seu veículo. \n" +" Os serviços podem ser de vários tipos: reparação ocasional, " +"manutenção fixa, etc.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle,co2:0 msgid "CO2 Emissions" -msgstr "" +msgstr "Emissões de CO2" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract logs" -msgstr "" +msgstr "Registos de contrato" #. module: fleet #: view:fleet.vehicle:0 msgid "Costs" -msgstr "" +msgstr "Custos" #. module: fleet #: field:fleet.vehicle,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph msgid "Contracts Costs by Month" -msgstr "" +msgstr "Custos de contratos por mês" #. module: fleet #: field:fleet.vehicle,model_id:0 #: view:fleet.vehicle.model:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_41 msgid "Spark Plug Replacement" -msgstr "" +msgstr "Substituição da vela de ignição" #. module: fleet #: help:fleet.vehicle,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle msgid "Information on a vehicle" -msgstr "" +msgstr "Informação de um veículo" #. module: fleet #: help:fleet.vehicle,co2:0 msgid "CO2 emissions of the vehicle" -msgstr "" +msgstr "Emissões CO2 do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_53 msgid "Windshield Wiper(s) Replacement" -msgstr "" +msgstr "Substituição do(s) limpa parabrisas" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,generated_cost_ids:0 msgid "Generated Costs" -msgstr "" +msgstr "Custos gerados" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequência" #. module: fleet #: field:fleet.vehicle,color:0 msgid "Color" -msgstr "" +msgstr "Cor" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_service_types_act @@ -1832,32 +1950,39 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clicar para criar um tipo de serviço.\n" +"

\n" +" Cada serviço pode ser usado em contratos, como serviço " +"isolado ou ambos.\n" +"

\n" +" " #. module: fleet #: view:board.board:0 msgid "Services Costs" -msgstr "" +msgstr "Custos dos serviços" #. module: fleet #: code:addons/fleet/fleet.py:47 #, python-format msgid "Emptying the odometer value of a vehicle is not allowed." -msgstr "" +msgstr "Diminuir o valor do conta quilómetros de um veículo não é permitido." #. module: fleet #: help:fleet.vehicle,seats:0 msgid "Number of seats of the vehicle" -msgstr "" +msgstr "Número de lugares do veículo" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "Gerente" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Cost" -msgstr "" +msgstr "Custo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_39 diff --git a/addons/hr_recruitment/i18n/ru.po b/addons/hr_recruitment/i18n/ru.po index 5b2e581c421..6f97130f01b 100644 --- a/addons/hr_recruitment/i18n/ru.po +++ b/addons/hr_recruitment/i18n/ru.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 15:32+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -43,7 +43,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Mobile:" -msgstr "" +msgstr "Мобильный:" #. module: hr_recruitment #: help:hr.recruitment.stage,fold:0 @@ -65,7 +65,7 @@ msgstr "Группировать по .." #. module: hr_recruitment #: view:hr.applicant:0 msgid "Filter and view on next actions and date" -msgstr "" +msgstr "Фильтр и вид для следующих действий и даты" #. module: hr_recruitment #: view:hr.applicant:0 @@ -83,7 +83,7 @@ msgstr "" #. module: hr_recruitment #: field:hr.applicant,salary_expected_extra:0 msgid "Expected Salary Extra" -msgstr "" +msgstr "Ожидаемый дополнительный заработок" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -93,13 +93,13 @@ msgstr "Вакансии" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Pending Jobs" -msgstr "" +msgstr "Ожидающие вакансии" #. module: hr_recruitment #: view:hr.applicant:0 #: field:hr.applicant,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитанные сообщения" #. module: hr_recruitment #: field:hr.applicant,company_id:0 @@ -113,7 +113,7 @@ msgstr "Компания" #: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_source_action #: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_source msgid "Sources of Applicants" -msgstr "" +msgstr "Источники соискателей" #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:435 @@ -172,7 +172,7 @@ msgstr "" #. module: hr_recruitment #: field:hr.config.settings,fetchmail_applicants:0 msgid "Create applicants from an incoming email account" -msgstr "" +msgstr "Создать соискателей из аккаунта входящей почты" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -189,12 +189,12 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Refuse" -msgstr "" +msgstr "Отказать" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced msgid "Master Degree" -msgstr "" +msgstr "Ученая степень" #. module: hr_recruitment #: field:hr.applicant,partner_mobile:0 @@ -209,7 +209,7 @@ msgstr "Сообщения" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Next Actions" -msgstr "" +msgstr "Следующие действия" #. module: hr_recruitment #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:38 @@ -255,17 +255,17 @@ msgstr "" #: view:hr.applicant:0 #: model:ir.actions.act_window,name:hr_recruitment.action_applicants_status msgid "Applicants Status" -msgstr "" +msgstr "Статус соискателей" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "My Recruitment" -msgstr "" +msgstr "Мой наём кадров" #. module: hr_recruitment #: field:hr.job,survey_id:0 msgid "Interview Form" -msgstr "" +msgstr "Форма интервью" #. module: hr_recruitment #: help:hr.job,survey_id:0 @@ -290,7 +290,7 @@ msgstr "" #: code:addons/hr_recruitment/hr_recruitment.py:435 #, python-format msgid "Warning!" -msgstr "" +msgstr "Внимание!" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop:0 @@ -306,7 +306,7 @@ msgstr "Партнер" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Proposed Salary" -msgstr "" +msgstr "Средняя предлагаемая з/п" #. module: hr_recruitment #: view:hr.applicant:0 @@ -324,12 +324,12 @@ msgstr "Предлагаемая зарплата" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_source msgid "Source of Applicants" -msgstr "" +msgstr "Источник соискателей" #. module: hr_recruitment #: view:hr.recruitment.partner.create:0 msgid "Convert To Partner" -msgstr "" +msgstr "Преобразовать в партнера" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_report diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index f20b1253d89..c6144dd4c4a 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 09:50+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -44,7 +44,7 @@ msgstr "" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Não foram encontrados registos para este relatório." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 @@ -70,7 +70,7 @@ msgstr "Receita" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,name:0 msgid "Log of Activity" -msgstr "" +msgstr "Registo de atividade" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -166,7 +166,7 @@ msgstr "Montante Faturado" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 #, python-format msgid "Analytic Account incomplete !" -msgstr "" +msgstr "Conta analítica incompleta" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 @@ -282,7 +282,7 @@ msgstr "Custos a Faturar" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Please define income account for product '%s'." -msgstr "" +msgstr "Por favor, defina uma conta de receita para o produto '%s'." #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,account_id:0 @@ -606,7 +606,7 @@ msgstr "Data" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Tempo" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -747,6 +747,8 @@ msgstr "Folha de Horas a Faturar" msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." msgstr "" +"Contrato incompleto. Por favor, preencha a informação relativa ao cliente e " +"lista de preços" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_date_stat_all @@ -803,7 +805,7 @@ msgstr "Mantenha vazio se este contrato não se limita a um preço total fixo." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create.final:0 msgid "Do you want to show details of each activity to your customer?" -msgstr "" +msgstr "Quer mostrar, ao cliente, detalhes de cada atividade?" #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index f97fbeb776c..cdd499d2dee 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.po @@ -8,14 +8,14 @@ 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-01-15 09:54+0000\n" +"PO-Revision-Date: 2013-01-22 15:39+0000\n" "Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: mail #: view:mail.followers:0 @@ -1212,7 +1212,7 @@ msgstr "Подтип" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Форма группы" #. module: mail #: field:mail.compose.message,starred:0 diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index f52d0591b65..a97c8746917 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 15:37+0000\n" +"Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:01+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: project #: view:project.project:0 @@ -75,7 +75,7 @@ msgstr "День" #. module: project #: model:project.task.type,name:project.project_tt_merge msgid "Merge" -msgstr "" +msgstr "Объединить" #. module: project #: view:res.partner:0 @@ -92,7 +92,7 @@ msgstr "Внимание!" #: help:project.project,message_unread:0 #: help:project.task,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: project #: model:process.node,name:project.process_node_donetask0 @@ -137,7 +137,7 @@ msgstr "" #: code:addons/project/project.py:1305 #, python-format msgid "Warning!" -msgstr "" +msgstr "Внимание!" #. module: project #: model:ir.model,name:project.model_res_partner @@ -174,7 +174,7 @@ msgstr "Процент закрытых заданий в соответстви #. module: project #: model:ir.actions.client,name:project.action_client_project_menu msgid "Open Project Menu" -msgstr "" +msgstr "Открыть меню проекта" #. module: project #: model:ir.actions.act_window,help:project.action_project_task_user_tree @@ -196,7 +196,7 @@ msgstr "Название проверочного задания" #. module: project #: model:res.groups,name:project.group_delegate_task msgid "Task Delegation" -msgstr "" +msgstr "Делегирование задачи" #. module: project #: field:project.project,planned_hours:0 @@ -208,7 +208,7 @@ msgstr "Запланированное время" #. module: project #: selection:project.project,privacy_visibility:0 msgid "Public" -msgstr "" +msgstr "Общий" #. module: project #: model:project.category,name:project.project_category_01 @@ -229,7 +229,7 @@ msgstr "Назначено" #: model:mail.message.subtype,name:project.mt_project_task_closed #: model:mail.message.subtype,name:project.mt_task_closed msgid "Task Done" -msgstr "" +msgstr "Задача выполнена" #. module: project #: view:project.project:0 @@ -270,17 +270,17 @@ msgstr "Назначить задание" #: model:mail.message.subtype,name:project.mt_project_task_started #: model:mail.message.subtype,name:project.mt_task_started msgid "Task Started" -msgstr "" +msgstr "Задача запущена" #. module: project #: view:project.task:0 msgid "Very Important" -msgstr "" +msgstr "Очень важно" #. module: project #: view:project.config.settings:0 msgid "Support" -msgstr "" +msgstr "Поддержка" #. module: project #: view:project.project:0 @@ -290,7 +290,7 @@ msgstr "Мои" #. module: project #: view:project.task:0 msgid "Cancel Task" -msgstr "" +msgstr "Отмена задачи" #. module: project #: help:project.project,members:0 @@ -362,7 +362,7 @@ msgstr "После завершения задания установить дл #: field:project.project,message_summary:0 #: field:project.task,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Сводка" #. module: project #: view:project.project:0 @@ -401,7 +401,7 @@ msgstr "Делегированный Пользователь должен бы #. module: project #: view:project.project:0 msgid "Project(s) Manager" -msgstr "" +msgstr "Управление проектом(ами)" #. module: project #: selection:project.project,state:0 @@ -453,7 +453,7 @@ msgstr "Расшифруйте ваши рабочие часы" #. module: project #: field:project.project,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Псевдоним" #. module: project #: view:project.task:0 @@ -468,7 +468,7 @@ msgstr "" #. module: project #: view:project.task:0 msgid "Delegation" -msgstr "" +msgstr "Делегирование" #. module: project #: field:project.task,create_date:0 @@ -735,7 +735,7 @@ msgstr "Дата создания" #. module: project #: view:project.project:0 msgid "Miscellaneous" -msgstr "" +msgstr "Разное" #. module: project #: view:project.task:0 diff --git a/addons/project_issue_sheet/i18n/ru.po b/addons/project_issue_sheet/i18n/ru.po index 77414e36022..9ed43e08363 100644 --- a/addons/project_issue_sheet/i18n/ru.po +++ b/addons/project_issue_sheet/i18n/ru.po @@ -8,20 +8,20 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 15:38+0000\n" +"Last-Translator: Эдуард \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 #, python-format msgid "The Analytic Account is pending !" -msgstr "" +msgstr "Аналитический счет в ожидании!" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_account_analytic_line diff --git a/addons/purchase/i18n/es_MX.po b/addons/purchase/i18n/es_MX.po index 4e7468018f9..4fe53a91aae 100644 --- a/addons/purchase/i18n/es_MX.po +++ b/addons/purchase/i18n/es_MX.po @@ -1,233 +1,55 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * purchase +# Spanish (Mexico) 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: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:15+0000\n" -"PO-Revision-Date: 2011-01-14 09:43+0000\n" -"Last-Translator: Alberto Luengo Cabanillas (Pexego) \n" -"Language-Team: \n" +"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-01-22 19:16+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-05 05:02+0000\n" -"X-Generator: Launchpad (build 13830)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: purchase -#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0 -msgid "" -"The buyer has to approve the RFQ before being sent to the supplier. The RFQ " -"becomes a confirmed Purchase Order." -msgstr "" -"El comprador debe aprobar la solicitud de presupuesto antes de enviar al " -"proveedor. La solicitud de presupuesto se convertirá en un pedido de compra " -"confirmado." - -#. module: purchase -#: code:addons/purchase/purchase.py:292 -#, python-format -msgid "You can not confirm purchase order without Purchase Order Lines." -msgstr "" -"No puede confirmar un pedido de compra sin líneas de pedido de compra" - -#. module: purchase -#: field:purchase.order,invoiced:0 -msgid "Invoiced & Paid" -msgstr "Facturada & Pagada (conciliada)" - -#. module: purchase -#: field:purchase.order,location_id:0 -#: view:purchase.report:0 -#: field:purchase.report,location_id:0 -msgid "Destination" -msgstr "Destino" - -#. module: purchase -#: code:addons/purchase/purchase.py:721 -#, python-format -msgid "" -"You have to select a product UOM in the same category than the purchase UOM " -"of the product" -msgstr "" -"Debe seleccionar una UdM del producto de la misma categoría que la UdM de " -"compra del producto" - -#. module: purchase -#: help:purchase.report,date:0 -msgid "Date on which this document has been created" -msgstr "Fecha en el que fue creado este documento." - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.purchase_rfq -msgid "" -"You can create a request for quotation when you want to buy products to a " -"supplier but the purchase is not confirmed yet. Use also this menu to review " -"requests for quotation created automatically based on your logistic rules " -"(minimum stock, MTO, etc). You can convert the request for quotation into a " -"purchase order once the order is confirmed. If you use the extended " -"interface (from user's preferences), you can select the way to control your " -"supplier invoices: based on the order, based on the receptions or manual " -"encoding." -msgstr "" -"Puede crear una petición de presupuesto cuando quiera obtener productos de " -"un proveedor pero la compra todavía no se haya confirmado. Utilice asimismo " -"este menú para revisar las peticiones de compra creadas automáticamente en " -"base a sus reglas de logística (stock mínimo, obtener bajo pedido, etc). " -"Puede convertir la petición en una compra una vez el pedido se haya " -"confirmado. Si utiliza la interfaz extendida (desde las Preferencias de " -"Usuario), puede elegir la forma de controlar sus facturas de proveedor: " -"basadas en pedido, basadas en recepciones o codificación manual." - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "From Reception" +#: model:res.groups,name:purchase.group_analytic_accounting +msgid "Analytic Accounting for Purchases" msgstr "" #. module: purchase -#: view:purchase.order:0 -msgid "Not Invoiced" -msgstr "No facturado" - -#. module: purchase -#: field:purchase.order,dest_address_id:0 -msgid "Destination Address" -msgstr "Dirección destinatario" - -#. module: purchase -#: report:purchase.order:0 -#: field:purchase.report,validator:0 -msgid "Validated By" -msgstr "Validado por" - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order,partner_id:0 -#: view:purchase.order.line:0 -#: view:purchase.report:0 -#: field:purchase.report,partner_id:0 -msgid "Supplier" -msgstr "Proveedor" - -#. module: purchase -#: view:purchase.order.line_invoice:0 -msgid "Do you want to generate the supplier invoices?" -msgstr "¿Desea generar las facturas de proveedor?" - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.purchase_form_action -msgid "" -"Use this menu to search within your purchase orders by references, supplier, " -"products, etc. For each purchase order, you can track the products received, " -"and control the supplier invoices." +#: model:ir.model,name:purchase.model_account_config_settings +msgid "account.config.settings" msgstr "" -"Utilice este menú para buscar en sus pedidos de compra por referencia, " -"proveedor, producto, etc. Para cada pedido de compra, puede obtener los " -"productos recibidos, y controlar las facturas de los proveedores." - -#. module: purchase -#: code:addons/purchase/purchase.py:735 -#, python-format -msgid "The selected supplier only sells this product by %s" -msgstr "El proveedor seleccionado sólo vende este producto por %s" - -#. module: purchase -#: code:addons/purchase/wizard/purchase_line_invoice.py:156 -#, python-format -msgid "Supplier Invoices" -msgstr "Facturas de proveedor" - -#. module: purchase -#: sql_constraint:purchase.order:0 -msgid "Order Reference must be unique !" -msgstr "¡La referencia del pedido debe ser única!" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_packinginvoice0 -#: model:process.transition,name:purchase.process_transition_productrecept0 -msgid "From a Pick list" -msgstr "Desde un albarán" - -#. module: purchase -#: code:addons/purchase/purchase.py:660 -#, python-format -msgid "No Pricelist !" -msgstr "¡No tarifa!" - -#. module: purchase -#: field:purchase.order.line,product_qty:0 -#: view:purchase.report:0 -#: field:purchase.report,quantity:0 -msgid "Quantity" -msgstr "Cantidad" - -#. module: purchase -#: view:purchase.order.line_invoice:0 -msgid "Select an Open Sale Order" -msgstr "Seleccionar un pedido de compra abierto" - -#. module: purchase -#: field:purchase.order,company_id:0 -#: field:purchase.order.line,company_id:0 -#: view:purchase.report:0 -#: field:purchase.report,company_id:0 -msgid "Company" -msgstr "Compañía" #. module: purchase #: view:board.board:0 -#: model:ir.actions.act_window,name:purchase.action_purchase_order_monthly_categ_graph -#: view:purchase.report:0 -msgid "Monthly Purchase by Category" -msgstr "Compra mensual por categoría" +msgid "Monthly Purchases by Category" +msgstr "" #. module: purchase -#: view:purchase.order:0 -msgid "Set to Draft" -msgstr "Cambiar a borrador" - -#. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Invoice Exception" -msgstr "Excepción de factura" +#: help:purchase.config.settings,module_warning:0 +msgid "" +"Allow to configure notification on products and trigger them when a user " +"wants to purchase a given product or a given supplier.\n" +"Example: Product: this product is deprecated, do not purchase more than 5.\n" +" Supplier: don't forget to ask for an express delivery." +msgstr "" #. module: purchase #: model:product.pricelist,name:purchase.list0 msgid "Default Purchase Pricelist" -msgstr "Tarifa de compra por defecto" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_current_purchases -msgid "Current purchases" -msgstr "Compras actuales" - -#. module: purchase -#: help:purchase.order,dest_address_id:0 -msgid "" -"Put an address if you want to deliver directly from the supplier to the " -"customer.In this case, it will remove the warehouse link and set the " -"customer location." msgstr "" -"Introduzca una dirección si quiere enviar directamente desde el proveedor al " -"cliente. En este caso, se eliminará el enlace al almacén y pondrá la " -"ubicación del cliente." - -#. module: purchase -#: help:res.partner,property_product_pricelist_purchase:0 -msgid "" -"This pricelist will be used, instead of the default one, for purchases from " -"the current partner" -msgstr "" -"Esta tarifa será utilizada en lugar de la por defecto para las compras de la " -"empresa actual" #. module: purchase #: report:purchase.order:0 -msgid "Fax :" -msgstr "Fax :" +msgid "Tel :" +msgstr "" #. module: purchase #: help:purchase.order,pricelist_id:0 @@ -235,646 +57,157 @@ msgid "" "The pricelist sets the currency used for this purchase order. It also " "computes the supplier price for the selected products/quantities." msgstr "" -"La tarifa fija la moneda utilizada en este pedido de compra. También calcula " -"el precio del proveedor para los productos/cantidades seleccionados." - -#. module: purchase -#: model:ir.model,name:purchase.model_stock_partial_picking -msgid "Partial Picking" -msgstr "Albarán parcial" - -#. module: purchase -#: code:addons/purchase/purchase.py:296 -#, python-format -msgid "Purchase order '%s' is confirmed." -msgstr "Pedido de compra '%s' está confirmado." - -#. module: purchase -#: view:purchase.order:0 -msgid "Approve Purchase" -msgstr "Aprovar compra" - -#. module: purchase -#: model:process.node,name:purchase.process_node_approvepurchaseorder0 -#: view:purchase.order:0 -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Approved" -msgstr "Aprobado" #. module: purchase #: view:purchase.report:0 -msgid "Reference UOM" -msgstr "Referencia UdM" - -#. module: purchase -#: view:purchase.order:0 -msgid "Origin" -msgstr "Origen" - -#. module: purchase -#: field:purchase.report,product_uom:0 -msgid "Reference UoM" -msgstr "Referencia UdM" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_purchase_line_product_tree -msgid "Purchases" -msgstr "Compras" - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order,notes:0 -#: view:purchase.order.line:0 -#: field:purchase.order.line,notes:0 -msgid "Notes" -msgstr "Notas" - -#. module: purchase -#: code:addons/purchase/purchase.py:660 -#, python-format -msgid "" -"You have to select a pricelist or a supplier in the purchase form !\n" -"Please set one before choosing a product." +#: field:purchase.report,day:0 +msgid "Day" msgstr "" -"¡Debe seleccionar una tarifa o un proveedor en el formulario de compra!\n" -"Indique uno antes de seleccionar un producto." #. module: purchase -#: selection:purchase.report,month:0 -msgid "September" -msgstr "Septiembre" +#: view:purchase.report:0 +msgid "Order of Day" +msgstr "" + +#. module: purchase +#: help:purchase.order,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_procurement_management_inventory +#: model:process.node,name:purchase.process_node_packinglist0 +#: model:process.node,name:purchase.process_node_productrecept0 +msgid "Incoming Products" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Reference" +msgstr "" + +#. module: purchase +#: field:purchase.order.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: purchase +#: help:purchase.order,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1024 +#, python-format +msgid "Configuration Error!" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:587 +#, python-format +msgid "You must first cancel all receptions related to this purchase order." +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_res_partner +#: field:purchase.order.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: purchase +#: field:purchase.report,negociation:0 +msgid "Purchase-Standard Price" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1011 +#, python-format +msgid "No supplier defined for this product !" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice +msgid "" +"

\n" +" Here you can track all the product receptions of purchase\n" +" orders where the invoicing is \"Based on Incoming " +"Shipments\",\n" +" and for which you have not received a supplier invoice yet.\n" +" You can generate a supplier invoice based on those " +"receptions.\n" +"

\n" +" " +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,price_average:0 +msgid "Average Price" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase order which are in the exception state" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_view_purchase_order_group +msgid "Merge Purchase orders" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,price_total:0 +msgid "Total Price" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +#: field:purchase.order,minimum_planned_date:0 +#: report:purchase.quotation:0 +#: field:purchase.report,expected_date:0 +msgid "Expected Date" +msgstr "" #. module: purchase #: report:purchase.order:0 -#: field:purchase.order,amount_tax:0 -#: view:purchase.order.line:0 -#: field:purchase.order.line,taxes_id:0 -msgid "Taxes" -msgstr "Impuestos" +msgid "Shipping address :" +msgstr "" #. module: purchase -#: model:ir.actions.report.xml,name:purchase.report_purchase_order -#: model:ir.model,name:purchase.model_purchase_order -#: model:process.node,name:purchase.process_node_purchaseorder0 -#: field:procurement.order,purchase_id:0 #: view:purchase.order:0 -#: model:res.request.link,name:purchase.req_link_purchase_order -#: field:stock.picking,purchase_id:0 -msgid "Purchase Order" -msgstr "Pedido de compra" +msgid "Confirm Order" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,module_warning:0 +msgid "Alerts by products or supplier" +msgstr "" #. module: purchase #: field:purchase.order,name:0 #: view:purchase.order.line:0 #: field:purchase.order.line,order_id:0 msgid "Order Reference" -msgstr "Referencia del pedido" - -#. module: purchase -#: report:purchase.order:0 -msgid "Net Total :" -msgstr "Total neto :" - -#. module: purchase -#: view:purchase.installer:0 -msgid "Configure Your Purchases Management Application" -msgstr "Configure su aplicación de gestión de compras" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_procurement_management_product -#: model:ir.ui.menu,name:purchase.menu_procurement_partner_contact_form -msgid "Products" -msgstr "Productos" - -#. module: purchase -#: field:purchase.installer,progress:0 -msgid "Configuration Progress" -msgstr "Progreso configuración" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_packinginvoice0 -msgid "" -"A Pick list generates an invoice. Depending on the Invoicing control of the " -"sale order, the invoice is based on delivered or on ordered quantities." msgstr "" -"Un albarán genera una factura. Según el control de facturación en el pedido " -"de venta, la factura se basa en las cantidades enviadas u ordenadas." #. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.order.line,state:0 -#: selection:purchase.report,state:0 -msgid "Cancelled" -msgstr "Cancelado" - -#. module: purchase -#: code:addons/purchase/purchase.py:315 -#, python-format -msgid "Purchase amount over the limit" -msgstr "Importe de compra por encima del límite" - -#. module: purchase -#: view:purchase.order:0 -msgid "Convert to Purchase Order" -msgstr "Convertir a pedido de compra" - -#. module: purchase -#: field:purchase.order,pricelist_id:0 -#: field:purchase.report,pricelist_id:0 -msgid "Pricelist" -msgstr "Tarifa" - -#. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Shipping Exception" -msgstr "Excepción de envío" - -#. module: purchase -#: field:purchase.order.line,invoice_lines:0 -msgid "Invoice Lines" -msgstr "Líneas de factura" - -#. module: purchase -#: model:process.node,name:purchase.process_node_packinglist0 -#: model:process.node,name:purchase.process_node_productrecept0 -msgid "Incoming Products" -msgstr "Productos entrantes" - -#. module: purchase -#: model:process.node,name:purchase.process_node_packinginvoice0 -msgid "Outgoing Products" -msgstr "Productos de salida" - -#. module: purchase -#: view:purchase.order:0 -msgid "Manually Corrected" -msgstr "Corregido manualmente" - -#. module: purchase -#: view:purchase.report:0 -msgid " Month " -msgstr " Mes " - -#. module: purchase -#: view:purchase.order:0 -msgid "Reference" -msgstr "Referencia" - -#. module: purchase -#: code:addons/purchase/purchase.py:244 -#, python-format -msgid "Cannot delete Purchase Order(s) which are in %s State!" -msgstr "¡No se pueden eliminar pedido(s) de compra que estén en estado %s!" - -#. module: purchase -#: field:purchase.report,dest_address_id:0 -msgid "Dest. Address Contact Name" -msgstr "Nombre contacto dirección dest." - -#. module: purchase -#: model:ir.model,name:purchase.model_stock_move -msgid "Stock Move" -msgstr "Moviemiento de stock" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,day:0 -msgid "Day" -msgstr "Día" - -#. module: purchase -#: code:addons/purchase/purchase.py:344 -#, python-format -msgid "Purchase order '%s' has been set in draft state." -msgstr "Pedido de compra '%s' se ha cambiado al estado borrador." - -#. module: purchase -#: field:purchase.order.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "Cuenta analítica" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,nbr:0 -msgid "# of Lines" -msgstr "Nº de líneas" - -#. module: purchase -#: code:addons/purchase/purchase.py:696 -#: code:addons/purchase/purchase.py:735 -#: code:addons/purchase/wizard/purchase_order_group.py:47 -#, python-format -msgid "Warning" -msgstr "Aviso" - -#. module: purchase -#: field:purchase.installer,purchase_analytic_plans:0 -msgid "Purchase Analytic Plans" -msgstr "Planes analíticos de compra" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_installer -msgid "purchase.installer" -msgstr "compra.instalador" - -#. module: purchase -#: selection:purchase.order.line,state:0 -msgid "Draft" -msgstr "Borrador" - -#. module: purchase -#: report:purchase.order:0 -msgid "Net Price" -msgstr "Precio neto" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "Order Line" -msgstr "Línea del pedido" - -#. module: purchase -#: help:purchase.order,shipped:0 -msgid "It indicates that a picking has been done" -msgstr "Indica que un albarán ha sido realizado." - -#. module: purchase -#: code:addons/purchase/purchase.py:721 -#, python-format -msgid "Wrong Product UOM !" -msgstr "¡UdM del producto errónea!" - -#. module: purchase -#: model:process.node,name:purchase.process_node_confirmpurchaseorder0 -#: selection:purchase.order.line,state:0 -msgid "Confirmed" -msgstr "Confirmado" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,price_average:0 -msgid "Average Price" -msgstr "Precio medio" - -#. module: purchase -#: report:purchase.order:0 -msgid "Total :" -msgstr "Total :" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 -#: view:purchase.order.line_invoice:0 -msgid "Confirm" -msgstr "Confirmar" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_procurement_management_invoice -#: view:purchase.order:0 -msgid "Invoice Control" -msgstr "Control factura" - -#. module: purchase -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "¡Error! No puede crear compañías recursivas." - -#. module: purchase -#: field:purchase.order,partner_ref:0 -msgid "Supplier Reference" -msgstr "Referencia proveedor" - -#. module: purchase -#: help:purchase.order,amount_tax:0 -msgid "The tax amount" -msgstr "El importe de los impuestos." - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_productrecept0 -msgid "" -"A Pick list generates a supplier invoice. Depending on the Invoicing control " -"of the purchase order, the invoice is based on received or on ordered " -"quantities." +#: view:purchase.config.settings:0 +msgid "Invoicing Process" msgstr "" -"Un albarán genera una factura de proveedor. Según el control de facturación " -"del pedido de compra, la factura se basa en las cantidades recibidas o " -"pedidas." - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order,state:0 -#: view:purchase.order.line:0 -#: field:purchase.order.line,state:0 -#: view:purchase.report:0 -msgid "State" -msgstr "Estado" - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.action_stock_move_report_po -msgid "" -"Reception Analysis allows you to easily check and analyse your company order " -"receptions and the performance of your supplier's deliveries." -msgstr "" -"El análisis de recepción permite comprobar y analizar fácilmente las " -"recepciones de su compañía y el rendimiento de las entregas de su proveedor." - -#. module: purchase -#: report:purchase.quotation:0 -msgid "Tel.:" -msgstr "Tel.:" - -#. module: purchase -#: model:ir.model,name:purchase.model_stock_picking -#: field:purchase.order,picking_ids:0 -msgid "Picking List" -msgstr "Albarán" - -#. module: purchase -#: view:purchase.order:0 -msgid "Print" -msgstr "Imprimir" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_view_purchase_order_group -msgid "Merge Purchase orders" -msgstr "Fusionar pedidos de compra" - -#. module: purchase -#: field:purchase.order,order_line:0 -msgid "Order Lines" -msgstr "Líneas del pedido" - -#. module: purchase -#: code:addons/purchase/purchase.py:662 -#, python-format -msgid "No Partner!" -msgstr "¡Falta empresa!" - -#. module: purchase -#: report:purchase.quotation:0 -msgid "Fax:" -msgstr "Fax:" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,price_total:0 -msgid "Total Price" -msgstr "Precio total" - -#. module: purchase -#: view:purchase.order:0 -msgid "Untaxed amount" -msgstr "Base imponible" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_product_pricelist_action2_purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_config_pricelist -msgid "Pricelists" -msgstr "Tarifas" - -#. module: purchase -#: field:purchase.report,partner_address_id:0 -msgid "Address Contact Name" -msgstr "Nombre contacto dirección" - -#. module: purchase -#: help:purchase.order,invoice_method:0 -msgid "" -"From Order: a draft invoice will be pre-generated based on the purchase " -"order. The accountant will just have to validate this invoice for control.\n" -"From Picking: a draft invoice will be pre-generated based on validated " -"receptions.\n" -"Manual: allows you to generate suppliers invoices by chosing in the " -"uninvoiced lines of all manual purchase orders." -msgstr "" -"Desde pedido: se generará una factura borrador basándose en los pedidos de " -"compra. El contable sólo tendrá que validar la factura para su control.\n" -"Desde albarán: se generará una factura borrador basándose en recepciones " -"validadas.\n" -"Manual: le permite generar facturas de proveedor eligiendo en las líneas no " -"facturadas de todos los pedidos de compra manuales." - -#. module: purchase -#: help:purchase.order,invoice_ids:0 -msgid "Invoices generated for a purchase order" -msgstr "Facturas generadas para un pedido de compra" - -#. module: purchase -#: code:addons/purchase/purchase.py:292 -#: code:addons/purchase/purchase.py:362 -#: code:addons/purchase/purchase.py:372 -#: code:addons/purchase/wizard/purchase_line_invoice.py:122 -#, python-format -msgid "Error !" -msgstr "¡Error!" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "General Information" -msgstr "Información general" - -#. module: purchase -#: view:board.board:0 -msgid "My Board" -msgstr "Mi tablero" - -#. module: purchase -#: report:purchase.order:0 -msgid "Purchase Order Confirmation N°" -msgstr "Confirmación pedido de compra Nº" - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.action_purchase_order_report_all -msgid "" -"Purchase Analysis allows you to easily check and analyse your company " -"purchase history and performance. From this menu you can track your " -"negotiation performance, the delivery performance of your suppliers, etc." -msgstr "" -"Los análisis de compra le permite comprobar y analizar fácilmente el " -"historial de compras de su compañía y su rendimiento. Desde este menú puede " -"controlar el rendimiento de su negociación, el funcionamiento de las " -"entregas de sus proveedores, etc." - -#. module: purchase -#: view:purchase.order:0 -msgid "Approved by Supplier" -msgstr "Aprobado por proveedor" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 -msgid "" -"The invoice is created automatically if the Invoice control of the purchase " -"order is 'On picking'. The invoice can also be generated manually by the " -"accountant (Invoice control = Manual)." -msgstr "" -"La factura se crea de forma automática si el control de factura del pedido " -"de compra es 'Desde albarán'. La factura también puede ser generada " -"manualmente por el contable (control de factura = Manual)." - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "From Order" -msgstr "Desde pedido" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_invoicefrompurchaseorder0 -msgid "Create invoice" -msgstr "Crear factura" - -#. module: purchase -#: field:purchase.order.line,move_dest_id:0 -msgid "Reservation Destination" -msgstr "Destinación de la reserva" - -#. module: purchase -#: code:addons/purchase/purchase.py:244 -#, python-format -msgid "Invalid action !" -msgstr "¡Acción no válida!" - -#. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.order.line,state:0 -#: selection:purchase.report,state:0 -msgid "Done" -msgstr "Realizado" - -#. module: purchase -#: selection:purchase.report,month:0 -msgid "July" -msgstr "Julio" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_config_purchase -#: view:res.company:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_purchase_by_supplier -#: view:purchase.report:0 -msgid "Purchase by supplier" -msgstr "Compra por proveedor" - -#. module: purchase -#: view:purchase.order:0 -msgid "Total amount" -msgstr "Importe total" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.act_purchase_order_2_stock_picking -msgid "Receptions" -msgstr "Recepciones" - -#. module: purchase -#: field:purchase.order,validator:0 -#: view:purchase.report:0 -msgid "Validated by" -msgstr "Validada por" - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.action_invoice_pending -msgid "" -"Use this menu to control the invoices to be received from your supplier. " -"OpenERP pregenerates draft invoices from your purchase orders or receptions, " -"according to your settings. Once you receive a supplier invoice, you can " -"match it with the draft invoice and validate it." -msgstr "" -"Use este menú para controlar las facturas a recibir de su proveedor. OpenERP " -"pregenera facturas borrador a partir de sus pedidos de compra o recepciones, " -"en función de los parámetros. En cuanto reciba la factura del proveedor, " -"puede verificarla con la factura borrador y validarla." - -#. module: purchase -#: model:process.node,name:purchase.process_node_draftpurchaseorder0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder1 -msgid "RFQ" -msgstr "Petición presupuesto" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_procurement_management_pending_invoice -msgid "Supplier Invoices to Receive" -msgstr "Facturas proveedor a recibir" - -#. module: purchase -#: help:purchase.installer,purchase_requisition:0 -msgid "" -"Manages your Purchase Requisition and allows you to easily keep track and " -"manage all your purchase orders." -msgstr "" -"Gestiona sus peticiones de compras y permite controlar y gestionar " -"fácilmente todos sus pedidos de compra." - -#. module: purchase -#: view:purchase.report:0 -msgid " Month-1 " -msgstr " Mes-1 " - -#. module: purchase -#: code:addons/purchase/purchase.py:373 -#, python-format -msgid "There is no purchase journal defined for this company: \"%s\" (id:%d)" -msgstr "No se ha definido un diario para esta compañía: \"%s\" (id:%d)" - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "Manual" -msgstr "Manual" - -#. module: purchase -#: code:addons/purchase/purchase.py:410 -#, python-format -msgid "You must first cancel all picking attached to this purchase order." -msgstr "" -"Debe primero cancelar todos los albaranes relacionados a este pedido de " -"compra." - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order.line,date_order:0 -#: field:purchase.report,date:0 -msgid "Order Date" -msgstr "Fecha pedido" - -#. module: purchase -#: model:process.node,note:purchase.process_node_productrecept0 -msgid "Incoming products to control" -msgstr "Productos de entrada a controlar" #. module: purchase #: model:process.transition,name:purchase.process_transition_approvingpurchaseorder0 msgid "Approbation" -msgstr "Aprobación" - -#. module: purchase -#: view:purchase.report:0 -msgid "Purchase Orders Statistics" -msgstr "Estadísticas pedidos de compra" - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.purchase_line_form_action2 -msgid "" -"If you set the invoicing control on a purchase order as \"Manual\", you can " -"track here all the purchase order lines for which you have not received the " -"supplier invoice yet. Once you are ready to receive a supplier invoice, you " -"can generate a draft supplier invoice based on the lines from this menu." msgstr "" -"Si establece el control de facturación de un pedido de compra a \"Manual\", " -"puede controlar aquí todas las líneas de los pedidos de compra para los " -"cuales no ha recibido todavía la factura de proveedor correspondiente. Una " -"vez esté listo para recibir una factura de proveedor, puede generar una " -"factura de proveedor en borrador basada en las lineas desde este menú." #. module: purchase -#: model:process.node,name:purchase.process_node_invoiceafterpacking0 -#: model:process.node,name:purchase.process_node_invoicecontrol0 -msgid "Draft Invoice" -msgstr "Factura borrador" - -#. module: purchase -#: help:purchase.installer,purchase_analytic_plans:0 -msgid "Manages analytic distribution and purchase orders." -msgstr "Gestiona distribución analítica y pedidos de compra." +#: help:purchase.config.settings,group_uom:0 +msgid "" +"Allows you to select and maintain different units of measure for products." +msgstr "" #. module: purchase #: help:purchase.order,minimum_planned_date:0 @@ -882,205 +215,38 @@ msgid "" "This is computed as the minimum scheduled date of all purchase order lines' " "products." msgstr "" -"Ésto se calcula como la mínima fecha planificada para todos los productos de " -"las líneas del pedido de compra." #. module: purchase -#: selection:purchase.report,month:0 -msgid "August" -msgstr "Agosto" +#: code:addons/purchase/purchase.py:260 +#, python-format +msgid "In order to delete a purchase order, you must cancel it first." +msgstr "" #. module: purchase -#: field:purchase.installer,purchase_requisition:0 -msgid "Purchase Requisition" -msgstr "Petición de compra" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action -msgid "Units of Measure Categories" -msgstr "Categorías de unidades de medida" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,delay_pass:0 -msgid "Days to Deliver" -msgstr "Días para entregar" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_action_picking_tree_in_move -#: model:ir.ui.menu,name:purchase.menu_procurement_management_inventory -msgid "Receive Products" -msgstr "Recibir productos" - -#. module: purchase -#: model:ir.model,name:purchase.model_procurement_order -msgid "Procurement" -msgstr "Abastecimiento" +#: view:product.product:0 +msgid "When you sell this product, OpenERP will trigger" +msgstr "" #. module: purchase #: view:purchase.order:0 -#: field:purchase.order,invoice_ids:0 -msgid "Invoices" -msgstr "Facturas" +msgid "Approved purchase orders" +msgstr "" #. module: purchase -#: model:process.node,note:purchase.process_node_purchaseorder0 -msgid "Confirmed purchase order to invoice" -msgstr "Pedido de compra confirmado para facturar" - -#. module: purchase -#: field:purchase.installer,config_logo:0 -msgid "Image" -msgstr "Imagen" - -#. module: purchase -#: view:purchase.report:0 -msgid "Total Orders Lines by User per month" -msgstr "Total líneas pedidos por usuario por mes" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,month:0 -msgid "Month" -msgstr "Mes" - -#. module: purchase -#: selection:purchase.report,state:0 -msgid "Waiting Supplier Ack" -msgstr "Esperando aceptación proveedor" - -#. module: purchase -#: report:purchase.quotation:0 -msgid "Request for Quotation :" -msgstr "Presupuesto solicitado:" - -#. module: purchase -#: view:board.board:0 -#: model:ir.actions.act_window,name:purchase.purchase_waiting -msgid "Purchase Order Waiting Approval" -msgstr "Pedido de compra esperando aprobación" +#: model:email.template,subject:purchase.email_template_edi_purchase +msgid "${object.company_id.name} Order (Ref ${object.name or 'n/a' })" +msgstr "" #. module: purchase #: view:purchase.order:0 msgid "Total Untaxed amount" -msgstr "Total importe base" - -#. module: purchase -#: field:purchase.order,shipped:0 -#: field:purchase.order,shipped_rate:0 -msgid "Received" -msgstr "Recibido" - -#. module: purchase -#: model:process.node,note:purchase.process_node_packinglist0 -msgid "List of ordered products." -msgstr "Lista de productos solicitados." - -#. module: purchase -#: help:purchase.order,picking_ids:0 -msgid "" -"This is the list of picking list that have been generated for this purchase" -msgstr "Ésta es la lista de albaranes generados por esta compra" - -#. module: purchase -#: model:ir.module.module,shortdesc:purchase.module_meta_information -#: model:ir.ui.menu,name:purchase.menu_procurement_management -msgid "Purchase Management" -msgstr "Compras" - -#. module: purchase -#: model:process.node,note:purchase.process_node_invoiceafterpacking0 -#: model:process.node,note:purchase.process_node_invoicecontrol0 -msgid "To be reviewed by the accountant." -msgstr "Para ser revisado por el contable." - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_line_form_action2 -#: model:ir.ui.menu,name:purchase.menu_purchase_line_order_draft -msgid "On Purchase Order Line" msgstr "" -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_picking_tree4_picking_to_invoice -#: model:ir.ui.menu,name:purchase.action_picking_tree4_picking_to_invoice -msgid "On Receptions" -msgstr "" - -#. module: purchase -#: report:purchase.order:0 -msgid "Taxes :" -msgstr "Impuestos :" - -#. module: purchase -#: field:purchase.order,invoiced_rate:0 -#: field:purchase.order.line,invoiced:0 -msgid "Invoiced" -msgstr "Facturado" - #. module: purchase #: view:purchase.report:0 #: field:purchase.report,category_id:0 msgid "Category" -msgstr "Categoría" - -#. module: purchase -#: model:process.node,note:purchase.process_node_approvepurchaseorder0 -#: model:process.node,note:purchase.process_node_confirmpurchaseorder0 -msgid "State of the Purchase Order." -msgstr "Estado del pedido de compra." - -#. module: purchase -#: view:purchase.report:0 -msgid " Year " -msgstr " Año " - -#. module: purchase -#: field:purchase.report,state:0 -msgid "Order State" -msgstr "Estado del pedido" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_view_purchase_line_invoice -msgid "Create invoices" -msgstr "Crear facturas" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_order_line -#: view:purchase.order.line:0 -#: field:stock.move,purchase_line_id:0 -msgid "Purchase Order Line" -msgstr "Línea pedido de compra" - -#. module: purchase -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "¡Error! No puede crear miembros asociados recursivos." - -#. module: purchase -#: view:purchase.order:0 -msgid "Calendar View" -msgstr "Vista calendario" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_order_group -msgid "Purchase Order Merge" -msgstr "Fusión pedido compra" - -#. module: purchase -#: report:purchase.quotation:0 -msgid "Regards," -msgstr "Recuerdos," - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_negotiation_by_supplier -#: view:purchase.report:0 -msgid "Negotiation by Supplier" -msgstr "Negociación por el proveedor" - -#. module: purchase -#: view:res.partner:0 -msgid "Purchase Properties" -msgstr "Propiedades de compra" +msgstr "" #. module: purchase #: model:process.transition,note:purchase.process_transition_purchaseinvoice0 @@ -1089,541 +255,786 @@ msgid "" "the buyer. Depending on the Invoicing control of the purchase order, the " "invoice is based on received or on ordered quantities." msgstr "" -"Un pedido de compra genera una factura de proveedor, tan pronto como la " -"confirme el comprador. En función del control de facturación del pedido de " -"compra, la factura se basa en las cantidades recibidas u ordenadas." #. module: purchase -#: field:purchase.order,amount_untaxed:0 -msgid "Untaxed Amount" -msgstr "Base imponible" - -#. module: purchase -#: help:purchase.order,invoiced:0 -msgid "It indicates that an invoice has been paid" -msgstr "Indica que una factura ha sido pagada." - -#. module: purchase -#: model:process.node,note:purchase.process_node_packinginvoice0 -msgid "Outgoing products to invoice" -msgstr "Productos salientes a facturar" - -#. module: purchase -#: view:purchase.installer:0 -msgid "Configure" -msgstr "Configurar" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_qty_per_product +#: view:purchase.order:0 +#: field:purchase.order,state:0 +#: view:purchase.order.line:0 +#: field:purchase.order.line,state:0 #: view:purchase.report:0 -msgid "Qty. per product" -msgstr "Ctdad por producto" +msgid "Status" +msgstr "" #. module: purchase -#: constraint:stock.move:0 -msgid "You try to assign a lot which is not from the same product" -msgstr "Está intentando asignar un lote que no es del mismo producto" +#: selection:purchase.report,month:0 +msgid "August" +msgstr "" #. module: purchase -#: help:purchase.order,date_order:0 -msgid "Date on which this document has been created." -msgstr "Fecha de la creación de este documento." - -#. module: purchase -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "Ventas y Compras" +#: view:product.product:0 +msgid "to" +msgstr "" #. module: purchase #: selection:purchase.report,month:0 msgid "June" -msgstr "Junio" +msgstr "" #. module: purchase #: model:ir.model,name:purchase.model_purchase_report msgid "Purchases Orders" -msgstr "Pedidos de compras" +msgstr "" #. module: purchase -#: view:purchase.order.line:0 -msgid "Manual Invoices" -msgstr "Facturas manuales" +#: help:account.config.settings,group_analytic_account_for_purchases:0 +#: help:purchase.config.settings,group_analytic_account_for_purchases:0 +msgid "Allows you to specify an analytic account on purchase orders." +msgstr "" #. module: purchase -#: code:addons/purchase/purchase.py:318 -#, python-format +#: model:ir.actions.act_window,help:purchase.action_invoice_pending msgid "" -"Somebody has just confirmed a purchase with an amount over the defined limit" +"

\n" +" Click to create a draft invoice.\n" +"

\n" +" Use this menu to control the invoices to be received from your\n" +" supplier. OpenERP generates draft invoices from your purchase\n" +" orders or receptions, according to your settings.\n" +"

\n" +" Once you receive a supplier invoice, you can match it with the\n" +" draft invoice and validate it.\n" +"

\n" +" " msgstr "" -"Alguien ha confirmado un pedido con un importe por encima del límite definido" - -#. module: purchase -#: selection:purchase.report,month:0 -msgid "November" -msgstr "Noviembre" - -#. module: purchase -#: view:purchase.report:0 -msgid "Extended Filters..." -msgstr "Filtros extendidos..." - -#. module: purchase -#: code:addons/purchase/purchase.py:362 -#: code:addons/purchase/wizard/purchase_line_invoice.py:123 -#, python-format -msgid "There is no expense account defined for this product: \"%s\" (id:%d)" -msgstr "" -"No se ha definido una cuenta de gastos para este producto: \"%s\" (id:%d)" - -#. module: purchase -#: code:addons/purchase/purchase.py:418 -#, python-format -msgid "You must first cancel all invoices attached to this purchase order." -msgstr "" -"Primero debe cancelar todas las facturas asociadas a este pedido de compra." - -#. module: purchase -#: code:addons/purchase/wizard/purchase_order_group.py:48 -#, python-format -msgid "Please select multiple order to merge in the list view." -msgstr "Seleccione múltiples pedidos a fusionar en la vista listado." - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_createpackinglist0 -msgid "Pick list generated" -msgstr "Albarán generado" - -#. module: purchase -#: view:purchase.order:0 -msgid "Exception" -msgstr "Excepción" #. module: purchase #: selection:purchase.report,month:0 msgid "October" -msgstr "Octubre" - -#. module: purchase -#: view:purchase.order:0 -msgid "Compute" -msgstr "Calcular" - -#. module: purchase -#: model:ir.module.module,description:purchase.module_meta_information -msgid "" -"\n" -" Purchase module is for generating a purchase order for purchase of goods " -"from a supplier.\n" -" A supplier invoice is created for the particular order placed\n" -" Dashboard for purchase management that includes:\n" -" * Current Purchase Orders\n" -" * Draft Purchase Orders\n" -" * Graph for quantity and amount per month \n" -"\n" -" " msgstr "" -"\n" -" El módulo de compras permite generar pedidos de compra para adquirir " -"bienes de un proveedor.\n" -" Se crea una factura de proveedor para un pedido en concreto.\n" -" El tablero para la gestión de compras incluye:\n" -" * Pedidos actuales de compra.\n" -" * Pedidos de compra en borrador.\n" -" * Gráfico de cantidad e importe por mes. \n" -"\n" -" " #. module: purchase -#: code:addons/purchase/purchase.py:696 +#: code:addons/purchase/purchase.py:1024 #, python-format msgid "" -"The selected supplier has a minimal quantity set to %s, you cannot purchase " -"less." +"The product \"%s\" has been defined with your company as reseller which " +"seems to be a configuration error!" msgstr "" -"El proveedor seleccionado tiene establecida una cantidad mínima a %s, no " -"puede comprar menos." #. module: purchase -#: selection:purchase.report,month:0 -msgid "January" -msgstr "Enero" - -#. module: purchase -#: model:ir.model,name:purchase.model_res_company -msgid "Companies" -msgstr "Compañías" - -#. module: purchase -#: view:purchase.order:0 -msgid "Cancel Purchase Order" -msgstr "Cancelar pedido de compra" - -#. module: purchase -#: constraint:stock.move:0 -msgid "You must assign a production lot for this product" -msgstr "Debe asignar un lote de producción para este producto" +#: view:product.product:0 +msgid "When you sell this service to a customer," +msgstr "" #. module: purchase #: model:process.transition,note:purchase.process_transition_createpackinglist0 msgid "A pick list is generated to track the incoming products." -msgstr "Se genera un albarán para el seguimiento de los productos entrantes." - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_deshboard -msgid "Dashboard" -msgstr "Tablero" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,price_standard:0 -msgid "Products Value" -msgstr "Valor productos" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_product_pricelist_type -msgid "Pricelists Types" -msgstr "Tipos de tarifas" - -#. module: purchase -#: view:purchase.order:0 -#: view:purchase.report:0 -msgid "Quotations" -msgstr "Presupuestos" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_po_per_month_tree -#: view:purchase.report:0 -msgid "Purchase order per month" -msgstr "Pedido de compra por mes" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "History" -msgstr "Historia" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_product_by_category_purchase_form -msgid "Products by Category" -msgstr "Productos por categoría" - -#. module: purchase -#: view:purchase.report:0 -#: field:purchase.report,delay:0 -msgid "Days to Validate" -msgstr "Días a validar" - -#. module: purchase -#: help:purchase.order,origin:0 -msgid "Reference of the document that generated this purchase order request." msgstr "" -"Referencia al documento que ha generado esta solicitud de pedido de compra." - -#. module: purchase -#: help:purchase.order,state:0 -msgid "" -"The state of the purchase order or the quotation request. A quotation is a " -"purchase order in a 'Draft' state. Then the order has to be confirmed by the " -"user, the state switch to 'Confirmed'. Then the supplier must confirm the " -"order to change the state to 'Approved'. When the purchase order is paid and " -"received, the state becomes 'Done'. If a cancel action occurs in the invoice " -"or in the reception of goods, the state becomes in exception." -msgstr "" -"El estado del pedido de compra o de la solicitud de presupuesto. Un " -"presupuesto es un pedido de compra en estado 'Borrador'. Entonces, si el " -"pedido es confirmado por el usuario, el estado cambiará a 'Confirmado'. " -"Entonces el proveedor debe confirmar el pedido para cambiar el estado a " -"'Aprobado'. Cuando el pedido de compra está pagado y recibido, el estado se " -"convierte en 'Relizado'. Si una acción de cancelación ocurre en la factura o " -"en la recepción de mercancías, el estado se convierte en 'Excepción'." - -#. module: purchase -#: field:purchase.order.line,price_subtotal:0 -msgid "Subtotal" -msgstr "Subtotal" #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_rfq #: model:ir.ui.menu,name:purchase.menu_purchase_rfq -msgid "Requests for Quotation" -msgstr "Solicitudes de presupuesto" - -#. module: purchase -#: help:purchase.order,date_approve:0 -msgid "Date on which purchase order has been approved" -msgstr "Fecha en que el pedido de compra ha sido aprobado." - -#. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Waiting" -msgstr "En espera" - -#. module: purchase -#: model:product.pricelist.version,name:purchase.ver0 -msgid "Default Purchase Pricelist Version" -msgstr "Versión tarifa de compra por defecto" - -#. module: purchase -#: view:purchase.installer:0 -msgid "" -"Extend your Purchases Management Application with additional functionalities." +#: view:purchase.order:0 +#: view:purchase.report:0 +msgid "Quotations" msgstr "" -"Extienda su aplicación de gestión de compras con funcionalidades adicionales." #. module: purchase -#: model:ir.actions.act_window,name:purchase.action_purchase_install_module -#: view:purchase.installer:0 -msgid "Purchases Application Configuration" -msgstr "Configuración aplicación compras" +#: view:purchase.order.line_invoice:0 +msgid "Do you want to generate the supplier invoices?" +msgstr "" + +#. module: purchase +#: field:purchase.order.line,product_qty:0 +#: view:purchase.report:0 +#: field:purchase.report,quantity:0 +msgid "Quantity" +msgstr "" #. module: purchase #: field:purchase.order,fiscal_position:0 msgid "Fiscal Position" -msgstr "Posición fiscal" +msgstr "" #. module: purchase -#: report:purchase.order:0 -msgid "Request for Quotation N°" -msgstr "Petición de presupuesto Nº" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_invoicefrompackinglist0 -#: model:process.transition,name:purchase.process_transition_invoicefrompurchase0 -msgid "Invoice" -msgstr "Factura" - -#. module: purchase -#: selection:purchase.report,month:0 -msgid "December" -msgstr "Diciembre" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_approvingcancelpurchaseorder0 -#: model:process.transition.action,name:purchase.process_transition_action_cancelpurchaseorder0 -#: view:purchase.order:0 -#: view:purchase.order.group:0 -#: view:purchase.order.line_invoice:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: purchase -#: view:purchase.order:0 -#: view:purchase.order.line:0 -msgid "Purchase Order Lines" -msgstr "Líneas pedido de compra" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_approvingpurchaseorder0 -msgid "The supplier approves the Purchase Order." -msgstr "El proveedor aprueba el pedido de compra." - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.act_res_partner_2_purchase_order -#: model:ir.actions.act_window,name:purchase.purchase_form_action -#: model:ir.ui.menu,name:purchase.menu_purchase_form_action -#: view:purchase.report:0 -msgid "Purchase Orders" -msgstr "Pedidos de compra" - -#. module: purchase -#: field:purchase.order,origin:0 -msgid "Source Document" -msgstr "Documento origen" - -#. module: purchase -#: view:purchase.order.group:0 -msgid "Merge orders" -msgstr "Fusionar pedidos" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_order_line_invoice -msgid "Purchase Order Line Make Invoice" -msgstr "Línea pedido de compra realiza factura" +#: field:purchase.config.settings,default_invoice_method:0 +msgid "Default invoicing control method" +msgstr "" #. module: purchase +#: model:ir.model,name:purchase.model_stock_picking_in #: model:ir.ui.menu,name:purchase.menu_action_picking_tree4 +#: view:purchase.order:0 msgid "Incoming Shipments" -msgstr "Albaranes de entrada" +msgstr "" #. module: purchase -#: model:ir.actions.act_window,name:purchase.action_purchase_order_by_user_all -msgid "Total Orders by User per month" -msgstr "Total pedidos por usuario mensual" - -#. module: purchase -#: model:ir.actions.report.xml,name:purchase.report_purchase_quotation -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Request for Quotation" -msgstr "Solicitud de presupuesto" - -#. module: purchase -#: report:purchase.order:0 -msgid "Tél. :" -msgstr "Tel. :" - -#. module: purchase -#: field:purchase.order,create_uid:0 -#: view:purchase.report:0 -#: field:purchase.report,user_id:0 -msgid "Responsible" -msgstr "Responsable" - -#. module: purchase -#: report:purchase.order:0 -msgid "Our Order Reference" -msgstr "Nuestra referencia" +#: model:ir.actions.act_window,help:purchase.act_res_partner_2_supplier_invoices +msgid "" +"

\n" +" Click here to record a supplier invoice.\n" +"

\n" +" Supplier invoices can be pre-generated based on " +"purchase\n" +" orders or receptions. This allows you to control " +"invoices\n" +" you receive from your supplier according to the draft\n" +" document in OpenERP.\n" +"

\n" +" " +msgstr "" #. module: purchase #: view:purchase.order:0 #: view:purchase.order.line:0 msgid "Search Purchase Order" -msgstr "Buscar pedido de compra" - -#. module: purchase -#: field:purchase.order,warehouse_id:0 -#: view:purchase.report:0 -#: field:purchase.report,warehouse_id:0 -msgid "Warehouse" -msgstr "Almacén" - -#. module: purchase -#: model:process.node,note:purchase.process_node_draftpurchaseorder0 -#: model:process.node,note:purchase.process_node_draftpurchaseorder1 -msgid "Request for Quotations." -msgstr "Solicitud de presupuesto" +msgstr "" #. module: purchase #: report:purchase.order:0 msgid "Date Req." -msgstr "Fecha solicitud" - -#. module: purchase -#: field:purchase.order,date_approve:0 -#: field:purchase.report,date_approve:0 -msgid "Date Approved" -msgstr "Fecha aprobación" - -#. module: purchase -#: code:addons/purchase/purchase.py:417 -#, python-format -msgid "Could not cancel this purchase order !" -msgstr "¡No se puede cancelar este pedido de compra!" - -#. module: purchase -#: report:purchase.order:0 -#: field:purchase.order.line,price_unit:0 -msgid "Unit Price" -msgstr "Precio unidad" +msgstr "" #. module: purchase #: view:purchase.order:0 -msgid "Delivery & Invoicing" -msgstr "Envío y Facturación" +#: view:purchase.order.line:0 +msgid "Purchase Order Lines" +msgstr "" + +#. module: purchase +#: help:purchase.order,dest_address_id:0 +msgid "" +"Put an address if you want to deliver directly from the supplier to the " +"customer. Otherwise, keep empty to deliver to your own company." +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.purchase_line_form_action2 +msgid "" +"

\n" +" Here you can track all the lines of purchase orders where " +"the\n" +" invoicing is \"Based on Purchase Order Lines\", and for " +"which you\n" +" have not received a supplier invoice yet. You can generate " +"a\n" +" draft supplier invoice based on the lines from this list.\n" +"

\n" +" " +msgstr "" #. module: purchase #: field:purchase.order.line,date_planned:0 msgid "Scheduled Date" -msgstr "Fecha planificada" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_product_in_config_purchase -#: field:purchase.order,product_id:0 -#: view:purchase.order.line:0 -#: field:purchase.order.line,product_id:0 -#: view:purchase.report:0 -#: field:purchase.report,product_id:0 -msgid "Product" -msgstr "Producto" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder0 -#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder1 -msgid "Confirmation" -msgstr "Confirmación" - -#. module: purchase -#: report:purchase.order:0 -#: field:purchase.order.line,name:0 -#: report:purchase.quotation:0 -msgid "Description" -msgstr "Descripción" - -#. module: purchase -#: help:res.company,po_lead:0 -msgid "This is the leads/security time for each purchase order." -msgstr "Este es el plazo de tiempo de seguridad para cada pedido de compra." - -#. module: purchase -#: report:purchase.quotation:0 -msgid "Expected Delivery address:" -msgstr "Dirección de entrega prevista:" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_stock_move_report_po -#: model:ir.ui.menu,name:purchase.menu_action_stock_move_report_po -msgid "Receptions Analysis" -msgstr "Análisis recepciones" - -#. module: purchase -#: help:purchase.order,amount_untaxed:0 -msgid "The amount without tax" -msgstr "El importe sin impuestos." - -#. module: purchase -#: model:ir.actions.act_window,help:purchase.action_supplier_address_form -msgid "" -"Access your supplier records and maintain a good relationship with your " -"suppliers. You can track all your interactions with them through the History " -"tab: emails, orders, meetings, etc." msgstr "" -"Acceda a los registros de sus proveedores y mantenga una buena relación con " -"ellos. Puede mantener el registro de todas sus interacciones con ellos " -"gracias a la pestaña histórico: emails, reuniones, etc." #. module: purchase -#: view:purchase.order:0 -msgid "Delivery" -msgstr "Entrega" +#: field:purchase.order,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: purchase +#: field:purchase.order,journal_id:0 +msgid "Journal" +msgstr "" #. module: purchase #: view:board.board:0 #: model:ir.actions.act_window,name:purchase.purchase_draft msgid "Request for Quotations" -msgstr "Solicitud de presupuestos" - -#. module: purchase -#: field:purchase.order.line,product_uom:0 -msgid "Product UOM" -msgstr "UdM del producto" - -#. module: purchase -#: report:purchase.order:0 -#: report:purchase.quotation:0 -msgid "Qty" -msgstr "Ctdad" - -#. module: purchase -#: field:purchase.order,partner_address_id:0 -msgid "Address" -msgstr "Dirección" +msgstr "" #. module: purchase #: field:purchase.order.line,move_ids:0 msgid "Reservation" -msgstr "Reserva" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase orders that include lines not invoiced." +msgstr "" + +#. module: purchase +#: view:product.product:0 +#: field:product.template,purchase_ok:0 +msgid "Can be Purchased" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_action_picking_tree_in_move +msgid "Incoming Products" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Request for Quotation " +msgstr "" + +#. module: purchase +#: help:purchase.order,partner_ref:0 +msgid "" +"Reference of the sales order or quotation sent by your supplier. It's mainly " +"used to do the matching when you receive the products as this reference is " +"usually written on the delivery order sent by your supplier." +msgstr "" + +#. module: purchase +#: view:purchase.config.settings:0 +#: view:purchase.order.group:0 +#: view:purchase.order.line_invoice:0 +msgid "or" +msgstr "" + +#. module: purchase +#: field:res.company,po_lead:0 +msgid "Purchase Lead Time" +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_invoicefrompurchase0 +msgid "" +"The invoice is created automatically if the Invoice control of the purchase " +"order is 'On order'. The invoice can also be generated manually by the " +"accountant (Invoice control = Manual)." +msgstr "" + +#. module: purchase +#: model:mail.message.subtype,name:purchase.mt_rfq_approved +msgid "RFQ Approved" +msgstr "" + +#. module: purchase +#: view:purchase.config.settings:0 +msgid "Apply" +msgstr "" + +#. module: purchase +#: field:purchase.order,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0 +msgid "" +"The buyer has to approve the RFQ before being sent to the supplier. The RFQ " +"becomes a confirmed Purchase Order." +msgstr "" + +#. module: purchase +#: model:mail.message.subtype,name:purchase.mt_rfq_confirmed +msgid "RFQ Confirmed" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Customer Address" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +msgid "RFQ Sent" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Not Invoiced" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +#: field:purchase.order,partner_id:0 +#: view:purchase.order.line:0 +#: view:purchase.report:0 +#: field:purchase.report,partner_id:0 +msgid "Supplier" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:525 +#, python-format +msgid "Define expense account for this company: \"%s\" (id:%d)." +msgstr "" + +#. module: purchase +#: model:process.transition,name:purchase.process_transition_packinginvoice0 +#: model:process.transition,name:purchase.process_transition_productrecept0 +msgid "From a Pick list" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_purchase_order_monthly_categ_graph +#: view:purchase.report:0 +msgid "Monthly Purchase by Category" +msgstr "" + +#. module: purchase +#: field:purchase.order.line,price_subtotal:0 +msgid "Subtotal" +msgstr "" + +#. module: purchase +#: field:purchase.order,shipped:0 +msgid "Received" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase order which are in draft state" +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "Suppliers" +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "To Purchase" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.purchase_form_action +msgid "" +"

\n" +" Click to create a quotation that will be converted into a " +"purchase order. \n" +"

\n" +" Use this menu to search within your purchase orders by\n" +" references, supplier, products, etc. For each purchase " +"order,\n" +" you can track the related discussion with the supplier, " +"control\n" +" the products received and control the supplier invoices.\n" +"

\n" +" " +msgstr "" + +#. module: purchase +#: view:purchase.order.line:0 +msgid "Invoices and Receptions" +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_packinginvoice0 +msgid "" +"A Pick list generates an invoice. Depending on the Invoicing control of the " +"sales order, the invoice is based on delivered or on ordered quantities." +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,nbr:0 +msgid "# of Lines" +msgstr "" + +#. module: purchase +#: code:addons/purchase/wizard/purchase_line_invoice.py:106 +#, python-format +msgid "Define expense account for this product: \"%s\" (id:%d)." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "(update)" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Calendar View" +msgstr "" + +#. module: purchase +#: help:purchase.order,shipped:0 +msgid "It indicates that a picking has been done" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:579 +#: code:addons/purchase/purchase.py:586 +#, python-format +msgid "Unable to cancel this purchase order." +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_procurement_management_invoice +msgid "Invoice Control" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.action_stock_move_report_po +msgid "" +"Reception Analysis allows you to easily check and analyse your company order " +"receptions and the performance of your supplier's deliveries." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Print" +msgstr "" + +#. module: purchase +#: field:purchase.order,order_line:0 +msgid "Order Lines" +msgstr "" + +#. module: purchase +#: help:purchase.order,name:0 +msgid "" +"Unique number of the purchase order, computed automatically when the " +"purchase order is created." +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_product_pricelist_action2_purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_config_pricelist +msgid "Pricelists" +msgstr "" + +#. module: purchase +#: model:product.pricelist.type,name:purchase.pricelist_type_purchase +#: field:res.partner,property_product_pricelist_purchase:0 +msgid "Purchase Pricelist" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Total :" +msgstr "" + +#. module: purchase +#: field:purchase.order,pricelist_id:0 +#: field:purchase.report,pricelist_id:0 +msgid "Pricelist" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +msgid "Draft PO" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:941 +#: code:addons/purchase/purchase.py:956 +#: code:addons/purchase/purchase.py:960 +#: code:addons/purchase/wizard/purchase_order_group.py:47 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: purchase +#: model:process.node,name:purchase.process_node_draftpurchaseorder0 +#: model:process.node,name:purchase.process_node_draftpurchaseorder1 +msgid "RFQ" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: view:purchase.order:0 +#: field:purchase.order,date_order:0 +#: field:purchase.order.line,date_order:0 +#: field:purchase.report,date:0 +msgid "Order Date" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,group_uom:0 +msgid "Manage different units of measure for products" +msgstr "" + +#. module: purchase +#: model:process.node,name:purchase.process_node_invoiceafterpacking0 +#: model:process.node,name:purchase.process_node_invoicecontrol0 +msgid "Draft Invoice" +msgstr "" + +#. module: purchase +#: help:purchase.order,amount_tax:0 +msgid "The tax amount" +msgstr "" + +#. module: purchase +#: field:purchase.order,shipped_rate:0 +msgid "Received Ratio" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "September" +msgstr "" + +#. module: purchase +#: selection:purchase.report,state:0 +msgid "Waiting Supplier Ack" +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "Request for Quotation :" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_picking_tree4_picking_to_invoice +#: model:ir.ui.menu,name:purchase.menu_action_picking_tree4_picking_to_invoice +msgid "On Incoming Shipments" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Taxes :" +msgstr "" + +#. module: purchase +#: view:purchase.order.line:0 +msgid "Stock Moves" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1156 +#, python-format +msgid "Draft Purchase Order created" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase +msgid "Product Categories" +msgstr "" + +#. module: purchase +#: help:purchase.order,invoiced:0 +msgid "It indicates that an invoice has been paid" +msgstr "" + +#. module: purchase +#: field:purchase.order,notes:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: purchase +#: help:purchase.order,date_order:0 +msgid "Date on which this document has been created." +msgstr "" + +#. module: purchase +#: field:purchase.order,message_is_follower:0 +msgid "Is a Follower" +msgstr "" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_order_report_graph #: view:purchase.report:0 msgid "Total Qty and Amount by month" -msgstr "Ctdad total y importe por mes" +msgstr "" #. module: purchase -#: code:addons/purchase/purchase.py:409 +#: view:purchase.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: purchase +#: code:addons/purchase/wizard/purchase_order_group.py:48 #, python-format -msgid "Could not cancel purchase order !" -msgstr "¡No se puede cancelar el pedido de compra!" +msgid "Please select multiple order to merge in the list view." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Exception" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_partner_cat +msgid "Address Book" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_res_company +msgid "Companies" +msgstr "" + +#. module: purchase +#: view:purchase.order.group:0 +msgid "Are you sure you want to merge these orders?" +msgstr "" + +#. module: purchase +#: field:account.config.settings,module_purchase_analytic_plans:0 +msgid "Use multiple analytic accounts on orders" +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "will be created in order to subcontract the job" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_purchase_line_product_tree +#: model:ir.actions.act_window,name:purchase.open_board_purchase +#: model:ir.ui.menu,name:purchase.menu_board_purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_config +#: view:res.partner:0 +msgid "Purchases" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,delay:0 +msgid "Days to Validate" +msgstr "" + +#. module: purchase +#: view:purchase.config.settings:0 +msgid "Supplier Features" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: report:purchase.quotation:0 +msgid "Qty" +msgstr "" + +#. module: purchase +#: model:process.transition.action,name:purchase.process_transition_action_approvingcancelpurchaseorder0 +#: model:process.transition.action,name:purchase.process_transition_action_cancelpurchaseorder0 +#: view:purchase.config.settings:0 +#: view:purchase.order:0 +#: view:purchase.order.group:0 +#: view:purchase.order.line_invoice:0 +msgid "Cancel" +msgstr "" + +#. module: purchase +#: sql_constraint:purchase.order:0 +msgid "Order Reference must be unique per Company!" +msgstr "" + +#. module: purchase +#: model:process.transition,name:purchase.process_transition_purchaseinvoice0 +msgid "From a purchase order" +msgstr "" + +#. module: purchase +#: model:ir.actions.report.xml,name:purchase.report_purchase_quotation +#: selection:purchase.report,state:0 +msgid "Request for Quotation" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +msgid "Order of Month" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: field:purchase.order.line,price_unit:0 +msgid "Unit Price" +msgstr "" + +#. module: purchase +#: field:purchase.order,date_approve:0 +#: field:purchase.report,date_approve:0 +msgid "Date Approved" +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "a draft purchase order" +msgstr "" + +#. module: purchase +#: model:email.template,body_html:purchase.email_template_edi_purchase +msgid "" +"\n" +"
\n" +"\n" +"

Hello$ ${object.partner_id.name},

\n" +" \n" +"

Here is a ${object.state in ('draft', 'sent') and 'request for " +"quotation' or 'purchase order confirmation'} from ${object.company_id.name}: " +"

\n" +" \n" +"

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

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

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

\n" +"

Thank you!

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

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

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

\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +msgid "Order of Year" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.act_res_partner_2_purchase_order +msgid "RFQs and Purchases" +msgstr "" + +#. module: purchase +#: field:account.config.settings,group_analytic_account_for_purchases:0 +#: field:purchase.config.settings,group_analytic_account_for_purchases:0 +msgid "Analytic accounting for purchases" +msgstr "" #. module: purchase #: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder1 @@ -1631,75 +1042,1091 @@ msgid "" "In case there is no supplier for this product, the buyer can fill the form " "manually and confirm it. The RFQ becomes a confirmed Purchase Order." msgstr "" -"En caso de que no exista ningún proveedor de este producto, el comprador " -"puede rellenar el formulario manualmente y confirmarlo. La solicitud de " -"presupuesto se convierte en un pedido de compra confirmado." + +#. module: purchase +#: help:purchase.config.settings,group_purchase_pricelist:0 +msgid "" +"Allows to manage different prices based on rules per category of Supplier.\n" +" Example: 10% for retailers, promotion of 5 EUR on this " +"product, etc." +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:456 +#, python-format +msgid "You cannot confirm a purchase order without any purchase order line." +msgstr "" + +#. module: purchase +#: help:purchase.order,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: purchase +#: field:purchase.order,warehouse_id:0 +#: field:stock.picking.in,warehouse_id:0 +msgid "Destination Warehouse" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:941 +#, python-format +msgid "" +"Selected Unit of Measure does not belong to the same category as the product " +"Unit of Measure." +msgstr "" + +#. module: purchase +#: view:purchase.order.line_invoice:0 +msgid "Select an Open Sales Order" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_uom_form_action +msgid "Units of Measure" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,group_purchase_pricelist:0 +msgid "Manage pricelist per supplier" +msgstr "" + +#. module: purchase +#: view:board.board:0 +msgid "Purchase Dashboard" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:580 +#, python-format +msgid "First cancel all receptions related to this purchase order." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Approve Order" +msgstr "" + +#. module: purchase +#: help:purchase.report,date:0 +msgid "Date on which this document has been created" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +#: view:purchase.order.line:0 +#: view:purchase.report:0 +msgid "Group By..." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Approved purchase order" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +msgid "Purchase Orders Statistics" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +#: field:purchase.order,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action +msgid "Unit of Measure Categories" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Set to Draft" +msgstr "" + +#. module: purchase +#: help:purchase.order,origin:0 +msgid "" +"Reference of the document that generated this purchase order request; a " +"sales order or an internal procurement request." +msgstr "" + +#. module: purchase +#: view:purchase.order.line:0 +msgid "Notes" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,module_purchase_requisition:0 +msgid "Manage purchase requisitions" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: field:purchase.order,amount_tax:0 +#: field:purchase.order.line,taxes_id:0 +msgid "Taxes" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_procurement_management_product +#: model:ir.ui.menu,name:purchase.menu_procurement_partner_contact_form +#: model:ir.ui.menu,name:purchase.menu_product_in_config_purchase +msgid "Products" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:260 +#, python-format +msgid "Invalid Action!" +msgstr "" + +#. module: purchase +#: field:purchase.order,validator:0 +#: view:purchase.report:0 +msgid "Validated by" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,price_standard:0 +msgid "Products Value" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase orders which are in exception state" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_draftpurchaseorder0 +#: model:process.node,note:purchase.process_node_draftpurchaseorder1 +msgid "Request for Quotations." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Source" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_stock_picking +#: field:purchase.order,picking_ids:0 +msgid "Picking List" +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "Fax:" +msgstr "" + +#. module: purchase +#: help:purchase.order,invoice_ids:0 +msgid "Invoices generated for a purchase order" +msgstr "" + +#. module: purchase +#: selection:purchase.config.settings,default_invoice_method:0 +msgid "Pre-generate draft invoices based on purchase orders" +msgstr "" + +#. module: purchase +#: help:product.template,purchase_ok:0 +msgid "Specify if the product can be selected in a purchase order line." +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 +msgid "" +"The invoice is created automatically if the Invoice control of the purchase " +"order is 'On picking'. The invoice can also be generated manually by the " +"accountant (Invoice control = Manual)." +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "Regards," +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "July" +msgstr "" + +#. module: purchase +#: model:process.node,name:purchase.process_node_packinginvoice0 +msgid "Outgoing Products" +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "" +"to buy the required quantities to the supplier.\n" +" The delivery order will be ready after having " +"received the\n" +" products." +msgstr "" + +#. module: purchase +#: view:product.product:0 +msgid "" +"a draft\n" +" purchase order" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:320 +#, python-format +msgid "Please create Invoices." +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_procurement_order +msgid "Procurement" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +#: selection:purchase.report,state:0 +msgid "Shipping Exception" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "March" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Receive Invoice" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Receive Products" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,month:0 +msgid "Month" +msgstr "" + +#. module: purchase +#: help:res.company,po_lead:0 +msgid "This is the leads/security time for each purchase order." +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_invoiceafterpacking0 +#: model:process.node,note:purchase.process_node_invoicecontrol0 +msgid "To be reviewed by the accountant." +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_purchase_config_settings +msgid "purchase.config.settings" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_approvepurchaseorder0 +#: model:process.node,note:purchase.process_node_confirmpurchaseorder0 +msgid "State of the Purchase Order." +msgstr "" + +#. module: purchase +#: field:purchase.order.line,product_uom:0 +msgid "Product Unit of Measure" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.purchase_pricelist_version_action +msgid "" +"

\n" +" Click to add a pricelist version.\n" +"

\n" +" There can be more than one version of a pricelist, each of\n" +" these must be valid during a certain period of time. Some\n" +" examples of versions: Main Prices, 2010, 2011, Summer " +"Sales,\n" +" etc.\n" +"

\n" +" " +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_view_purchase_line_invoice +msgid "Create invoices" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_purchase_order_line_invoice +msgid "Purchase Order Line Make Invoice" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1141 +#, python-format +msgid "PO: %s" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Send by EMail" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:515 +#, python-format +msgid "Define purchase journal for this company: \"%s\" (id:%d)." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase Order " +msgstr "" + +#. module: purchase +#: help:purchase.config.settings,group_costing_method:0 +msgid "Allows you to compute product cost price based on average cost." +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_purchase_configuration +#: view:purchase.config.settings:0 +msgid "Configure Purchases" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Untaxed" +msgstr "" + +#. module: purchase +#: model:process.transition,name:purchase.process_transition_createpackinglist0 +msgid "Pick list generated" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.purchase_line_form_action2 +#: model:ir.ui.menu,name:purchase.menu_purchase_line_order_draft +msgid "On Purchase Order Lines" +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "TVA:" +msgstr "" + +#. module: purchase +#: help:purchase.order,picking_ids:0 +msgid "" +"This is the list of incoming shipments that have been generated for this " +"purchase order." +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,module_purchase_double_validation:0 +msgid "Force two levels of approvals" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_product_pricelist_action2_purchase_type +msgid "Price Types" +msgstr "" + +#. module: purchase +#: help:purchase.order,date_approve:0 +msgid "Date on which purchase order has been approved" +msgstr "" + +#. module: purchase +#: model:process.node,name:purchase.process_node_approvepurchaseorder0 +#: view:purchase.order:0 +#: selection:purchase.report,state:0 +msgid "Approved" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +#: selection:purchase.order.line,state:0 +#: selection:purchase.report,state:0 +msgid "Done" +msgstr "" + +#. module: purchase +#: model:process.transition,name:purchase.process_transition_invoicefrompackinglist0 +#: model:process.transition,name:purchase.process_transition_invoicefrompurchase0 +msgid "Invoice" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_purchaseorder0 +msgid "Confirmed purchase order to invoice" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_productrecept0 +msgid "Incoming products to control" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.purchase_rfq +msgid "" +"

\n" +" Click to create a request for quotation.\n" +"

\n" +" The quotation contains the history of the " +"discussion/negociation\n" +" you had with your supplier. Once confirmed, a request for\n" +" quotation is converted into a purchase order.\n" +"

\n" +" Most propositions of purchase orders are created " +"automatically\n" +" by OpenERP based on inventory needs.\n" +"

\n" +" " +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_approvingpurchaseorder0 +msgid "The supplier approves the Purchase Order." +msgstr "" + +#. module: purchase +#: code:addons/purchase/wizard/purchase_order_group.py:80 +#: model:ir.actions.act_window,name:purchase.purchase_form_action +#: model:ir.ui.menu,name:purchase.menu_purchase_form_action +#: view:purchase.order:0 +#: view:purchase.report:0 +#: view:res.partner:0 +#, python-format +msgid "Purchase Orders" +msgstr "" + +#. module: purchase +#: field:purchase.order,origin:0 +msgid "Source Document" +msgstr "" + +#. module: purchase +#: view:purchase.order.group:0 +msgid "Merge orders" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,module_purchase_analytic_plans:0 +msgid "Use multiple analytic accounts on purchase orders" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_procurement_management +#: model:process.process,name:purchase.process_process_purchaseprocess0 +msgid "Purchase" +msgstr "" + +#. module: purchase +#: field:purchase.order,create_uid:0 +#: view:purchase.report:0 +#: field:purchase.report,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Manually Corrected" +msgstr "" + +#. module: purchase +#: field:purchase.config.settings,group_costing_method:0 +msgid "Compute product cost price based on average cost" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:350 +#: code:addons/purchase/wizard/purchase_line_invoice.py:137 +#: model:ir.actions.act_window,name:purchase.act_res_partner_2_supplier_invoices +#: view:res.partner:0 +#, python-format +msgid "Supplier Invoices" +msgstr "" + +#. module: purchase +#: field:purchase.order,product_id:0 +#: view:purchase.order.line:0 +#: field:purchase.order.line,product_id:0 +#: view:purchase.report:0 +#: field:purchase.report,product_id:0 +msgid "Product" +msgstr "" + +#. module: purchase +#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder0 +#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder1 +msgid "Confirmation" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "TIN :" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_product_by_category_purchase_form +msgid "Products by Category" +msgstr "" + +#. module: purchase +#: help:purchase.order.line,state:0 +msgid "" +" * The 'Draft' status is set automatically when purchase order in draft " +"status. \n" +"* The 'Confirmed' status is set automatically as confirm when purchase order " +"in confirm status. \n" +"* The 'Done' status is set automatically when purchase order is set as done. " +" \n" +"* The 'Cancelled' status is set automatically when user cancel purchase " +"order." +msgstr "" + +#. module: purchase +#: field:purchase.order,invoiced:0 +msgid "Invoice Received" +msgstr "" + +#. module: purchase +#: field:purchase.order,invoice_method:0 +msgid "Invoicing Control" +msgstr "" + +#. module: purchase +#: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0 +msgid "Approve" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +msgid "Reference UOM" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "May" +msgstr "" + +#. module: purchase +#: model:res.groups,name:purchase.group_purchase_manager +msgid "Manager" +msgstr "" + +#. module: purchase +#: selection:purchase.order,invoice_method:0 +msgid "Based on Purchase Order lines" +msgstr "" + +#. module: purchase +#: field:purchase.order,amount_total:0 +msgid "Total" +msgstr "" + +#. module: purchase +#: help:account.config.settings,module_purchase_analytic_plans:0 +#: help:purchase.config.settings,module_purchase_analytic_plans:0 +msgid "" +"Allows the user to maintain several analysis plans. These let you split " +"lines on a purchase order between several accounts and analytic plans.\n" +" This installs the module purchase_analytic_plans." +msgstr "" + +#. module: purchase +#: field:purchase.order,location_id:0 +#: view:purchase.report:0 +#: field:purchase.report,location_id:0 +msgid "Destination" +msgstr "" + +#. module: purchase +#: field:purchase.order,dest_address_id:0 +msgid "Customer Address (Direct Delivery)" +msgstr "" + +#. module: purchase +#: model:ir.actions.client,name:purchase.action_client_purchase_menu +msgid "Open Purchase Menu" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1028 +#, python-format +msgid "No address defined for the supplier" +msgstr "" + +#. module: purchase +#: field:purchase.order,company_id:0 +#: field:purchase.order.line,company_id:0 +#: view:purchase.report:0 +#: field:purchase.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +#: selection:purchase.report,state:0 +msgid "Invoice Exception" +msgstr "" + +#. module: purchase +#: help:res.partner,property_product_pricelist_purchase:0 +msgid "" +"This pricelist will be used, instead of the default one, for purchases from " +"the current partner" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Fax :" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_stock_partial_picking +msgid "Partial Picking Processing Wizard" +msgstr "" + +#. module: purchase +#: model:product.pricelist.version,name:purchase.ver0 +msgid "Default Purchase Pricelist Version" +msgstr "" + +#. module: purchase +#: selection:purchase.order,invoice_method:0 +msgid "Based on generated draft invoice" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_stock_move_report_po +#: model:ir.ui.menu,name:purchase.menu_action_stock_move_report_po +msgid "Receptions Analysis" +msgstr "" + +#. module: purchase +#: field:purchase.order,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: purchase +#: model:ir.actions.report.xml,name:purchase.report_purchase_order +#: model:ir.model,name:purchase.model_purchase_order +#: model:process.node,name:purchase.process_node_purchaseorder0 +#: field:procurement.order,purchase_id:0 +#: view:purchase.config.settings:0 +#: view:purchase.order:0 +#: selection:purchase.order,state:0 +#: field:res.partner,purchase_order_ids:0 +#: model:res.request.link,name:purchase.req_link_purchase_order +#: field:stock.picking,purchase_id:0 +#: field:stock.picking.in,purchase_id:0 +msgid "Purchase Order" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:320 +#: code:addons/purchase/purchase.py:456 +#: code:addons/purchase/purchase.py:514 +#: code:addons/purchase/purchase.py:525 +#: code:addons/purchase/wizard/purchase_line_invoice.py:105 +#, python-format +msgid "Error!" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Net Total :" +msgstr "" + +#. module: purchase +#: help:purchase.order,state:0 +msgid "" +"The status of the purchase order or the quotation request. A quotation is a " +"purchase order in a 'Draft' status. Then the order has to be confirmed by " +"the user, the status switch to 'Confirmed'. Then the supplier must confirm " +"the order to change the status to 'Approved'. When the purchase order is " +"paid and received, the status becomes 'Done'. If a cancel action occurs in " +"the invoice or in the reception of goods, the status becomes in exception." +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +#: selection:purchase.order.line,state:0 +#: selection:purchase.report,state:0 +msgid "Cancelled" +msgstr "" + +#. module: purchase +#: field:res.partner,purchase_order_count:0 +msgid "# of Purchase Order" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "Tel.:" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Resend Purchase Order" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Net Price" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_purchase_order_line +#: view:purchase.order.line:0 +#: field:stock.move,purchase_line_id:0 +msgid "Purchase Order Line" +msgstr "" + +#. module: purchase +#: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 +#: view:purchase.order.line_invoice:0 +msgid "Confirm" +msgstr "" + +#. module: purchase +#: selection:purchase.config.settings,default_invoice_method:0 +msgid "Based on receptions" +msgstr "" + +#. module: purchase +#: field:purchase.order,partner_ref:0 +msgid "Supplier Reference" +msgstr "" + +#. module: purchase +#: model:process.transition,note:purchase.process_transition_productrecept0 +msgid "" +"A Pick list generates a supplier invoice. Depending on the Invoicing control " +"of the purchase order, the invoice is based on received or on ordered " +"quantities." +msgstr "" + +#. module: purchase +#: field:purchase.order,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: purchase +#: help:purchase.config.settings,module_purchase_requisition:0 +msgid "" +"Purchase Requisitions are used when you want to request quotations from " +"several suppliers for a given set of products.\n" +" You can configure per product if you directly do a Request for " +"Quotation\n" +" to one supplier or if you want a purchase requisition to " +"negotiate with several suppliers." +msgstr "" + +#. module: purchase +#: field:purchase.order.line,invoice_lines:0 +msgid "Invoice Lines" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,help:purchase.action_purchase_order_report_all +msgid "" +"Purchase Analysis allows you to easily check and analyse your company " +"purchase history and performance. From this menu you can track your " +"negotiation performance, the delivery performance of your suppliers, etc." +msgstr "" + +#. module: purchase +#: model:email.template,report_name:purchase.email_template_edi_purchase +msgid "RFQ_${(object.name or '').replace('/','_')}" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:956 +#, python-format +msgid "The selected supplier only sells this product by %s" +msgstr "" + +#. module: purchase +#: model:process.transition.action,name:purchase.process_transition_action_invoicefrompurchaseorder0 +msgid "Create invoice" +msgstr "" + +#. module: purchase +#: field:purchase.order.line,move_dest_id:0 +msgid "Reservation Destination" +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_purchase_config_purchase +msgid "Configuration" +msgstr "" + +#. module: purchase +#: help:purchase.config.settings,module_purchase_double_validation:0 +msgid "" +"Provide a double validation mechanism for purchases exceeding minimum " +"amount.\n" +" This installs the module purchase_double_validation." +msgstr "" + +#. module: purchase +#: code:addons/purchase/edi/purchase_order.py:132 +#, python-format +msgid "EDI Pricelist (%s)" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,product_uom:0 +msgid "Reference Unit of Measure" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_packinginvoice0 +msgid "Outgoing products to invoice" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: field:purchase.report,validator:0 +msgid "Validated By" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,delay_pass:0 +msgid "Days to Deliver" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "April" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +#: field:purchase.order,invoice_ids:0 +msgid "Invoices" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "December" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +msgid "Total Orders Lines by User per month" +msgstr "" + +#. module: purchase +#: help:purchase.order,amount_untaxed:0 +msgid "The amount without tax" +msgstr "" + +#. module: purchase +#: model:process.node,note:purchase.process_node_packinglist0 +msgid "List of ordered products." +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Incoming Shipments & Invoices" +msgstr "" + +#. module: purchase +#: selection:purchase.order,state:0 +msgid "Waiting Approval" +msgstr "" + +#. module: purchase +#: help:purchase.order,amount_total:0 +msgid "The total amount" +msgstr "" + +#. module: purchase +#: field:purchase.order,invoiced_rate:0 +#: field:purchase.order.line,invoiced:0 +msgid "Invoiced" +msgstr "" + +#. module: purchase +#: model:process.node,name:purchase.process_node_confirmpurchaseorder0 +#: selection:purchase.order.line,state:0 +msgid "Confirmed" +msgstr "" + +#. module: purchase +#: selection:purchase.order.line,state:0 +msgid "Draft" +msgstr "" + +#. module: purchase +#: model:ir.model,name:purchase.model_purchase_order_group +msgid "Purchase Order Merge" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_email_templates +msgid "Email Templates" +msgstr "" + +#. module: purchase +#: model:res.groups,name:purchase.group_purchase_user +msgid "User" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "November" +msgstr "" + +#. module: purchase +#: view:purchase.order.line:0 +msgid "Manual Invoices" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Our Order Reference" +msgstr "" + +#. module: purchase +#: selection:purchase.report,month:0 +msgid "January" +msgstr "" + +#. module: purchase +#: help:purchase.order,invoice_method:0 +msgid "" +"Based on Purchase Order lines: place individual lines in 'Invoice Control > " +"Based on P.O. lines' from where you can selectively create an invoice.\n" +"Based on generated invoice: create a draft invoice you can validate later.\n" +"Bases on incoming shipments: let you create an invoice when receptions are " +"validated." +msgstr "" + +#. module: purchase +#: model:ir.ui.menu,name:purchase.menu_partner_categories_in_form +msgid "Partner Categories" +msgstr "" + +#. module: purchase +#: field:purchase.report,state:0 +msgid "Order Status" +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +msgid "Request for Quotation N°" +msgstr "" + +#. module: purchase +#: view:purchase.config.settings:0 +msgid "Invoicing Settings" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.action_purchase_order_by_user_all +msgid "Total Orders by User per month" +msgstr "" + +#. module: purchase +#: selection:purchase.order,invoice_method:0 +msgid "Based on incoming shipments" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:1018 +#, python-format +msgid "No default supplier defined for this product" +msgstr "" + +#. module: purchase +#: view:purchase.report:0 +#: field:purchase.report,warehouse_id:0 +msgid "Warehouse" +msgstr "" + +#. module: purchase +#: code:addons/purchase/purchase.py:960 +#, python-format +msgid "" +"The selected supplier has a minimal quantity set to %s %s, you should not " +"purchase less." +msgstr "" + +#. module: purchase +#: report:purchase.order:0 +#: field:purchase.order.line,name:0 +#: report:purchase.quotation:0 +msgid "Description" +msgstr "" + +#. module: purchase +#: report:purchase.quotation:0 +msgid "Expected Delivery address:" +msgstr "" #. module: purchase #: selection:purchase.report,month:0 msgid "February" -msgstr "Febrero" +msgstr "" #. module: purchase -#: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase -msgid "Products Categories" -msgstr "Categorías de productos" +#: model:ir.actions.act_window,name:purchase.action_invoice_pending +#: model:ir.ui.menu,name:purchase.menu_procurement_management_pending_invoice +msgid "On Draft Invoices" +msgstr "" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_order_report_all #: model:ir.ui.menu,name:purchase.menu_action_purchase_order_report_all msgid "Purchase Analysis" -msgstr "Análisis compra" +msgstr "" #. module: purchase #: report:purchase.order:0 msgid "Your Order Reference" -msgstr "Su referencia" - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order,minimum_planned_date:0 -#: report:purchase.quotation:0 -#: field:purchase.report,expected_date:0 -msgid "Expected Date" -msgstr "Fecha prevista" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_total_price_by_product_by_state -#: view:purchase.report:0 -msgid "Total price by product by state" -msgstr "Total precio por producto por estado" - -#. module: purchase -#: report:purchase.quotation:0 -msgid "TVA:" -msgstr "IVA:" +msgstr "" #. module: purchase #: report:purchase.order:0 -#: field:purchase.order,date_order:0 -msgid "Date Ordered" -msgstr "Fecha ordenado" - -#. module: purchase -#: report:purchase.order:0 -msgid "Shipping address :" -msgstr "Dirección de envío :" +msgid "Purchase Order Confirmation N°" +msgstr "" #. module: purchase #: view:purchase.order:0 -msgid "Purchase Control" -msgstr "Control de compra" +msgid "Total amount" +msgstr "" #. module: purchase -#: selection:purchase.report,month:0 -msgid "March" -msgstr "Marzo" - -#. module: purchase -#: selection:purchase.report,month:0 -msgid "April" -msgstr "Abril" +#: model:ir.model,name:purchase.model_product_template +msgid "Product Template" +msgstr "" #. module: purchase #: view:purchase.order.group:0 @@ -1716,418 +2143,56 @@ msgid "" "\n" " " msgstr "" -" Tenga en cuenta que: \n" -" \n" -" Los pedidos sólo se fusionarán si: \n" -" * Los pedidos de compra están en borrador. \n" -" * Los pedidos pertenecen al mismo proveedor. \n" -" * Los pedidos tienen la misma ubicación de stock y la misma lista de " -"precios. \n" -" \n" -" Las líneas sólo se fusionarán si: \n" -" * Las líneas de pedido son exactamente iguales excepto por el producto, " -"cantidad y unidades. \n" -" " + +#. module: purchase +#: field:purchase.order,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: purchase +#: model:ir.actions.act_window,name:purchase.purchase_pricelist_version_action +#: model:ir.ui.menu,name:purchase.menu_purchase_pricelist_version_action +msgid "Pricelist Versions" +msgstr "" + +#. module: purchase +#: field:purchase.order,payment_term_id:0 +msgid "Payment Term" +msgstr "" + +#. module: purchase +#: view:purchase.order:0 +msgid "Purchase orders which are in draft state" +msgstr "" #. module: purchase #: view:purchase.report:0 #: field:purchase.report,name:0 msgid "Year" -msgstr "Año" - -#. module: purchase -#: field:purchase.report,negociation:0 -msgid "Purchase-Standard Price" -msgstr "Precio compra-estándar" - -#. module: purchase -#: model:product.pricelist.type,name:purchase.pricelist_type_purchase -#: field:res.partner,property_product_pricelist_purchase:0 -msgid "Purchase Pricelist" -msgstr "Tarifa de compra" - -#. module: purchase -#: field:purchase.order,invoice_method:0 -msgid "Invoicing Control" -msgstr "Método facturación" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0 -msgid "Approve" -msgstr "Aprobar" - -#. module: purchase -#: view:purchase.order:0 -msgid "To Approve" -msgstr "Para aprobar" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "Invoicing" -msgstr "Facturación" - -#. module: purchase -#: help:purchase.order.line,state:0 -msgid "" -" * The 'Draft' state is set automatically when purchase order in draft " -"state. \n" -"* The 'Confirmed' state is set automatically as confirm when purchase order " -"in confirm state. \n" -"* The 'Done' state is set automatically when purchase order is set as done. " -" \n" -"* The 'Cancelled' state is set automatically when user cancel purchase order." msgstr "" -" * El estado 'Borrador' se establece automáticamente cuando crea un pedido " -"(presupuesto) de compra. \n" -"* El estado 'Confirmado' se establece automáticamente al confirmar el pedido " -"de compra. \n" -"* El estado 'Hecho' se establece automáticamente cuando el pedido de compra " -"se realiza. \n" -"* El estado 'Cancelado' se establece automáticamente cuando el usuario " -"cancela un pedido de compra." #. module: purchase -#: code:addons/purchase/purchase.py:424 -#, python-format -msgid "Purchase order '%s' is cancelled." -msgstr "El pedido de compra '%s' está cancelado." - -#. module: purchase -#: field:purchase.order,amount_total:0 -msgid "Total" -msgstr "Total" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_product_pricelist_action_purhase -msgid "Pricelist Versions" -msgstr "Versiones de tarifa" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.action_supplier_address_form -msgid "Addresses" -msgstr "Direcciones" - -#. module: purchase -#: view:purchase.order.group:0 -msgid "Are you sure you want to merge these orders?" -msgstr "¿Está seguro que quiere fusionar estos pedidos?" - -#. module: purchase -#: view:purchase.order:0 -#: view:purchase.order.line:0 -#: view:purchase.report:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_purchaseinvoice0 -msgid "From a purchase order" -msgstr "Desde un pedido de compra" - -#. module: purchase -#: report:purchase.order:0 -msgid "TVA :" -msgstr "CIF/NIF:" - -#. module: purchase -#: help:purchase.order,amount_total:0 -msgid "The total amount" -msgstr "El importe total." - -#. module: purchase -#: selection:purchase.report,month:0 -msgid "May" -msgstr "Mayo" - -#. module: purchase -#: field:res.company,po_lead:0 -msgid "Purchase Lead Time" -msgstr "Plazo de tiempo de compra" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_invoicefrompurchase0 -msgid "" -"The invoice is created automatically if the Invoice control of the purchase " -"order is 'On order'. The invoice can also be generated manually by the " -"accountant (Invoice control = Manual)." +#: selection:purchase.config.settings,default_invoice_method:0 +msgid "Based on purchase order lines" msgstr "" -"Se crea automáticamente la factura si el control de facturación del pedido " -"de compra es 'Desde pedido'. La factura también puede ser generada " -"manualmente por el contable (control facturación = Manual)." #. module: purchase -#: model:process.process,name:purchase.process_process_purchaseprocess0 -msgid "Purchase" -msgstr "Compra" - -#. module: purchase -#: model:ir.model,name:purchase.model_res_partner -#: field:purchase.order.line,partner_id:0 -msgid "Partner" -msgstr "Empresa" - -#. module: purchase -#: code:addons/purchase/purchase.py:662 -#, python-format +#: model:ir.actions.act_window,help:purchase.act_res_partner_2_purchase_order msgid "" -"You have to select a partner in the purchase form !\n" -"Please set one partner before choosing a product." +"

\n" +" This supplier has no purchase order. Click to create a " +"new RfQ.\n" +"

\n" +" The request for quotation is the first step of the " +"purchases flow. Once\n" +" converted into a purchase order, you will be able to " +"control the reception\n" +" of the products and the supplier invoice.\n" +"

\n" +" " msgstr "" -"¡Debe seleccionar una empresa en el formulario de compra!\n" -"Por favor seleccione una empresa antes de seleccionar un producto." - -#. module: purchase -#: view:purchase.installer:0 -msgid "title" -msgstr "título" - -#. module: purchase -#: model:ir.model,name:purchase.model_stock_partial_move -msgid "Partial Move" -msgstr "Movimiento parcial" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "Stock Moves" -msgstr "Movimientos de stock" - -#. module: purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase -#: model:ir.ui.menu,name:purchase.menu_purchase_uom_form_action -msgid "Units of Measure" -msgstr "Unidades de medida" #. module: purchase #: view:purchase.report:0 msgid "Orders" -msgstr "Pedidos" - -#. module: purchase -#: help:purchase.order,name:0 -msgid "" -"unique number of the purchase order,computed automatically when the purchase " -"order is created" msgstr "" -"Número único del pedido de compra, calculado de forma automática cuando el " -"pedido de compra se crea." - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.open_board_purchase -#: model:ir.ui.menu,name:purchase.menu_board_purchase -msgid "Purchase Dashboard" -msgstr "Tablero de compras" - -#, python-format -#~ msgid "" -#~ "You have to select a pricelist in the purchase form !\n" -#~ "Please set one before choosing a product." -#~ msgstr "" -#~ "¡Debe seleccionar una tarifa en el formulario de compra!\n" -#~ "Por favor seleccione una antes de seleccionar un producto." - -#~ msgid "" -#~ "Module for purchase management\n" -#~ " Request for quotation, Create Supplier Invoice, Print Order..." -#~ msgstr "" -#~ "Módulo para la gestión de compras\n" -#~ " Solicitud de presupuesto, crear pedido de compra, crear factura de " -#~ "proveedor, imprimir pedido de compra..." - -#~ msgid "Supplier Invoice pre-generated on receptions for control" -#~ msgstr "Factura de proveedor pre-generada en la recepción para control" - -#~ msgid "From Picking" -#~ msgstr "Desde albarán" - -#~ msgid "Packing" -#~ msgstr "Empaquetado/Albarán" - -#~ msgid "Confirmed Purchase" -#~ msgstr "Compra confirmada" - -#~ msgid "Create invoice from product recept" -#~ msgstr "Crear factura desde recepción producto" - -#~ msgid "Purchase Process" -#~ msgstr "Proceso de compra" - -#~ msgid "Purchase Orders in Progress" -#~ msgstr "Pedidos de compra en proceso" - -#~ msgid "Purchase order is confirmed by the user." -#~ msgstr "Pedido de compra es confirmado por el usuario." - -#~ msgid "Purchase Order lines" -#~ msgstr "Línieas del pedido de compra" - -#~ msgid "" -#~ "From Order: a draft invoice will be pre-generated based on the purchase " -#~ "order. The accountant will just have to validate this invoice for control.\n" -#~ "From Picking: a draft invoice will be pre-genearted based on validated " -#~ "receptions.\n" -#~ "Manual: no invoice will be pre-generated. The accountant will have to encode " -#~ "manually." -#~ msgstr "" -#~ "Desde pedido: Una factura borrador se pre-generará basada en el pedido de " -#~ "compra. El contable sólo deberá validar esta factura para control.\n" -#~ "Desde albarán: Una factura borrador será pre-generará basada en las " -#~ "recepciones validadas.\n" -#~ "Manual: Ninguna factura se pre-generará. El contable deberá codificarla " -#~ "manualmente." - -#~ msgid "Invoice based on deliveries" -#~ msgstr "Facturar desde albaranes" - -#~ msgid "Product Receipt" -#~ msgstr "Recepción producto" - -#~ msgid "Confirm Purchase order from Request for quotation without origin" -#~ msgstr "Confirmar pedido de compra desde solicitud de presupuesto sin origen" - -#~ msgid "Planned Date" -#~ msgstr "Fecha prevista" - -#~ msgid "Merge purchases" -#~ msgstr "Fusionar compras" - -#~ msgid "When controlling invoice from orders" -#~ msgstr "Cuando se controla factura desde pedidos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Pre-generated supplier invoice to control based on order" -#~ msgstr "Factura de proveedor pre-generada para control basada en pedido" - -#~ msgid "Invoice from Purchase" -#~ msgstr "Factura desde compra" - -#~ msgid "Packing is created for the products reception control." -#~ msgstr "Albarán es creado para el control de recepción de productos." - -#~ msgid "Confirming Purchase" -#~ msgstr "Confirmación compra" - -#~ msgid "Approve Purchase order after Confirming" -#~ msgstr "Aprobar pedido de compra después de confirmación" - -#~ msgid "Encoded manually by the user." -#~ msgstr "Codificación manual del usuario." - -#~ msgid "Confirm Purchase order from Request for quotation" -#~ msgstr "Confirmar pedido de compra desde solicitud de presupuesto" - -#~ msgid "Confirm Purchase Order" -#~ msgstr "Confirmar pedido de compra" - -#~ msgid "Partner Ref." -#~ msgstr "Ref. empresa" - -#~ msgid "Purchase order is approved by supplier." -#~ msgstr "Pedido de compra es aprobado por el proveedor." - -#~ msgid "Purchase order" -#~ msgstr "Pedido de compra" - -#~ msgid "Request for quotation is proposed by the system." -#~ msgstr "La solicitud de presupuesto es propuesta por el sistema." - -#~ msgid "Packing Invoice" -#~ msgstr "Facturar paquete" - -#~ msgid "Creates invoice from packin list" -#~ msgstr "Crear factura desde albarán" - -#~ msgid "Delivery & Invoices" -#~ msgstr "Albaranes & Facturas" - -#~ msgid "After Purchase order , Create invoice." -#~ msgstr "Después de pedido de compra, crear factura." - -#~ msgid "Scheduled date" -#~ msgstr "Fecha planificada" - -#~ msgid "Create Packing list" -#~ msgstr "Crear albarán" - -#~ msgid "When purchase order is approved , it creates its packing list." -#~ msgstr "Cuando el pedido de compra es aprobado, crea su albarán." - -#~ msgid "Invoice from Packing list" -#~ msgstr "Facturar desde albarán" - -#~ msgid "Order Status" -#~ msgstr "Estado del pedido" - -#~ msgid "Purchases Properties" -#~ msgstr "Propiedades de compra" - -#~ msgid "Order Ref" -#~ msgstr "Ref. pedido" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "New Purchase Order" -#~ msgstr "Nuevo pedido de compra" - -#~ msgid "Out Packing" -#~ msgstr "Paquete saliente" - -#~ msgid "Control invoices on receptions" -#~ msgstr "Controlar facturas en la recepción" - -#~ msgid "Product recept invoice" -#~ msgstr "Factura recepción producto" - -#~ msgid "Confirming Purchase Order" -#~ msgstr "Confirmación pedido de compra" - -#~ msgid "Purchase Invoice" -#~ msgstr "Factura de compra" - -#~ msgid "Approved Purchase" -#~ msgstr "Compra aprobada" - -#~ msgid "From Packing list, Create invoice." -#~ msgstr "Desde albarán, crear factura." - -#~ msgid "Approving Purchase Order" -#~ msgstr "Aprobación pedido de compra" - -#~ msgid "After approved purchase order , it comes into the supplier invoice" -#~ msgstr "" -#~ "Después del pedido de compra aprobado, se convierte en factura de proveedor" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." - -#~ msgid "You cannot have 2 pricelist versions that overlap!" -#~ msgstr "¡No puede tener 2 versiones de tarifa que se solapen!" - -#, python-format -#~ msgid "You must first cancel all packing attached to this purchase order." -#~ msgstr "" -#~ "Primero debe cancelar todos los albaranes asociados a este pedido de compra." - -#~ msgid "Purchase orders" -#~ msgstr "Pedidos de compra" - -#~ msgid "Date" -#~ msgstr "Fecha" - -#~ msgid "Request For Quotations" -#~ msgstr "Solicitud de presupuestos" - -#~ msgid "" -#~ "Error ! You cannot assign the Main Pricelist as Other Pricelist in PriceList " -#~ "Item!" -#~ msgstr "" -#~ "¡Error! No puede asignar la tarifa principal como otra tarifa en un " -#~ "elemento de la tarifa." - -#~ msgid "Purchase Lines Not Invoiced" -#~ msgstr "Líneas de compra no facturadas" diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 35053dc57b0..a256b1536c1 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -8,14 +8,179 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 14:16+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-01-18 07:05+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" + +#. module: sale +#: model:ir.model,name:sale.model_mail_compose_message +msgid "Email composition wizard" +msgstr "Email összeállító varázsló" + +#. module: sale +#: field:sale.order,currency_id:0 +msgid "Currency" +msgstr "Pénznem" + +#. module: sale +#: view:sale.order.line:0 +msgid "Uninvoiced" +msgstr "Nem számlázott" + +#. module: sale +#: view:sale.report:0 +#: field:sale.report,categ_id:0 +msgid "Category of Product" +msgstr "Termék katerógia" + +#. module: sale +#: code:addons/sale/sale.py:558 +#, python-format +msgid "Cannot cancel this sales order!" +msgstr "Nem lehet visszavonni ezt a megrendelést!" + +#. module: sale +#: view:sale.order:0 +msgid "Recreate Invoice" +msgstr "Számla újrakészítése" + +#. module: sale +#: field:sale.config.settings,module_warning:0 +msgid "Allow configuring alerts by customer or products" +msgstr "Engedélyezi riasztás beállítását vevőkre vagy termékekre" + +#. module: sale +#: field:sale.shop,name:0 +msgid "Shop Name" +msgstr "Üzlet neve" + +#. module: sale +#: view:sale.order:0 +msgid "My Sales Orders" +msgstr "Az én megrendeléseim" + +#. module: sale +#: report:sale.order:0 +msgid "Taxes :" +msgstr "Adók:" + +#. module: sale +#: field:sale.order,invoice_exists:0 +#: field:sale.order.line,invoiced:0 +msgid "Invoiced" +msgstr "Számlázott" + +#. module: sale +#: code:addons/sale/wizard/sale_make_invoice_advance.py:202 +#, python-format +msgid "Advance Invoice" +msgstr "Előlegszámla" + +#. module: sale +#: help:sale.config.settings,group_invoice_so_lines:0 +msgid "" +"To allow your salesman to make invoices for sales order lines using the menu " +"'Lines to Invoice'." +msgstr "" +"Lehetővé teszi az értékesítők részére a megrendelések soraira történő " +"számlázást a 'Számlázandó sorok' menü használatával" + +#. module: sale +#: model:ir.actions.client,name:sale.action_client_sale_menu +msgid "Open Sale Menu" +msgstr "Értékesítési menü megnyitása" + +#. module: sale +#: selection:sale.report,state:0 +msgid "In Progress" +msgstr "Folyamatban" + +#. module: sale +#: code:addons/sale/sale.py:857 +#, python-format +msgid "No Customer Defined !" +msgstr "Nincs vevő megadva!" + +#. module: sale +#: field:sale.config.settings,module_sale_stock:0 +msgid "Trigger delivery orders automatically from sales orders" +msgstr "" +"Kiszállítási Kiszolgáltatási jegy automatikus létrehozása a megrendelésekből" + +#. module: sale +#: view:sale.make.invoice:0 +#: view:sale.order.line.make.invoice:0 +msgid "Create invoices" +msgstr "Számlák létrehozása" + +#. module: sale +#: code:addons/sale/wizard/sale_make_invoice_advance.py:106 +#, python-format +msgid "Advance of %s %%" +msgstr "Ennyi előleg %s %%" + +#. module: sale +#: model:ir.model,name:sale.model_sale_order_line_make_invoice +msgid "Sale OrderLine Make_invoice" +msgstr "Számla létrehozása a vásárlói megrendelés sorból" + +#. module: sale +#: selection:sale.order.line,state:0 +msgid "Draft" +msgstr "Tervezet" + +#. module: sale +#: model:ir.actions.act_window,name:sale.action_email_templates +msgid "Email Templates" +msgstr "E-mail sablonok" + +#. module: sale +#: help:sale.order.line,address_allotment_id:0 +msgid "A partner to whom the particular product needs to be allotted." +msgstr "A partner akihez a szóban forgó terméket tulajdonítani kell." + +#. module: sale +#: field:sale.order,project_id:0 +msgid "Contract / Analytic" +msgstr "Szerződés / Gyüjő,Elemző" + +#. module: sale +#: selection:sale.order,state:0 +#: selection:sale.report,state:0 +msgid "Waiting Schedule" +msgstr "Várakozás ütemezés" + +#. module: sale +#: field:sale.order,note:0 +msgid "Terms and conditions" +msgstr "Kikötések és feltételek" + +#. module: sale +#: model:ir.actions.act_window,name:sale.action_orders +#: model:ir.ui.menu,name:sale.menu_sale_order +#: view:sale.order:0 +msgid "Sales Orders" +msgstr "Vevői megrendelések" + +#. module: sale +#: help:sale.order,amount_tax:0 +msgid "The tax amount." +msgstr "Az adó összege" + +#. module: sale +#: field:sale.order,invoiced_rate:0 +msgid "Invoiced Ratio" +msgstr "Számlázáskori árfolyam" + +#. module: sale +#: selection:sale.order,order_policy:0 +msgid "On Demand" +msgstr "Készleten" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -133,7 +298,7 @@ msgstr "Március" #: code:addons/sale/sale.py:559 #, python-format msgid "First cancel all invoices attached to this sales order." -msgstr "Először törölje a megrendelés összes számla mellékletét." +msgstr "Először vonja vissza a megrendelés összes számla mellékletét." #. module: sale #: view:sale.order:0 @@ -168,7 +333,7 @@ msgstr "Ki nem számlázott, de kiszállított tételek" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "Árajánlat visszaigazolva" +msgstr "Árajánlat megerősítve" #. module: sale #: selection:sale.order,state:0 @@ -355,11 +520,6 @@ msgstr "Megrendelés sorok melyek összefüggenk az én megrendeléseimmel" msgid "Quotation Sent" msgstr "Elküldött mennyiség" -#. module: sale -#: model:ir.model,name:sale.model_mail_compose_message -msgid "Email composition wizard" -msgstr "Email varázsló" - #. module: sale #: help:sale.order,message_unread:0 msgid "If checked new messages require your attention." @@ -451,11 +611,11 @@ msgid "" " but waiting for the scheduler to run on the order date." msgstr "" "Az árajánlatkérés vagy a megrendelés állapotát adja. \n" -"A kizárás állapot automatikusan beállított egy megszakítás művelet " +"A kizárás állapot automatikusan beállított egy visszavonás művelet " "elvégzésekkor egy számla érvényesítésekor (Számla kizárás) " "vagy a kiválogatási lista műveletekben (Szállítási kizárás).\n" -"A 'Ütemezésre várakozás' állapot lesz beállítva, ha a számla visszaigazolt " -" de vár egy, a megrendelés dátumára futó ütemezésre." +"A 'Ütemezésre várakozás' állapot lesz beállítva, ha a számla megerősített " +" de vár egy, a megrendelés dátumára futó ütemezésre." #. module: sale #: field:sale.report,date_confirm:0 @@ -500,8 +660,8 @@ msgstr "Fax:" msgid "" "In order to delete a confirmed sales order, you must cancel it before !" msgstr "" -"Ahhoz, hogy törölni tudjon egy visszaigazolt megrendelést, először meg kell " -"szakítani azt !" +"Ahhoz, hogy törölni tudjon egy megerősített megrendelést, először vissza " +"kell vonnia azt !" #. module: sale #: view:sale.order:0 @@ -593,7 +753,8 @@ msgstr "Az időkimutatások alapján készítsen elő számlát" #: code:addons/sale/sale.py:812 #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." -msgstr "Nem tud megrendelési sor megszakítani amelyik már számlázva volt." +msgstr "" +"Nem tud olyan megrendelési sort visszavonni amelyik már számlázva volt." #. module: sale #: view:account.invoice.report:0 @@ -626,7 +787,7 @@ msgstr "Megrendelés visszaigazolva" #. module: sale #: view:sale.order:0 msgid "Sales Order that haven't yet been confirmed" -msgstr "Megrendelés mely még nem lett visszaigazolva" +msgstr "Megrendelés mely még nem lett megerősítve" #. module: sale #: view:sale.order:0 @@ -810,14 +971,14 @@ msgid "" msgstr "" "* A 'Terv' állapot beállított, ha az idevonatkozó megrendelés tervezet " "állapotú. \n" -"* A 'Visszaigazolt' állapot beállított, ha az idevonatkozó megrendelés " -"visszaigazolt. \n" +"* A 'Megerősített' állapot beállított, ha az idevonatkozó megrendelés " +"megerősített. \n" "* A 'Kifogás' állapot beállított, ha az idevonatkozó megrendelés kifogásolt. " " \n" "* A 'Elvégzett' állapot beállított, ha az idevonatkozó megrendelés sor " "kiválogatott. \n" -"* A 'Megszakított' állapot beállított, ha az idevonatkozó megrendelést egy " -"felhasználó megszakította." +"* A 'Visszavon' állapot beállított, ha az idevonatkozó megrendelést egy " +"felhasználó visszavonta." #. module: sale #: view:sale.config.settings:0 @@ -964,7 +1125,7 @@ msgid "" msgstr "" "Nem készíthet számlát ehhez a megrendelés sorhoz, az alábbi okok egyikének " "következtében:\n" -"1. A megrendelés sorának állapota: \"Tervezet\" vagy \"Mégsem\".\n" +"1. A megrendelés sorának állapota: \"Tervezet\" vagy \"Visszavont\".\n" "2. A megrendelési sor már kiszámlázásra került." #. module: sale @@ -1004,177 +1165,17 @@ msgstr "Kiszállított" msgid "Month" msgstr "Hónap" -#. module: sale -#: field:sale.order,currency_id:0 -msgid "Currency" -msgstr "Valuta" - -#. module: sale -#: view:sale.order.line:0 -msgid "Uninvoiced" -msgstr "Nem számlázott" - -#. module: sale -#: view:sale.report:0 -#: field:sale.report,categ_id:0 -msgid "Category of Product" -msgstr "Termékkaterógia" - -#. module: sale -#: code:addons/sale/sale.py:558 -#, python-format -msgid "Cannot cancel this sales order!" -msgstr "Nem lehet megszakítani ezt a megrendelést!" - -#. module: sale -#: view:sale.order:0 -msgid "Recreate Invoice" -msgstr "Számla újrakészítése" - -#. module: sale -#: field:sale.config.settings,module_warning:0 -msgid "Allow configuring alerts by customer or products" -msgstr "Engedélyezi riasztás beállítását vevőkre vagy termékekre" - -#. module: sale -#: field:sale.shop,name:0 -msgid "Shop Name" -msgstr "Üzlet neve" - -#. module: sale -#: view:sale.order:0 -msgid "My Sales Orders" -msgstr "Az én megrendeléseim" - -#. module: sale -#: report:sale.order:0 -msgid "Taxes :" -msgstr "Adók:" - -#. module: sale -#: field:sale.order,invoice_exists:0 -#: field:sale.order.line,invoiced:0 -msgid "Invoiced" -msgstr "Számlázott" - -#. module: sale -#: code:addons/sale/wizard/sale_make_invoice_advance.py:202 -#, python-format -msgid "Advance Invoice" -msgstr "Előlegszámla" - -#. module: sale -#: help:sale.config.settings,group_invoice_so_lines:0 -msgid "" -"To allow your salesman to make invoices for sales order lines using the menu " -"'Lines to Invoice'." -msgstr "" -"Lehetővé teszi az értékesítők részére a megrendelések soraira történő " -"számlázást a 'Számlázandó sorok' menü használatával" - -#. module: sale -#: model:ir.actions.client,name:sale.action_client_sale_menu -msgid "Open Sale Menu" -msgstr "Értékesítési menü megnyitása" - #. module: sale #: code:addons/sale/sale.py:592 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "Nem tud visszaigazolni sor nélküli megrendelést" - -#. module: sale -#: selection:sale.report,state:0 -msgid "In Progress" -msgstr "Folyamatban" - -#. module: sale -#: code:addons/sale/sale.py:857 -#, python-format -msgid "No Customer Defined !" -msgstr "Nincs vevő megadva!" - -#. module: sale -#: field:sale.config.settings,module_sale_stock:0 -msgid "Trigger delivery orders automatically from sales orders" -msgstr "" -"Kiszállítási Kiszolgáltatási jegy automatikus létrehozása a megrendelésekből" - -#. module: sale -#: view:sale.make.invoice:0 -#: view:sale.order.line.make.invoice:0 -msgid "Create invoices" -msgstr "Számlák létrehozása" +msgstr "Nem tud megerősíteni sor nélküli megrendelést" #. module: sale #: selection:sale.order.line,state:0 msgid "Confirmed" msgstr "Megerősítve" -#. module: sale -#: code:addons/sale/wizard/sale_make_invoice_advance.py:106 -#, python-format -msgid "Advance of %s %%" -msgstr "Ennyi előleg %s %%" - -#. module: sale -#: model:ir.model,name:sale.model_sale_order_line_make_invoice -msgid "Sale OrderLine Make_invoice" -msgstr "Számla létrehozása az értékesítési megbízási sorból" - -#. module: sale -#: selection:sale.order.line,state:0 -msgid "Draft" -msgstr "Tervezet" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_email_templates -msgid "Email Templates" -msgstr "E-mail sablonok" - -#. module: sale -#: help:sale.order.line,address_allotment_id:0 -msgid "A partner to whom the particular product needs to be allotted." -msgstr "A partner akihez a szóban forgó terméket ki kell helyezni." - -#. module: sale -#: field:sale.order,project_id:0 -msgid "Contract / Analytic" -msgstr "Szerződés / Elemzés" - -#. module: sale -#: selection:sale.order,state:0 -#: selection:sale.report,state:0 -msgid "Waiting Schedule" -msgstr "Ütemezésre vár" - -#. module: sale -#: field:sale.order,note:0 -msgid "Terms and conditions" -msgstr "Kikötések és feltételek" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_orders -#: model:ir.ui.menu,name:sale.menu_sale_order -#: view:sale.order:0 -msgid "Sales Orders" -msgstr "Értékesítési megbízások" - -#. module: sale -#: help:sale.order,amount_tax:0 -msgid "The tax amount." -msgstr "Az adó összege" - -#. module: sale -#: field:sale.order,invoiced_rate:0 -msgid "Invoiced Ratio" -msgstr "Számlázási arány/árfolyam" - -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "On Demand" -msgstr "Készleten" - #. module: sale #: selection:sale.report,month:0 msgid "August" @@ -1242,7 +1243,7 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" -"Megrendelési sorok, melyek visszaigazoltak, elvégzettek vagy kifogásolt " +"Megrendelési sorok, melyek megerősítettek, elvégzettek vagy kifogásolt " "állapotú és még nincs számlázva" #. module: sale @@ -1526,7 +1527,7 @@ msgstr "Kimenő számlák" #. module: sale #: model:process.node,note:sale.process_node_order0 msgid "Confirmed sales order to invoice." -msgstr "megerősített értékesítési megbízás, amely számlázható." +msgstr "Megerősített vásárlói megrendelés, amely számlázható." #. module: sale #: field:sale.order.line,sequence:0 @@ -1609,7 +1610,7 @@ msgstr "Az én megrendeléseim sorai" #: view:sale.order.line:0 #: view:sale.order.line.make.invoice:0 msgid "Cancel" -msgstr "Törlés" +msgstr "Visszavonás" #. module: sale #: field:sale.order,message_follower_ids:0 @@ -1851,6 +1852,90 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Tisztlet${object.partner_id.name},

\n" +" \n" +"

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

\n" +"\n" +"

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

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

It is also possible to directly pay with Paypal:

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

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

\n" +"

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

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

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

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

\n" +"
\n" +"
\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1868,7 +1953,7 @@ msgstr "A végösszeg." #. module: sale #: view:sale.order:0 msgid "Confirm Sale" -msgstr "Értékesítés jóváhagyás" +msgstr "Értékesítés megerősítés" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:96 @@ -2209,7 +2294,7 @@ msgstr "Értékesítési megbízásból" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "Visszaigazolt megrendelési sorok, amik még nem kiszálítottak" +msgstr "Megerősített megrendelési sorok, amik még nem kiszálítottak" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index eec35f25c95..761bfaaafcc 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -8,14 +8,14 @@ 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-01-15 09:52+0000\n" +"PO-Revision-Date: 2013-01-22 15:53+0000\n" "Last-Translator: Denis Karataev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:06+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -584,7 +584,7 @@ msgstr "Разрешить использование различных еди #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Заказ продаж подтвержден" #. module: sale #: view:sale.order:0 @@ -633,7 +633,7 @@ msgstr "Итоговая цена" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Позволяет вам указывать аналитический счет в заказах продаж." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -709,7 +709,7 @@ msgstr "Год заказа в заказе продаж" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Адреса в заказах продаж" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -726,7 +726,7 @@ msgstr "Всего :" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Строки заказа продаж готовы к выставлению в счет" #. module: sale #: view:sale.report:0 @@ -949,7 +949,7 @@ msgstr "Месяц" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Валюта" #. module: sale #: view:sale.order.line:0 @@ -986,7 +986,7 @@ msgstr "Название магазина" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Мои заказы продаж" #. module: sale #: report:sale.order:0 @@ -1022,6 +1022,7 @@ msgstr "Открыть меню продаж" #, python-format msgid "You cannot confirm a sales order which has no line." msgstr "" +"Вы не можете подтвердить заказ продаж, который не имеет ни одной строки." #. module: sale #: selection:sale.report,state:0 @@ -1037,7 +1038,7 @@ msgstr "Заказчик не определен !" #. module: sale #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" -msgstr "" +msgstr "Автоматически создавать заказы на доставку из заказов продаж" #. module: sale #: view:sale.make.invoice:0 @@ -1171,6 +1172,8 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Строки заказов продаж, которые подтверждены, выполнены или в состоянии " +"исключительной ситуации и не были выставлены в счет" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1266,7 +1269,7 @@ msgstr "Январь" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Позволяет устанавливать скидку на строки заказа продаж" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress @@ -1532,13 +1535,13 @@ msgstr "Нет прайс-листа ! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Заказ продаж " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Заявка отправлена" #. module: sale #: view:sale.order.line:0 @@ -2093,7 +2096,7 @@ msgstr "Из заказа продаж" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Подтвержденные строки заказа продаж, еще не доставленные" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2138,7 +2141,7 @@ msgstr "Заказ продаж готов к выставлению счета" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Сгенерировать счета на основе строк заказа продаж" #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index 4bb7977ab39..f298149a9e5 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 12:34+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: survey #: view:survey.response.line:0 @@ -298,12 +298,12 @@ msgstr " Título da coluna" #: code:addons/survey/wizard/survey_send_invitation.py:71 #, python-format msgid "The following surveys are not in open state: %s" -msgstr "" +msgstr "Os seguintes inquéritos não estão em estado aberto: %s" #. module: survey #: field:survey,tot_comp_survey:0 msgid "Total Completed Survey" -msgstr "Total de Questionário concluído" +msgstr "Total do Inquerito concluído" #. module: survey #: view:survey.response.answer:0 @@ -334,6 +334,8 @@ msgid "" "This survey has no question defined. Please define the questions and answers " "first." msgstr "" +"Este inquérito não tem pergunta definida. Por favor primeiro defina as " +"perguntas e as respostas." #. module: survey #: field:survey.question,comment_field_type:0 @@ -354,7 +356,7 @@ msgstr "Data de Abertura do inquérito" #: code:addons/survey/wizard/survey_answer.py:800 #, python-format msgid "You cannot select the same answer more than one time." -msgstr "" +msgstr "Não pode selecionar a mesma resposta mais do que uma vez." #. module: survey #: field:survey,color:0 @@ -629,7 +631,7 @@ msgstr "Número de página" #. module: survey #: model:ir.ui.menu,name:survey.menu_print_survey_form msgid "Print Surveys" -msgstr "" +msgstr "Imprimir inquéritos" #. module: survey #: field:survey.question.column.heading,in_visible_menu_choice:0 @@ -650,7 +652,7 @@ msgstr "Mensagem de erro" #: code:addons/survey/wizard/survey_answer.py:124 #, python-format msgid "You cannot answer this survey more than %s times." -msgstr "" +msgstr "Não pode responder a este inquérito mais que %s vezes." #. module: survey #: field:survey.request,date_deadline:0 @@ -886,7 +888,7 @@ msgstr "e" #: model:ir.actions.act_window,name:survey.action_view_survey_print_statistics #: view:survey.print.statistics:0 msgid "Survey Print Statistics" -msgstr "Estatísticas de impressão do questionário" +msgstr "Estatísticas de impressão do inquérito" #. module: survey #: field:survey.send.invitation.log,note:0 @@ -1336,6 +1338,7 @@ msgstr "Abrir" #, python-format msgid "You must enter one or more answers for question \"%s\" of page %s ." msgstr "" +"Tem que introduzir uma ou mais respostas para a questão \"%s\" da página %s." #. module: survey #: field:survey,tot_start_survey:0 @@ -1766,7 +1769,7 @@ msgstr "Tabela" #: code:addons/survey/wizard/survey_answer.py:117 #, python-format msgid "You cannot answer because the survey is not open." -msgstr "" +msgstr "Não pode responder porque o inquérito não está aberto." #. module: survey #: field:survey.question,comment_minimum_date:0 diff --git a/addons/web/i18n/es_EC.po b/addons/web/i18n/es_EC.po index 1aa50525a68..f08ebe85221 100644 --- a/addons/web/i18n/es_EC.po +++ b/addons/web/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: web #. openerp-web diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index bb070154281..5f977cdda76 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: Aires Correia Lopes Silvestre \n" +"PO-Revision-Date: 2013-01-22 12:19+0000\n" +"Last-Translator: Alien Group Lda \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:10+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -39,12 +39,12 @@ msgstr "Nenhum resultado encontrado" #: code:addons/web_linkedin/static/src/js/linkedin.js:84 #, python-format msgid "Ok" -msgstr "" +msgstr "OK" #. module: web_linkedin #: view:sale.config.settings:0 msgid "Log into LinkedIn." -msgstr "" +msgstr "Autenticar no Linkedin" #. module: web_linkedin #. openerp-web @@ -56,7 +56,7 @@ msgstr "Pessoas" #. module: web_linkedin #: model:ir.model,name:web_linkedin.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: web_linkedin #: field:sale.config.settings,server_domain:0 @@ -66,7 +66,7 @@ msgstr "desconhecido" #. module: web_linkedin #: view:sale.config.settings:0 msgid "https://www.linkedin.com/secure/developer" -msgstr "" +msgstr "https://www.linkedin.com/secure/developer" #. module: web_linkedin #. openerp-web @@ -129,7 +129,7 @@ msgstr "" #. module: web_linkedin #: view:sale.config.settings:0 msgid "The programming tool is Javascript" -msgstr "" +msgstr "A ferramenta de programação é Javascript" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/openerp/addons/base/i18n/es_EC.po b/openerp/addons/base/i18n/es_EC.po index 951be06d907..45fc314868a 100644 --- a/openerp/addons/base/i18n/es_EC.po +++ b/openerp/addons/base/i18n/es_EC.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:09+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-22 14:48+0000\n" +"Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:02+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -579,7 +579,7 @@ msgstr "Guayana francesa" #. module: base #: model:ir.module.module,summary:base.module_hr msgid "Jobs, Departments, Employees Details" -msgstr "" +msgstr "Trabajos, Departamentos, Detalle de Empleados" #. module: base #: model:ir.module.module,description:base.module_analytic @@ -657,7 +657,7 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (VE) / Español (VE)" -msgstr "Spanish (es_EC) / Español (es_EC)" +msgstr "Spanish (es_VE) / Español (es_VE)" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet_invoice @@ -730,7 +730,7 @@ msgstr "" #. module: base #: field:res.company,logo_web:0 msgid "Logo Web" -msgstr "" +msgstr "Logo Web" #. module: base #: code:addons/base/ir/ir_model.py:339 @@ -1221,7 +1221,7 @@ msgstr "Modelo de documento" #. module: base #: view:res.users:0 msgid "Change the user password." -msgstr "" +msgstr "Cambiar password de usuario" #. module: base #: view:res.lang:0 @@ -1850,7 +1850,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project_issue msgid "Portal Issue" -msgstr "" +msgstr "Tarea de Portal" #. module: base #: model:ir.ui.menu,name:base.menu_tools @@ -1874,7 +1874,7 @@ msgstr "" #. module: base #: field:res.partner,image_small:0 msgid "Small-sized image" -msgstr "" +msgstr "Tamaño pequeño de imagen" #. module: base #: model:ir.module.module,shortdesc:base.module_stock @@ -1976,7 +1976,7 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:164 #, python-format msgid "Unknown value '%s' for boolean field '%%(field)s', assuming '%s'" -msgstr "" +msgstr "Valor desconocido '%s' para campo lógico '%%(field)s', sumiendo '%s'" #. module: base #: model:res.country,name:base.nl @@ -1986,12 +1986,12 @@ msgstr "Países Bajos-Holanda" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_event msgid "Portal Event" -msgstr "" +msgstr "Evento de Portal" #. module: base #: selection:ir.translation,state:0 msgid "Translation in Progress" -msgstr "" +msgstr "Traducción en Progreso" #. module: base #: model:ir.model,name:base.model_ir_rule @@ -2006,7 +2006,7 @@ msgstr "Días" #. module: base #: model:ir.module.module,summary:base.module_fleet msgid "Vehicle, leasing, insurances, costs" -msgstr "" +msgstr "Vehículo, arrendamiento, seguros, costos" #. module: base #: view:ir.model.access:0 @@ -2017,7 +2017,7 @@ msgstr "Acceso de lectura" #. module: base #: help:ir.attachment,res_id:0 msgid "The record id this is attached to" -msgstr "" +msgstr "El id de registro está adjunto a" #. module: base #: model:ir.module.module,description:base.module_share @@ -2098,7 +2098,7 @@ msgstr "Crear Tareas en SO" #: code:addons/base/ir/ir_model.py:318 #, python-format msgid "This column contains module data and cannot be removed!" -msgstr "" +msgstr "Esta columna contiene datos del módulo y no puede ser eliminado !" #. module: base #: field:res.partner.bank,footer:0 @@ -2236,7 +2236,7 @@ msgstr "Ruta de acceso completa" #. module: base #: view:base.language.export:0 msgid "The next step depends on the file format:" -msgstr "" +msgstr "El siguiente paso, depende el formato de archivo:" #. module: base #: view:res.lang:0 @@ -2252,7 +2252,7 @@ msgstr "" #. module: base #: view:base.language.export:0 msgid "PO(T) format: you should edit it with a PO editor such as" -msgstr "" +msgstr "PO(T) formato: Debes editarlo con un Editor de archivos PO." #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2276,7 +2276,7 @@ msgstr "Crear / Escribir / Copiar" #. module: base #: view:ir.sequence:0 msgid "Second: %(sec)s" -msgstr "" +msgstr "Segundo: %(sec)s" #. module: base #: field:ir.actions.act_window,view_mode:0 @@ -2341,12 +2341,12 @@ msgstr "Bahamas" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "" +msgstr "Aplicar para Creación" #. module: base #: model:ir.module.category,name:base.module_category_tools msgid "Extra Tools" -msgstr "" +msgstr "Herramientas Extras" #. module: base #: view:ir.attachment:0 @@ -2364,6 +2364,8 @@ msgid "" "Appears by default on the top right corner of your printed documents (report " "header)." msgstr "" +"Aparece por defecto en la esquina superior derecha de sus documentos " +"impresos (cabecera de reporte)" #. module: base #: field:base.module.update,update:0 @@ -2378,7 +2380,7 @@ msgstr "Método" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_crypt msgid "Password Encryption" -msgstr "" +msgstr "Encriptación de Contraseña" #. module: base #: view:workflow.activity:0 @@ -2418,11 +2420,13 @@ msgstr "" msgid "" "No matching record found for %(field_type)s '%(value)s' in field '%%(field)s'" msgstr "" +"No se encuentra un registro para %(field_type)s '%(value)s' en campo " +"'%%(field)s'" #. module: base #: field:change.password.user,new_passwd:0 msgid "New Password" -msgstr "" +msgstr "Nueva Contraseña" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view @@ -2696,7 +2700,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth_signup msgid "Signup with OAuth2 Authentication" -msgstr "" +msgstr "Ingreos con OAuth2" #. module: base #: selection:ir.model,state:0 @@ -2723,7 +2727,7 @@ msgstr "Greek / Ελληνικά" #. module: base #: field:res.company,custom_footer:0 msgid "Custom Footer" -msgstr "" +msgstr "Pie de página personalizado" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_crm @@ -2791,7 +2795,7 @@ msgstr "Nombre de acceso rápido" #. module: base #: field:res.partner,contact_address:0 msgid "Complete Address" -msgstr "" +msgstr "Dirección Completa" #. module: base #: help:ir.actions.act_window,limit:0 @@ -2874,7 +2878,7 @@ msgstr "Id de registro" #. module: base #: view:ir.filters:0 msgid "My Filters" -msgstr "" +msgstr "Mis filtros" #. module: base #: field:ir.actions.server,email:0 @@ -2894,6 +2898,7 @@ msgstr "" #, python-format msgid "Found multiple matches for field '%%(field)s' (%d matches)" msgstr "" +"Se encontró multiples resultados para el campo '%%(field)s' (%d ocurrencias)" #. module: base #: selection:base.language.install,lang:0 @@ -2927,7 +2932,7 @@ msgstr "Argumentos enviados al cliente junto con el tag view" #. module: base #: model:ir.module.module,summary:base.module_contacts msgid "Contacts, People and Companies" -msgstr "" +msgstr "Contactos personas y Empresas" #. module: base #: model:res.country,name:base.tt @@ -2973,7 +2978,7 @@ msgstr "Gerente" #: code:addons/base/ir/ir_model.py:719 #, python-format msgid "Sorry, you are not allowed to access this document." -msgstr "" +msgstr "Perdón, no estas permitido para acceder a este documento." #. module: base #: model:res.country,name:base.py @@ -2988,7 +2993,7 @@ msgstr "Fiji" #. module: base #: view:ir.actions.report.xml:0 msgid "Report Xml" -msgstr "" +msgstr "Reporte Xml" #. module: base #: model:ir.module.module,description:base.module_purchase @@ -3059,7 +3064,7 @@ msgstr "Heredado" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "yes" -msgstr "" +msgstr "si" #. module: base #: field:ir.model.fields,serialization_field_id:0 @@ -3089,7 +3094,7 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:174 #, python-format msgid "'%s' does not seem to be an integer for field '%%(field)s'" -msgstr "" +msgstr "'%s' no parece ser un entero para el campo '%%(field)s'" #. module: base #: model:ir.module.category,description:base.module_category_report_designer @@ -3199,6 +3204,8 @@ msgid "" "the user will have an access to the sales configuration as well as statistic " "reports." msgstr "" +"el usuario tendra acceso a la configuración de ventas así como a las " +"estadísticas." #. module: base #: model:res.country,name:base.nz @@ -3328,7 +3335,7 @@ msgstr "Tipo de reporte desconocido: %s" #. module: base #: model:ir.module.module,summary:base.module_hr_expense msgid "Expenses Validation, Invoicing" -msgstr "" +msgstr "Validación de gastos, Facturación" #. module: base #: model:ir.module.module,description:base.module_l10n_be_hr_payroll_account @@ -3347,7 +3354,7 @@ msgstr "Armenia" #. module: base #: model:ir.module.module,summary:base.module_hr_evaluation msgid "Periodical Evaluations, Appraisals, Surveys" -msgstr "" +msgstr "Evaluaciones periódicas, valoraciones, encuentas" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -3368,7 +3375,7 @@ msgstr "Suecia" #. module: base #: field:ir.actions.report.xml,report_file:0 msgid "Report File" -msgstr "" +msgstr "Archivo de reporte" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -3401,7 +3408,7 @@ msgstr "" #: code:addons/orm.py:3870 #, python-format msgid "Missing document(s)" -msgstr "" +msgstr "Documento faltante" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type @@ -3466,7 +3473,7 @@ msgstr "Calendario" #. module: base #: model:ir.module.category,name:base.module_category_knowledge_management msgid "Knowledge" -msgstr "" +msgstr "Gestión de Conocimiento" #. module: base #: field:workflow.activity,signal_send:0 @@ -3609,7 +3616,7 @@ msgstr "workflow.actividad" #. module: base #: view:base.language.export:0 msgid "Export Complete" -msgstr "" +msgstr "Exportación completa" #. module: base #: help:ir.ui.view_sc,res_id:0 @@ -3638,7 +3645,7 @@ msgstr "Finlandes" #. module: base #: view:ir.config_parameter:0 msgid "System Properties" -msgstr "" +msgstr "Propiedades del sistema" #. module: base #: field:ir.sequence,prefix:0 @@ -3682,12 +3689,12 @@ msgstr "Seleccione el Paquete del Módulo de Importación (Archivo zip.):" #. module: base #: view:ir.filters:0 msgid "Personal" -msgstr "" +msgstr "Personal" #. module: base #: field:base.language.export,modules:0 msgid "Modules To Export" -msgstr "" +msgstr "Módulos a exportar" #. module: base #: model:res.country,name:base.mt @@ -3700,6 +3707,8 @@ msgstr "Malta" msgid "" "Only users with the following access level are currently allowed to do that" msgstr "" +"Sólo los usuarios con los siguientes niveles de acceso están permitidos a " +"hacer eso" #. module: base #: field:ir.actions.server,fields_lines:0 @@ -3790,7 +3799,7 @@ msgstr "Antártida" #. module: base #: view:res.partner:0 msgid "Persons" -msgstr "" +msgstr "Personas" #. module: base #: view:base.language.import:0 @@ -3850,7 +3859,7 @@ msgstr "Interacción entre reglas" #: field:res.company,rml_footer:0 #: field:res.company,rml_footer_readonly:0 msgid "Report Footer" -msgstr "" +msgstr "Píe de Página de Reporte" #. module: base #: selection:res.lang,direction:0 @@ -3951,7 +3960,7 @@ msgstr "Togo" #: field:ir.actions.act_window,res_model:0 #: field:ir.actions.client,res_model:0 msgid "Destination Model" -msgstr "" +msgstr "Modelo destino" #. module: base #: selection:ir.sequence,implementation:0 @@ -3975,7 +3984,7 @@ msgstr "Tayiko / اردو" #: code:addons/orm.py:3901 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Acceso Denegado" #. module: base #: field:res.company,name:0 @@ -4085,7 +4094,7 @@ msgstr "%x - Representación apropiada de fecha." #. module: base #: view:res.partner:0 msgid "Tag" -msgstr "" +msgstr "Tag" #. module: base #: view:res.lang:0 @@ -4136,7 +4145,7 @@ msgstr "Nauru" #: code:addons/base/res/res_company.py:166 #, python-format msgid "Reg" -msgstr "" +msgstr "Reg" #. module: base #: model:ir.model,name:base.model_ir_property @@ -4300,7 +4309,7 @@ msgstr "S.L." #. module: base #: model:ir.actions.server,name:base.action_run_ir_action_todo msgid "Run Remaining Action Todo" -msgstr "" +msgstr "Correr acciones pendientes" #. module: base #: field:res.partner,ean13:0 @@ -4397,7 +4406,7 @@ msgstr "Plan de Cuentas" #. module: base #: model:ir.ui.menu,name:base.menu_event_main msgid "Events Organization" -msgstr "" +msgstr "Organización de Eventos" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form @@ -4425,7 +4434,7 @@ msgstr "Campo base" #. module: base #: model:ir.module.category,name:base.module_category_managing_vehicles_and_contracts msgid "Managing vehicles and contracts" -msgstr "" +msgstr "Gestión de Vehículos y contratos" #. module: base #: model:ir.module.module,description:base.module_base_setup @@ -4541,12 +4550,12 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_sale msgid "Quotations, Sales Orders, Invoicing" -msgstr "" +msgstr "Cotizaciones, Ordenes de Venta, Facturación" #. module: base #: field:res.partner,parent_id:0 msgid "Related Company" -msgstr "" +msgstr "Compañía Relacionada" #. module: base #: help:ir.actions.act_url,help:0 @@ -4592,7 +4601,7 @@ msgstr "'código' debe ser único" #. module: base #: model:ir.module.module,shortdesc:base.module_knowledge msgid "Knowledge Management System" -msgstr "" +msgstr "Gestión del Conocimiento" #. module: base #: view:workflow.activity:0 @@ -4688,12 +4697,12 @@ msgstr "Hindi / हिंदी" #: model:ir.actions.act_window,name:base.action_view_base_language_install #: model:ir.ui.menu,name:base.menu_view_base_language_install msgid "Load a Translation" -msgstr "" +msgstr "Cargar Traducción" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed Version" -msgstr "" +msgstr "Versión Instalada" #. module: base #: model:ir.module.module,description:base.module_account_test @@ -4807,7 +4816,7 @@ msgstr "Vista" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "no" -msgstr "" +msgstr "no" #. module: base #: model:ir.module.module,description:base.module_crm_partner_assign @@ -4841,7 +4850,7 @@ msgstr "Guinea ecuatorial" #. module: base #: model:ir.module.module,shortdesc:base.module_web_api msgid "OpenERP Web API" -msgstr "" +msgstr "Web API OpenERP" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_rib @@ -5048,7 +5057,7 @@ msgstr "Flujos" #. module: base #: model:ir.ui.menu,name:base.next_id_73 msgid "Purchase" -msgstr "" +msgstr "Compra" #. module: base #: selection:base.language.install,lang:0 @@ -5063,12 +5072,12 @@ msgstr "" #. module: base #: view:base.language.export:0 msgid "This file was generated using the universal" -msgstr "" +msgstr "Este archivo fue generado usando el universal" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "IT Services" -msgstr "" +msgstr "Servicios de TI" #. module: base #: model:ir.module.category,name:base.module_category_specific_industry_applications @@ -5078,7 +5087,7 @@ msgstr "Aplicaciones para Industrias Específicas" #. module: base #: model:ir.module.module,shortdesc:base.module_google_docs msgid "Google Docs integration" -msgstr "" +msgstr "Integración con Google Docs" #. module: base #: help:ir.attachment,res_model:0 @@ -5089,7 +5098,7 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:327 #, python-format msgid "name" -msgstr "" +msgstr "nombre" #. module: base #: model:ir.module.module,description:base.module_mrp_operations @@ -5135,7 +5144,7 @@ msgstr "Saltar" #. module: base #: model:ir.module.module,shortdesc:base.module_event_sale msgid "Events Sales" -msgstr "" +msgstr "Eventos de Ventas" #. module: base #: model:res.country,name:base.ls @@ -5145,7 +5154,7 @@ msgstr "Lesotho" #. module: base #: view:base.language.export:0 msgid ", or your preferred text editor" -msgstr "" +msgstr ", o tu editor de texto preferido" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign @@ -5187,7 +5196,7 @@ msgstr "Genérico" #. module: base #: model:ir.module.module,shortdesc:base.module_document_ftp msgid "Shared Repositories (FTP)" -msgstr "" +msgstr "Appraisals, Surveys\"" #. module: base #: model:res.country,name:base.sm @@ -5212,12 +5221,12 @@ msgstr "Establecer a NULL" #. module: base #: view:res.users:0 msgid "Save" -msgstr "" +msgstr "Appraisals, Surveys\"" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML Path" -msgstr "" +msgstr "Path XML" #. module: base #: model:res.country,name:base.bj @@ -5405,7 +5414,7 @@ msgstr "Tasas" #. module: base #: model:ir.module.module,shortdesc:base.module_email_template msgid "Email Templates" -msgstr "" +msgstr "Plantillas de Correo" #. module: base #: model:res.country,name:base.sy diff --git a/openerp/addons/base/i18n/hu.po b/openerp/addons/base/i18n/hu.po index faad4ff0e17..71101b33aa3 100644 --- a/openerp/addons/base/i18n/hu.po +++ b/openerp/addons/base/i18n/hu.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-10 21:04+0000\n" +"PO-Revision-Date: 2013-01-22 14:52+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-01-11 05:21+0000\n" -"X-Generator: Launchpad (build 16412)\n" +"X-Launchpad-Export-Date: 2013-01-23 06:02+0000\n" +"X-Generator: Launchpad (build 16441)\n" #. module: base #: model:res.company,overdue_msg:base.main_company @@ -2806,15 +2806,15 @@ msgstr "" "szolgáltatás (belépés/Kilépés) és munka kódolás (időkimutatás) szervezését. " "Időkimutatás bevitelét minden nap a munkások biztosítják. Egy meghatározott " "periódus végén, a munkavállalók érvényesítik az időkimutatásukat és a " -"vezetőjüknek kell nyugtáznia a csoport beírásait. A periódusok a vállalkozás " -"osztályaihoz lesznek meghatározva és beállíthatóak havi vagy heti " -"futtatásra.\n" +"vezetőjüknek kell jóváhagynia a csoport beírásait. A periódusok a " +"vállalkozás osztályaihoz lesznek meghatározva és beállíthatóak havi vagy " +"heti futtatásra.\n" "\n" "A teljes időkimutatás érvényesítési folyamat a következő:\n" "---------------------------------------------\n" "* Terve lap\n" "* Munkavállalók érvényesítései a periódus végén\n" -"* A projekt vezető nyugtázása\n" +"* A projekt vezető jóváhagyása\n" "\n" "A nyugtázást a vállalatnál be lehet állítani:\n" "------------------------------------------------\n" @@ -4139,18 +4139,18 @@ msgstr "" "\n" "Ez az alkalmazás lehetővé teszi a munkavállalók napi kiadásainak kezelését. " "Hozzáférést biztosít a munkavállalók kiadás jegyzékéhez valamint joga van " -"kiegészíteni és érvényesíteni illetve elutasítani azokat. Érvényesítés után " +"kiegészíteni és jóváhagyni illetve elutasítani azokat. Érvényesítés után " "számlát állít ki a munkavállaló részére.\n" -"A munkavállalók beiktathatják a kiadásaikat amit az érvényesítés után a " -"könyveléshez iktathat az érvényesítésre jogosultak.\n" +"A munkavállalók beiktathatják a kiadásaikat amit a jóváhagyás után a " +"könyveléshez iktathat a jóváhagyásra jogosultak.\n" "\n" "\n" "A következő iktatási folyamat van beépítve:\n" "---------------------------------\n" "* Tervezett kiadás\n" "* A munkavállalók által jóváhagyott jegyzetek\n" -"* Az osztályvezető általi érvényesítés\n" -"* A könyvelő általi érvényesítés és nyugta kiadás\n" +"* Az osztályvezető általi jóváhagyás\n" +"* A könyvelő általi jóváhagyás és nyugta kiadás\n" "\n" "Ez a modul az könyvelés elemzőt is használja és kompatibilis a számlázó és " "az időkimutatás modullal, így automatikus ügyfél kiadás újra-számlázást is " @@ -7616,7 +7616,7 @@ msgid "" msgstr "" "Ha a műveleti átmenet a kliens űrlapon található gomb megnyomásával " "történik, a jelző ellenőrzi a megnyomott gomb nevét. Ha a jel NULLA, nem " -"szükséges gomb az átmenet érvényesítéséhez." +"szükséges gomb az átmenet jóváhagyásához." #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -10099,7 +10099,7 @@ msgstr "" "Ha a számlának ez a sora érvényesítve lesz, ez generálni fog 3 elemző sort, " "egy könyvelési bejegyzéshez.\n" "\n" -"Az elemzési terv érvényesíti a minimum és maximum százalékot a megoszlási " +"Az elemzési terv jóváhagyja a minimum és maximum százalékot a megoszlási " "modell létrehozásakor.\n" " " @@ -13384,7 +13384,7 @@ msgstr "Probléma a 'Rekord Azonosító' beállításánál a Szerver müveletbe #: code:addons/orm.py:2816 #, python-format msgid "ValidateError" -msgstr "ValidateError" +msgstr "Jóváhagyásihiba" #. module: base #: view:base.module.import:0 @@ -13715,7 +13715,7 @@ msgstr "Normál" #. module: base #: model:ir.module.module,shortdesc:base.module_purchase_double_validation msgid "Double Validation on Purchases" -msgstr "A vásárlásokra kétszeres érvényesítés" +msgstr "A vásárlásokra kétszeres jóváhagyás" #. module: base #: field:res.bank,street2:0 @@ -14415,11 +14415,11 @@ msgstr "" "\n" "A jelentésnek van felelőse és különböző állapot színekből alakul ki:\n" "-----------------------------------------------------------------\n" -" * terv, nyitott, megszakított, végrehajtott.\n" +" * terv, nyitott, visszavont, végrehajtott.\n" "\n" "Kötegelt végrehajtások egy különálló jelentésen kezelhetők az összes eladás " "egyszeri\n" -"visszaigazolására, érvényesítésére vagy számla csomagra.\n" +"visszaigazolására, jóváhagyásra vagy számla csomagra.\n" "\n" "Támogatja a kötegelt számlázási módot mely beállítható partnerekre és " "megrendelésekre, például:\n" @@ -16040,7 +16040,7 @@ msgstr "" "=========================================================\n" "\n" "Ez a modul módosítja a vásárlás munkafolyamatot úgy, hogy a varázslóval " -"beállított minimum mennyiséget elért vásárlás után érvényesíteni kell a " +"beállított minimum mennyiséget elért vásárlás után jóvá kell hagyni a " "vásárlást\n" " " From e355f5bb979b4d26d112e762363189fc9b343d78 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Wed, 23 Jan 2013 08:30:05 +0100 Subject: [PATCH 41/72] [FIX] fixed a bug preventing the de-anonymization of the database bzr revid: olt@tinyerp.com-20130123073005-398u252n7082k0qy --- addons/anonymization/anonymization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/anonymization/anonymization.py b/addons/anonymization/anonymization.py index d21b57a901e..de46e2e8d03 100644 --- a/addons/anonymization/anonymization.py +++ b/addons/anonymization/anonymization.py @@ -549,7 +549,7 @@ class ir_model_fields_anonymize_wizard(osv.osv_memory): key = (line['model_id'], line['field_id']) custom_updates = fixes.get(key) if custom_updates: - custom_updates.sort(itemgetter('sequence')) + custom_updates.sort(key=itemgetter('sequence')) queries = [(record['query'], record['query_type']) for record in custom_updates if record['query_type']] elif table_name: queries = [("update %(table)s set %(field)s = %%(value)s where id = %%(id)s" % { From e5ad5f8e107e395cd9078e4b9a097ab38a7b4b6f Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 23 Jan 2013 09:44:22 +0100 Subject: [PATCH 42/72] [FIX] move filter added at xmo@openerp.com-20130122135139-s3ui9hb44xd7afba to after map If the filter is executed first, the "iteratee" is transformed to an array (from an object) and the "key" is lost, replaced by the indices to the array (and thus the name of the fields end up as "0", "1", "2", ... instead of their actual logical names) bzr revid: xmo@openerp.com-20130123084422-tbl05l5j72sx528n --- addons/web/static/src/js/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index 2f9c42b1f84..f3115c4f0bf 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -1789,8 +1789,8 @@ instance.web.search.ExtendedSearchProposition = instance.web.Widget.extend(/** @ init: function (parent, fields) { this._super(parent); this.fields = _(fields).chain() - .filter(function (field) { return !field.deprecated; }) .map(function(val, key) { return _.extend({}, val, {'name': key}); }) + .filter(function (field) { return !field.deprecated; }) .sortBy(function(field) {return field.string;}) .value(); this.attrs = {_: _, fields: this.fields, selected: null}; From 01ee5f60ee21fad5130a32b820ed62f6a802389d Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 23 Jan 2013 10:16:00 +0100 Subject: [PATCH 43/72] [FIX] pasting HTML content into the text box, then trying to navigate/alter it Navigation implementation can only deal with straight text (and asserts that), if HTML is pasted in a search input InputView#getSelection will throw errors and refuse to act. Clean up input content after a paste event, to ensure only plain text is present so it can be navigated. Don't forget to correctly re-set the cursor at the end of the input data, otherwise the user will face various deep DOM errors when trying to move around the input with the arrow keys (which he would usually be able to do after a paste). lp bug: https://launchpad.net/bugs/1102237 fixed bzr revid: xmo@openerp.com-20130123091600-nd4rwqpin6qj8ult --- addons/web/static/src/js/search.js | 47 +++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index f3115c4f0bf..a7af2f4ded5 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -127,7 +127,8 @@ my.InputView = instance.web.Widget.extend({ events: { focus: function () { this.trigger('focused', this); }, blur: function () { this.$el.text(''); this.trigger('blurred', this); }, - keydown: 'onKeydown' + keydown: 'onKeydown', + paste: 'onPaste', }, getSelection: function () { // get Text node @@ -199,6 +200,50 @@ my.InputView = instance.web.Widget.extend({ } break; } + }, + setCursorAtEnd: function () { + var sel = window.getSelection(); + sel.removeAllRanges(); + var range = document.createRange(); + // in theory, range.selectNodeContents should work here. In practice, + // MSIE9 has issues from time to time, instead of selecting the inner + // text node it would select the reference node instead (e.g. in demo + // data, company news, copy across the "Company News" link + the title, + // from about half the link to half the text, paste in search box then + // hit the left arrow key, getSelection would blow up). + // + // Explicitly selecting only the inner text node (only child node at + // this point, though maybe we should assert that) avoiids the issue + range.selectNode(this.el.childNodes[0]); + range.collapse(false); + sel.addRange(range); + }, + onPaste: function () { + // In MSIE and Webkit, it is possible to get various representations of + // the clipboard data at this point e.g. + // window.clipboardData.getData('Text') and + // event.clipboardData.getData('text/plain') to ensure we have a plain + // text representation of the object (and probably ensure the object is + // pastable as well, so nobody puts an image in the search view) + // (nb: since it's not possible to alter the content of the clipboard + // — at least in Webkit — to ensure only textual content is available, + // using this would require 1. getting the text data; 2. manually + // inserting the text data into the content; and 3. cancelling the + // paste event) + // + // But Firefox doesn't support the clipboard API (as of FF18) + // although it correctly triggers the paste event (Opera does not even + // do that) => implement lowest-denominator system where onPaste + // triggers a followup "cleanup" pass after the data has been pasted + setTimeout(function () { + // Read text content (ignore pasted HTML) + var data = this.$el.text(); + // paste raw text back in + this.$el.empty().text(data); + // Set the cursor at the end of the text, so the cursor is not lost + // in some kind of error-spawning limbo. + this.setCursorAtEnd(); + }.bind(this), 0); } }); my.FacetView = instance.web.Widget.extend({ From d5ab8a42416cc23702b9cf0d1de43d4183010e52 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 23 Jan 2013 10:29:46 +0100 Subject: [PATCH 44/72] [IMP] IE9 supports window.getSelection remove IE <9 usage of document.selection as we don't support these browsers anyway bzr revid: xmo@openerp.com-20130123092946-wgtvfz3493l7p7cw --- addons/web/static/src/js/search.js | 34 ++++++++---------------------- 1 file changed, 9 insertions(+), 25 deletions(-) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index a7af2f4ded5..051059d4ef6 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -132,37 +132,21 @@ my.InputView = instance.web.Widget.extend({ }, getSelection: function () { // get Text node - var root = this.$el[0].childNodes[0]; + var root = this.el.childNodes[0]; if (!root || !root.textContent) { // if input does not have a child node, or the child node is an // empty string, then the selection can only be (0, 0) return {start: 0, end: 0}; } - if (window.getSelection) { - var domRange = window.getSelection().getRangeAt(0); - assert(domRange.startContainer === root, - "selection should be in the input view"); - assert(domRange.endContainer === root, - "selection should be in the input view"); - return { - start: domRange.startOffset, - end: domRange.endOffset - } - } else if (document.selection) { - var ieRange = document.selection.createRange(); - var rangeParent = ieRange.parentElement(); - assert(rangeParent === root, - "selection should be in the input view"); - var offsetRange = document.body.createTextRange(); - offsetRange = offsetRange.moveToElementText(rangeParent); - offsetRange.setEndPoint("EndToStart", ieRange); - var start = offsetRange.text.length; - return { - start: start, - end: start + ieRange.text.length - } + var range = window.getSelection().getRangeAt(0); + assert(range.startContainer === root, + "selection should be in the input view"); + assert(range.endContainer === root, + "selection should be in the input view"); + return { + start: range.startOffset, + end: range.endOffset } - throw new Error("Could not get caret position"); }, onKeydown: function (e) { var sel; From be9f4b43b79da75d029c75e6ce07d54a1a7ddb2a Mon Sep 17 00:00:00 2001 From: "Anand Patel (OpenERP)" Date: Wed, 23 Jan 2013 15:01:55 +0530 Subject: [PATCH 45/72] [IMP] Added some test cases for the float_time bzr revid: pan@tinyerp.com-20130123093155-v9rrnb38hxugv1bt --- addons/web/static/test/formats.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/web/static/test/formats.js b/addons/web/static/test/formats.js index 4536501d71d..ac602e4b693 100644 --- a/addons/web/static/test/formats.js +++ b/addons/web/static/test/formats.js @@ -68,6 +68,12 @@ openerp.testing.section('web-formats', { strictEqual( instance.web.format_value(-0.0085, {type:'float', widget:'float_time'}), '-00:01'); + strictEqual( + instance.web.format_value(4.9999, {type:'float', widget:'float_time'}), + '05:00'); + strictEqual( + instance.web.format_value(-6.9999, {type:'float', widget:'float_time'}), + '-07:00'); }); test("format_float", function (instance) { var fl = 12.1234; From 8192977f3cbe463bd151fd09ca1aa92b4397cabd Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 23 Jan 2013 11:53:20 +0100 Subject: [PATCH 46/72] [IMP] add confirmation message when removing a global custom filter lp bug: https://launchpad.net/bugs/1103410 fixed bzr revid: xmo@openerp.com-20130123105320-pbmeqoudpb48s87m --- addons/web/static/src/js/search.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index 051059d4ef6..f67c99cbf8b 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -1608,6 +1608,7 @@ instance.web.search.CustomFilters = instance.web.search.Input.extend({ append_filter: function (filter) { var self = this; var key = this.key_for(filter); + var warning = _t("This filter is global and will be removed for everybody if you continue."); var $filter; if (key in this.$filters) { @@ -1625,6 +1626,9 @@ instance.web.search.CustomFilters = instance.web.search.Input.extend({ $('x') .click(function (e) { e.stopPropagation(); + if (!(filter.user_id || confirm(warning))) { + return; + } self.model.call('unlink', [id]).done(function () { $filter.remove(); delete self.$filters[key]; From 93884a8a113ae17a1926537ad5af5392778ee692 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 23 Jan 2013 12:32:53 +0100 Subject: [PATCH 47/72] [FIX] account: added the ir.values to add the partner_ledger report as report on the res.partner object + fixed that part of the code bzr revid: qdp-launchpad@openerp.com-20130123113253-0gs8idcha0qbem9s --- .../account/report/account_partner_ledger.py | 141 ++---------------- .../account_report_partner_ledger_view.xml | 9 +- 2 files changed, 17 insertions(+), 133 deletions(-) diff --git a/addons/account/report/account_partner_ledger.py b/addons/account/report/account_partner_ledger.py index f72e81fbc08..21c1ee3d846 100644 --- a/addons/account/report/account_partner_ledger.py +++ b/addons/account/report/account_partner_ledger.py @@ -35,10 +35,7 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): 'lines': self.lines, 'sum_debit_partner': self._sum_debit_partner, 'sum_credit_partner': self._sum_credit_partner, -# 'sum_debit': self._sum_debit, -# 'sum_credit': self._sum_credit, 'get_currency': self._get_currency, - 'comma_me': self.comma_me, 'get_start_period': self.get_start_period, 'get_end_period': self.get_end_period, 'get_account': self._get_account, @@ -78,11 +75,6 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): move_state = ['draft','posted'] if self.target_move == 'posted': move_state = ['posted'] - - if (data['model'] == 'res.partner'): - ## Si on imprime depuis les partenaires - if ids: - PARTNER_REQUEST = "AND line.partner_id IN %s",(tuple(ids),) if self.result_selection == 'supplier': self.ACCOUNT_TYPE = ['payable'] elif self.result_selection == 'customer': @@ -98,7 +90,11 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): 'WHERE a.type IN %s' \ "AND a.active", (tuple(self.ACCOUNT_TYPE), )) self.account_ids = [a for (a,) in self.cr.fetchall()] - partner_to_use = [] + params = [tuple(move_state), tuple(self.account_ids)] + #if we print from the partners, add a clause on active_ids + if (data['model'] == 'res.partner') and ids: + PARTNER_REQUEST = "AND l.partner_id IN %s" + params += [tuple(ids)] self.cr.execute( "SELECT DISTINCT l.partner_id " \ "FROM account_move_line AS l, account_account AS account, " \ @@ -110,30 +106,10 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): # "AND " + self.query +" " \ "AND l.account_id IN %s " \ " " + PARTNER_REQUEST + " " \ - "AND account.active ", - (tuple(move_state), tuple(self.account_ids),)) - - res = self.cr.dictfetchall() - for res_line in res: - partner_to_use.append(res_line['partner_id']) - new_ids = partner_to_use - self.partner_ids = new_ids - objects = obj_partner.browse(self.cr, self.uid, new_ids) - return super(third_party_ledger, self).set_context(objects, data, new_ids, report_type) - - def comma_me(self, amount): - if type(amount) is float: - amount = str('%.2f'%amount) - else: - amount = str(amount) - if (amount == '0'): - return ' ' - orig = amount - new = re.sub("^(-?\d+)(\d{3})", "\g<1>'\g<2>", amount) - if orig == new: - return new - else: - return self.comma_me(new) + "AND account.active ", params) + self.partner_ids = [res['partner_id'] for res in self.cr.dictfetchall()] + objects = obj_partner.browse(self.cr, self.uid, self.partner_ids) + return super(third_party_ledger, self).set_context(objects, data, self.partner_ids, report_type) def lines(self, partner): move_state = ['draft','posted'] @@ -290,105 +266,6 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): result_tmp = result_tmp + 0.0 return result_tmp + result_init - # code is deprecated -# def _sum_debit(self): -# move_state = ['draft','posted'] -# if self.target_move == 'posted': -# move_state = ['posted'] -# -# if not self.ids: -# return 0.0 -# result_tmp = 0.0 -# result_init = 0.0 -# if self.reconcil: -# RECONCILE_TAG = " " -# else: -# RECONCILE_TAG = "AND reconcile_id IS NULL" -# if self.initial_balance: -# self.cr.execute( -# "SELECT sum(debit) " \ -# "FROM account_move_line AS l, " \ -# "account_move AS m " -# "WHERE partner_id IN %s" \ -# "AND m.id = l.move_id " \ -# "AND m.state IN %s " -# "AND account_id IN %s" \ -# "AND reconcile_id IS NULL " \ -# "AND " + self.init_query + " ", -# (tuple(self.partner_ids), tuple(move_state), tuple(self.account_ids))) -# contemp = self.cr.fetchone() -# if contemp != None: -# result_init = contemp[0] or 0.0 -# else: -# result_init = result_tmp + 0.0 -# -# self.cr.execute( -# "SELECT sum(debit) " \ -# "FROM account_move_line AS l, " \ -# "account_move AS m " -# "WHERE partner_id IN %s" \ -# "AND m.id = l.move_id " \ -# "AND m.state IN %s " -# "AND account_id IN %s" \ -# " " + RECONCILE_TAG + " " \ -# "AND " + self.query + " ", -# (tuple(self.partner_ids), tuple(move_state) ,tuple(self.account_ids),)) -# contemp = self.cr.fetchone() -# if contemp != None: -# result_tmp = contemp[0] or 0.0 -# else: -# result_tmp = result_tmp + 0.0 -# return result_tmp + result_init -# -# def _sum_credit(self): -# move_state = ['draft','posted'] -# if self.target_move == 'posted': -# move_state = ['posted'] -# -# if not self.ids: -# return 0.0 -# result_tmp = 0.0 -# result_init = 0.0 -# if self.reconcil: -# RECONCILE_TAG = " " -# else: -# RECONCILE_TAG = "AND reconcile_id IS NULL" -# if self.initial_balance: -# self.cr.execute( -# "SELECT sum(credit) " \ -# "FROM account_move_line AS l, " \ -# "account_move AS m " -# "WHERE partner_id IN %s" \ -# "AND m.id = l.move_id " \ -# "AND m.state IN %s " -# "AND account_id IN %s" \ -# "AND reconcile_id IS NULL " \ -# "AND " + self.init_query + " ", -# (tuple(self.partner_ids), tuple(move_state), tuple(self.account_ids))) -# contemp = self.cr.fetchone() -# if contemp != None: -# result_init = contemp[0] or 0.0 -# else: -# result_init = result_tmp + 0.0 -# -# self.cr.execute( -# "SELECT sum(credit) " \ -# "FROM account_move_line AS l, " \ -# "account_move AS m " -# "WHERE partner_id IN %s" \ -# "AND m.id = l.move_id " \ -# "AND m.state IN %s " -# "AND account_id IN %s" \ -# " " + RECONCILE_TAG + " " \ -# "AND " + self.query + " ", -# (tuple(self.partner_ids), tuple(move_state), tuple(self.account_ids),)) -# contemp = self.cr.fetchone() -# if contemp != None: -# result_tmp = contemp[0] or 0.0 -# else: -# result_tmp = result_tmp + 0.0 -# return result_tmp + result_init - def _get_partners(self): if self.result_selection == 'customer': return 'Receivable Accounts' diff --git a/addons/account/wizard/account_report_partner_ledger_view.xml b/addons/account/wizard/account_report_partner_ledger_view.xml index f3dd9a80f09..34c5d55e4c1 100644 --- a/addons/account/wizard/account_report_partner_ledger_view.xml +++ b/addons/account/wizard/account_report_partner_ledger_view.xml @@ -23,7 +23,7 @@ - Select Period + Partner Ledger account.partner.ledger ir.actions.act_window form @@ -33,6 +33,13 @@ new + + + + Print Partner Ledger + + + Date: Wed, 23 Jan 2013 15:38:02 +0100 Subject: [PATCH 48/72] [FIX] base, res.company: fixed overlapping in company header when display_address() returns a 5 lines text (UK for example) bzr revid: qdp-launchpad@openerp.com-20130123143802-n9nbwm18xn6xh7z3 --- openerp/addons/base/res/res_company.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openerp/addons/base/res/res_company.py b/openerp/addons/base/res/res_company.py index 6b90a612fb9..21c9b854ca3 100644 --- a/openerp/addons/base/res/res_company.py +++ b/openerp/addons/base/res/res_company.py @@ -318,7 +318,7 @@ class res_company(osv.osv): 1.3cm %s 20cm %s [[ company.rml_header1 ]] [[ company.partner_id.name ]] - + [[ display_address(company.partner_id) or '' ]] Phone: @@ -344,8 +344,8 @@ class res_company(osv.osv): """ - _header_a4 = _header_main % ('23.0cm', '27.6cm', '27.7cm', '27.7cm', '27.8cm', '27.4cm', '25.8cm', '26.0cm', '26.0cm', '25.6cm', '25.6cm', '25.5cm', '25.5cm') - _header_letter = _header_main % ('21.3cm', '25.9cm', '26.0cm', '26.0cm', '26.1cm', '25.7cm', '24.1cm', '24.3cm', '24.3cm', '23.9cm', '23.9cm', '23.8cm', '23.8cm') + _header_a4 = _header_main % ('23.0cm', '27.6cm', '27.7cm', '27.7cm', '27.8cm', '27.3cm', '25.3cm', '25.0cm', '25.0cm', '24.6cm', '24.6cm', '24.5cm', '24.5cm') + _header_letter = _header_main % ('21.3cm', '25.9cm', '26.0cm', '26.0cm', '26.1cm', '25.6cm', '23.6cm', '23.3cm', '23.3cm', '22.9cm', '22.9cm', '22.8cm', '22.8cm') def onchange_paper_format(self, cr, uid, ids, paper_format, context=None): if paper_format == 'us_letter': From b3300f6074bbc36f18b17af5a6cb7807e1943d5f Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 23 Jan 2013 16:33:45 +0100 Subject: [PATCH 49/72] [FIX] signal registry change when uninstall modules bzr revid: chs@openerp.com-20130123153345-x7jm13eieqgeg5i7 --- openerp/addons/base/module/module.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openerp/addons/base/module/module.py b/openerp/addons/base/module/module.py index 123bf4124ed..a0d1eedef2b 100644 --- a/openerp/addons/base/module/module.py +++ b/openerp/addons/base/module/module.py @@ -500,6 +500,7 @@ class module(osv.osv): raise orm.except_orm(_('Error'), _("The `base` module cannot be uninstalled")) dep_ids = self.downstream_dependencies(cr, uid, ids, context=context) self.write(cr, uid, ids + dep_ids, {'state': 'to remove'}) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return dict(ACTION_DICT, name=_('Uninstall')) def button_uninstall_cancel(self, cr, uid, ids, context=None): From b3b800bd17696c83fbfbaade18b730581fe00a5c Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 23 Jan 2013 18:47:24 +0100 Subject: [PATCH 50/72] [FIX] signal registry change when install modules from config wizards bzr revid: chs@openerp.com-20130123174724-bqonj3d4dufof2vw --- openerp/addons/base/res/res_config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openerp/addons/base/res/res_config.py b/openerp/addons/base/res/res_config.py index ff0c3bfe6ad..a2368a9f508 100644 --- a/openerp/addons/base/res/res_config.py +++ b/openerp/addons/base/res/res_config.py @@ -21,6 +21,7 @@ import logging from operator import attrgetter +import openerp from openerp import pooler from openerp.osv import osv, fields from openerp.tools import ustr @@ -358,7 +359,8 @@ class res_config_installer(osv.osv_memory): cr, uid, modules.search(cr, uid, [('name','in',to_install)]), 'to install', ['uninstalled'], context=context) - cr.commit() #TOFIX: after remove this statement, installation wizard is fail + cr.commit() + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) new_db, self.pool = pooler.restart_pool(cr.dbname, update_module=True) res_config_installer() From 688bb77d95b3708bb05ddc18dac363cd2c0d98d3 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 24 Jan 2013 05:35:15 +0000 Subject: [PATCH 51/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053511-cxfjeh7rfwridjv1 bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053515-bl01lm43wsqnoenv --- addons/base_calendar/i18n/cs.po | 142 +++++++++---------- addons/base_setup/i18n/ro.po | 48 +++++-- addons/base_status/i18n/ro.po | 81 +++++++++++ addons/board/i18n/ro.po | 62 +++++--- addons/claim_from_delivery/i18n/ro.po | 14 +- addons/decimal_precision/i18n/ro.po | 12 +- addons/delivery/i18n/ro.po | 66 +++++++-- addons/document/i18n/ro.po | 42 +++--- addons/document_ftp/i18n/ro.po | 18 +-- addons/document_page/i18n/ro.po | 53 +++---- addons/document_webdav/i18n/ro.po | 12 +- addons/edi/i18n/ro.po | 20 +-- addons/email_template/i18n/ro.po | 44 +++--- addons/event_moodle/i18n/ro.po | 195 ++++++++++++++++++++++++++ addons/event_sale/i18n/ro.po | 96 +++++++++++++ addons/fetchmail/i18n/ro.po | 20 +-- addons/google_base_account/i18n/ro.po | 20 +-- addons/hr_contract/i18n/ro.po | 18 +-- addons/purchase/i18n/nl.po | 10 +- addons/web/i18n/nl.po | 8 +- 20 files changed, 721 insertions(+), 260 deletions(-) create mode 100644 addons/base_status/i18n/ro.po create mode 100644 addons/event_moodle/i18n/ro.po create mode 100644 addons/event_sale/i18n/ro.po diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index 26159caedb7..d191d984c79 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -8,14 +8,14 @@ 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-01-22 18:30+0000\n" +"PO-Revision-Date: 2013-01-24 01:17+0000\n" "Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" -"X-Generator: Launchpad (build 16441)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -44,7 +44,7 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "týden" #. module: base_calendar #: field:calendar.event,we:0 @@ -56,14 +56,14 @@ msgstr "St" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "" +msgstr "Neznámý" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "Opakované setkání" +msgstr "Opakovaná schůzka" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 @@ -74,7 +74,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm msgid "Alarms" -msgstr "Budíky" +msgstr "Upozornění" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -139,13 +139,13 @@ msgstr "Březen" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "Zadejte typ pozvání" +msgstr "Zadejte druh pozvání" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -166,7 +166,7 @@ msgstr "Celý den" #: field:calendar.todo,vtimezone:0 #: field:crm.meeting,vtimezone:0 msgid "Timezone" -msgstr "Časová zóna" +msgstr "Časové pásmo" #. module: base_calendar #: selection:calendar.attendee,availability:0 @@ -175,7 +175,7 @@ msgstr "Časová zóna" #: selection:crm.meeting,show_as:0 #: selection:res.users,availability:0 msgid "Free" -msgstr "Volný" +msgstr "Volno" #. module: base_calendar #: help:crm.meeting,message_unread:0 @@ -190,7 +190,7 @@ msgstr "" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 msgid "Basic Alarm" -msgstr "Základní budík" +msgstr "Základní upozornění" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 @@ -237,7 +237,7 @@ msgstr "Zprávy a historie komunikace" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -259,7 +259,7 @@ msgstr "Chyba!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Předseda" #. module: base_calendar #: view:crm.meeting:0 @@ -308,7 +308,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Název" #. module: base_calendar #: view:calendar.event:0 @@ -334,7 +334,7 @@ msgstr "Vyberte datum, kdy chcete opakovat setkání" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Události" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -540,7 +540,7 @@ msgstr "Datum vytvoření" #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Událost" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -593,7 +593,7 @@ msgstr "Čt" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Podrobnosti" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -604,21 +604,21 @@ msgstr "Pověřit" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "Tyto kontakty nemají e-mail:" #. 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 "rok" #. 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 "Druhy událostí" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -631,17 +631,17 @@ msgstr "Vytvořeno" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Veřejné pro zaměstnance" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "hodin" #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" -msgstr "Kontaktní" +msgstr "Kontakt" #. module: base_calendar #: field:calendar.attendee,language:0 @@ -653,7 +653,7 @@ msgstr "Jazyk" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "Opakovat dokud" +msgstr "Konec opakování" #. module: base_calendar #: view:crm.meeting:0 @@ -697,7 +697,7 @@ msgstr "Úterý" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Štítky" #. module: base_calendar #: view:calendar.event:0 @@ -726,12 +726,12 @@ msgstr "Vlastník" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "Nechat automaticky opakovat události v intervalu" +msgstr "Nechat automaticky opakovat událost v intervalu" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalendář" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -741,13 +741,13 @@ msgstr "Běžné jméno" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "Odmítnuté" +msgstr "Odmítnuto" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." -msgstr "" +msgstr "Seskupení podle data není podporováno, použijte zobrazení kalendáře." #. module: base_calendar #: view:calendar.event:0 @@ -778,7 +778,7 @@ msgstr "Soukromí" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "Informace základního budíku" +msgstr "Informace základního upozornění" #. module: base_calendar #: field:calendar.event,fr:0 @@ -824,7 +824,7 @@ msgstr "Příloha" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Uzavřeno" #. module: base_calendar #: view:calendar.event:0 @@ -837,19 +837,19 @@ msgstr "Od" #: field:calendar.todo,alarm_id:0 #: field:crm.meeting,alarm_id:0 msgid "Reminder" -msgstr "Upomínka" +msgstr "Připomínka" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Počet opakování" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Interní schůzka" #. module: base_calendar #: view:calendar.event:0 @@ -871,12 +871,12 @@ msgstr "Stav" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "Email pozvané osoby" +msgstr "E-mail pozvané osoby" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Schůzka se zákazníkem" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -902,12 +902,12 @@ msgstr "Pondělí" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Diskuze" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modely" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -926,7 +926,7 @@ msgstr "Datum události" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Pozvánky" #. module: base_calendar #: view:calendar.event:0 @@ -942,7 +942,7 @@ msgstr "Datum zápisu" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "Pověřen od" +msgstr "Pověřil" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 @@ -976,7 +976,7 @@ msgstr "Listopad" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Označuje skupinu, do které účastník patří" +msgstr "Označuje skupinu, jejímž je účastník členem" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1006,7 +1006,7 @@ msgstr "Nejistý" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "Chyba! Koncové datum nemůže být dříve než počáteční datum." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1060,12 +1060,12 @@ msgstr "Aktivní" #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Nemůžete duplikovat účastníka." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Vyberte dny v měsíci, kdy opakovat setkání" +msgstr "Vyberte dny v měsíci, kdy chcete opakovat setkání" #. module: base_calendar #: field:calendar.alarm,action:0 @@ -1079,8 +1079,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"'Trvání' a 'Opakování' jsou oba volitelné, ale když je zvolen jeden, MUSÍ " -"být i druhý" +"'Trvání' a 'Opakování' jsou oba volitelné, ale když jeden určíte, MUSÍTE " +"určit i druhý" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1095,12 +1095,12 @@ msgstr "Delegováno na" #. module: base_calendar #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" -msgstr "Definuje akci k vykonání, když je vyvolán budík" +msgstr "Definuje akci, která se provede při spuštění upozornění" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Začátek" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1132,17 +1132,17 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Konec" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "Podrobnosti upomínky" +msgstr "Podrobnosti připomínky" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Externí schůzka" #. module: base_calendar #: view:crm.meeting:0 @@ -1159,12 +1159,12 @@ msgstr "Dokončeno" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Opakovat každých (Dny/Týden/Měsíc/Rok)" +msgstr "Opakovat každý (den/týden/měsíc/rok)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Celodenní?" #. module: base_calendar #: view:calendar.event:0 @@ -1202,7 +1202,7 @@ msgstr "Zodpovědný uživatel" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Vyberte dny v týdnu" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1514 @@ -1281,12 +1281,12 @@ msgstr "Měsíc" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "den" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Potvrzené události" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1340,12 +1340,12 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Druh schůzky" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Pověřený" +msgstr "delegováno" #. module: base_calendar #: field:calendar.event,sa:0 @@ -1370,7 +1370,7 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nepotvrzeno" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1420,19 +1420,19 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Zpráva" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 #: field:crm.meeting,base_calendar_alarm_id:0 msgid "Alarm" -msgstr "Budík" +msgstr "Upozornění" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "Posláno uživatelem" +msgstr "Odesláno uživatelem" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1445,12 +1445,12 @@ msgstr "Duben" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "neexistující e-mailové adresy" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "Perioda opakování" +msgstr "Interval opakování" #. module: base_calendar #: field:calendar.event,week_list:0 @@ -1476,7 +1476,7 @@ msgstr "Podle dne" #: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "Nejprve musíte určit datum pozvání." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1498,7 +1498,7 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "Pro informační účely" +msgstr "Pro informaci" #. module: base_calendar #: field:calendar.event,select1:0 @@ -1539,7 +1539,7 @@ msgstr "Přadí" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "Nastavit budík na tento čas před tím, než dojde k události" +msgstr "Nastavit upozornění, než nastane událost" #. module: base_calendar #: view:calendar.event:0 @@ -1559,7 +1559,7 @@ msgstr "Sobota" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Opakovat každý" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1572,7 +1572,7 @@ msgstr "Druhý" #: field:calendar.attendee,availability:0 #: field:res.users,availability:0 msgid "Free/Busy" -msgstr "Volný/Zaneprázdněný" +msgstr "Volno/Zaneprázdněn(a)" #. module: base_calendar #: field:calendar.alarm,duration:0 @@ -1589,7 +1589,7 @@ msgstr "Trvání" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Datum spouštění" +msgstr "Datum spuštění" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index 72c794836cb..4f491c87275 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -8,14 +8,14 @@ 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-01-22 18:44+0000\n" +"PO-Revision-Date: 2013-01-23 18:05+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-23 06:03+0000\n" -"X-Generator: Launchpad (build 16441)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -297,6 +297,14 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Pluginul va permite sa arhivati email-uri si atasamentele lor in obiectele\n" +" OpenERP selectate. Puteti selecta un partener, sau o pista " +"si\n" +" sa atasati emailul selectat ca fisier .eml in\n" +" atasamentul inregistrarii selectate. Puteti crea documente " +"pentru Pista MRC,\n" +" Partener din email-urile selectate.\n" +" Acesta instaleaza modulul plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -312,7 +320,7 @@ msgstr "Folositi alt cuvant pentru a spune \"Client\"" #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Configureaza Vanzarile" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -325,16 +333,23 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Pluginul Outlook va permite sa selectati un obiect pe care doriti sa il " +"aadaugati\n" +" email-ului dumneavoastra si atasamentele lui din MS Outlook. " +"Puteti selecta un partener,\n" +" sau un obiect pista si sa arhivati un email\n" +" selectat intr-un mesaj de email OpenERP cu atasamente.\n" +" Acesta instaleaza modulul plugin_outlook." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Optiuni" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activeaza portalul clientului" #. module: base_setup #: view:base.config.settings:0 @@ -343,36 +358,39 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"se face astfel.\n" +" Odata activat, pagina de autentificare " +"va fi inlocuita cu pagina de Internet publica." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Permite impartirea documentelor" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(stiri despre companie, locuri de munca, formular de contact, etc.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Activeaza portalul public" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Configureaza serverele de trimitere email-uri" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Integrarea Retelei Sociale" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Permite clientilor dumneavoastra accesul la documentele lor." #. module: base_setup #: view:base.config.settings:0 @@ -384,7 +402,7 @@ msgstr "Revocare" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Aplica" #. module: base_setup #: view:base.setup.terminology:0 @@ -395,9 +413,9 @@ msgstr "Specificati-va Terminologia" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "sau" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Configurati datele companiei dumneavoastra" diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po new file mode 100644 index 00000000000..d1ef009a89b --- /dev/null +++ b/addons/base_status/i18n/ro.po @@ -0,0 +1,81 @@ +# Romanian 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-01-23 18:24+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Eroare !" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s a fost deschis." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s a fost reinnoit." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Eroare!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"Nu puteti avansa, sunteti deja la cel mai inalt nivel in ceea ce priveste " +"categoria echipei d-voastra de vanzari." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s este acum in asteptare." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s a fost anulat." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" +"Sunteti deja la cel mai inalt nivel al categoriei echipei dumneavoastra de " +"vanzari.\n" +"Prin urmare nu mai puteti avansa." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s a fost inchis." diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index f6b3583b82c..d4907520f21 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -8,58 +8,58 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 19:52+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Creeaza Panou" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "Creeaza" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Reseteaza Formatul.." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Creeaza Tablou de bord Nou" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Alegeti formatul tabloului de bord" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Adauga" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Sunteti sigur(a) ca doriti sa stergeti acest obiect ?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,31 +71,31 @@ msgstr "Panou" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Tabloul meu de bord" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Numele Panoului" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Crearea Panoului" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Adauga la Tabloul de bord" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,39 +115,55 @@ msgid "" " \n" " " msgstr "" +"\n" +"

\n" +" Tabloul dumneavoastra de bord este gol.\n" +"

\n" +" Pentru a adauga primul raport la acest tablou de bord, " +"mergeti in orice\n" +" meniu, schimbati pe lista sau vizualizare grafic, si " +"faceti click pe 'Adauga la\n" +" Panoul de bord' in optiunile de cautare extinsa.\n" +"

\n" +" Puteti filtra si grupa datele inainte de a le introduce " +"in\n" +" tabloul de bord folosind optiunile de cautare.\n" +"

\n" +" \n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Reseteaza" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Meniu Principal" +msgstr "Meniu principal" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Schimba Formatul.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Editeaza Formatul" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Modifica formatul" #. module: board #: view:board.create:0 @@ -157,11 +173,11 @@ msgstr "Anuleaza" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "sau" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Titlul noului obiect din panou" diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index 227be30267a..067b201847e 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -8,26 +8,26 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 19:36+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Revendicari" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Ordin de livrare" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Revendicare din Livrare" diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index c9ca45f0be4..4c3e0408090 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 19:54+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -26,7 +26,7 @@ msgstr "Cifre" #: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form #: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form msgid "Decimal Accuracy" -msgstr "Exactitate zecimala" +msgstr "Exactitate Zecimala" #. module: decimal_precision #: field:decimal.precision,name:0 @@ -42,7 +42,7 @@ msgstr "" #. module: decimal_precision #: view:decimal.precision:0 msgid "Decimal Precision" -msgstr "Precizie zecimala" +msgstr "Precizie Zecimala" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index 0b2286fa73e..b29b96ce000 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 20:27+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: delivery #: report:sale.shipping:0 @@ -30,7 +30,7 @@ msgstr "Livrare prin posta" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " in Functie de " #. module: delivery #: view:delivery.carrier:0 @@ -52,7 +52,7 @@ msgstr "Linie grila de livrare" #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unitatea de Masura" #. module: delivery #: view:delivery.carrier:0 @@ -71,7 +71,7 @@ msgstr "Volum" #. module: delivery #: view:delivery.carrier:0 msgid "Zip" -msgstr "" +msgstr "Cod postal" #. module: delivery #: field:delivery.grid,line_ids:0 @@ -93,6 +93,8 @@ msgstr "Comanda de livrare" #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"Nici o linie nu se potriveste cu acest produs sau comanda in grila de " +"livrare aleasa." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 @@ -133,6 +135,20 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea o lista de preturi pentru o " +"anumita regiune.\n" +"

\n" +" Lista de preturi de livrare va permite sa calculati pretul " +"de cost si de\n" +" vanzare a livrarii in functie de greutatea\n" +" produselor si alte criterii. Puteti defini mai multe liste " +"de preturi\n" +" pentru fiecare metoda de livrare: pe tara sau pe o zona " +"dintr-o anumita\n" +" tara definita printr-un cod postal.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 @@ -152,7 +168,7 @@ msgstr "Cantitate" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Adauga la Cotare" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -205,7 +221,7 @@ msgstr "Definitie grila" #: code:addons/delivery/stock.py:90 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertizare!" #. module: delivery #: field:delivery.grid.line,operator:0 @@ -225,7 +241,7 @@ msgstr "Comanda de vanzare" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Comenzi de Livrare" #. module: delivery #: view:sale.order:0 @@ -233,6 +249,8 @@ msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." msgstr "" +"Daca nu 'Adaugati la Cotare', pretul exact va fi calculat atunci cand " +"facturati pe baza comenzilor de livrare." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -280,7 +298,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Gratuit daca Valoarea Totala a Comenzii este mai Mare decat" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -437,6 +455,22 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a defini o metoda noua de livrare. \n" +"

\n" +" Fiecare companie de transport (de exemplu UPS) poate avea " +"mai multe metode de livrare (de exemplu\n" +" UPS Expres, UPS Standard) cu un set de norme de stabilire a " +"pretului atasate\n" +" fiecarei metode.\n" +"

\n" +" Aceste metode permit calcularea automata a pretului de " +"livrare\n" +" in functie de setarile dumneavoastra; in comanda de vanzare " +"(bazata pe\n" +" cotatie) sau factura (bazata pe ordinele de livrare).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -469,7 +503,7 @@ msgstr "Gratuit daca e mai mult de %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Incarcaturi primite" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -479,7 +513,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Unitate de masura pentru Greutate" #. module: delivery #: report:sale.shipping:0 @@ -555,7 +589,7 @@ msgstr "Transportator" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Metode de Livrare" #. module: delivery #: code:addons/delivery/sale.py:57 @@ -582,7 +616,7 @@ msgstr "Pret de vanzare" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "" +msgstr "Tipareste Ordinul de Livrare" #. module: delivery #: view:delivery.grid:0 @@ -595,6 +629,8 @@ msgstr "Stari" msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" msgstr "" +"Unitatea de Masura (Unitatea de Masura) este unitatea de masura pentru " +"Greutate" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index 92a62bf9e54..f65ef679466 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 20:38+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: document #: field:document.directory,parent_id:0 @@ -50,7 +50,7 @@ msgstr "Grupeaza dupa..." #. module: document #: view:ir.attachment:0 msgid "Modification" -msgstr "" +msgstr "Modificare" #. module: document #: view:document.directory:0 @@ -92,7 +92,7 @@ msgstr "Continut director" #. module: document #: view:ir.attachment:0 msgid "My Document(s)" -msgstr "" +msgstr "Documentul meu(s)" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration @@ -113,7 +113,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Numele campului." #. module: document #: code:addons/document/document.py:326 @@ -203,6 +203,14 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea un document nou. \n" +"

\n" +" Arhiva documentelor va permite accesul la toate atasamentele, " +"precum\n" +" email-uri, documentele proiectelor, facturi etc.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:326 @@ -250,14 +258,14 @@ msgstr "Tip" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "Numele fisierului trebuie sa fie unic intr-un director !" #. module: document #: code:addons/document/document.py:110 #: code:addons/document/document.py:296 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copie)" #. module: document #: help:document.directory,ressource_type_id:0 @@ -279,7 +287,7 @@ msgstr "" #. module: document #: constraint:document.directory:0 msgid "Error! You cannot create recursive directories." -msgstr "" +msgstr "Eroare! Nu puteti crea directoare recursive." #. module: document #: field:document.directory,resource_field:0 @@ -363,12 +371,12 @@ msgstr "Utilizatorul ultimei modificari" #: model:ir.actions.act_window,name:document.action_view_files_by_user_graph #: view:report.document.user:0 msgid "Files by User" -msgstr "" +msgstr "Fisiere dupa Utilizator" #. module: document #: view:ir.attachment:0 msgid "on" -msgstr "" +msgstr "activat" #. module: document #: field:document.directory,domain:0 @@ -428,7 +436,7 @@ msgstr "Static" #. module: document #: field:report.document.user,user:0 msgid "unknown" -msgstr "" +msgstr "necunoscut(a)" #. module: document #: view:document.directory:0 @@ -505,7 +513,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:6 #, python-format msgid "Attachment(s)" -msgstr "" +msgstr "Atasament(e)" #. module: document #: selection:report.document.user,month:0 @@ -593,7 +601,7 @@ msgstr "Numele directorului trebuie sa fie unic !" #. module: document #: view:ir.attachment:0 msgid "Attachments" -msgstr "" +msgstr "Atasamente" #. module: document #: field:document.directory,create_uid:0 @@ -683,7 +691,7 @@ msgstr "ir.atasament" #. module: document #: view:report.document.user:0 msgid "Users File" -msgstr "" +msgstr "Utilizatori Fisier" #. module: document #: model:ir.model,name:document.model_document_configuration @@ -750,7 +758,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:17 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #. module: document #: field:document.directory.content,sequence:0 diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index 913820692b3..e8f12a43288 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 20:42+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -45,7 +45,7 @@ msgstr "" #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "cunostinte.config.setari" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse @@ -55,7 +55,7 @@ msgstr "Rasfoieste fisiere" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "Faceti click pe url pentru a cauta documentele" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -70,7 +70,7 @@ msgstr "Configurare Server FTP" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "Cautare Documente" #. module: document_ftp #: view:document.ftp.browse:0 @@ -98,7 +98,7 @@ msgstr "Adresa" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Cancel" -msgstr "" +msgstr "Anuleaza" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse @@ -118,7 +118,7 @@ msgstr "Rasfoire document" #. module: document_ftp #: view:document.ftp.browse:0 msgid "or" -msgstr "" +msgstr "sau" #. module: document_ftp #: view:document.ftp.browse:0 diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index 4afd176d4e3..07d26674a48 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 20:58+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: document_page #: view:document.page:0 @@ -23,7 +23,7 @@ msgstr "" #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category msgid "Category" -msgstr "" +msgstr "Categorie" #. module: document_page #: view:document.page:0 @@ -46,7 +46,7 @@ msgstr "Meniu" #: view:document.page:0 #: model:ir.model,name:document_page.model_document_page msgid "Document Page" -msgstr "" +msgstr "Pagina Documentului" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history @@ -69,13 +69,15 @@ msgstr "Grupează după..." #. module: document_page #: view:document.page:0 msgid "Template" -msgstr "" +msgstr "Sablon" #. module: document_page #: view:document.page:0 msgid "" "that will be used as a content template for all new page of this category." msgstr "" +"care va fi folosit ca un sablon de continut pentru toate paginile noi din " +"aceasta categorie." #. module: document_page #: field:document.page,name:0 @@ -90,27 +92,27 @@ msgstr "Wizard Creează meniul" #. module: document_page #: field:document.page,type:0 msgid "Type" -msgstr "" +msgstr "Tip" #. module: document_page #: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff msgid "wizard.document.page.history.show_diff" -msgstr "" +msgstr "wizard.document.pagina.istoric.arata_dif" #. module: document_page #: field:document.page.history,create_uid:0 msgid "Modified By" -msgstr "" +msgstr "Modificat de" #. module: document_page #: view:document.page.create.menu:0 msgid "or" -msgstr "" +msgstr "sau" #. module: document_page #: help:document.page,type:0 msgid "Page type" -msgstr "" +msgstr "Tipul de pagina" #. module: document_page #: view:document.page.create.menu:0 @@ -121,18 +123,18 @@ msgstr "Informaţii meniu" #: view:document.page.history:0 #: model:ir.model,name:document_page.model_document_page_history msgid "Document Page History" -msgstr "" +msgstr "Istoric Pagini Documente" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "" +msgstr "Istoric pagini" #. module: document_page #: code:addons/document_page/document_page.py:129 #, python-format msgid "There are no changes in revisions." -msgstr "" +msgstr "Nu exista modificari in revizuiri." #. module: document_page #: field:document.page.history,create_date:0 @@ -156,7 +158,7 @@ msgstr "Pagini" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_category msgid "Categories" -msgstr "" +msgstr "Categorii" #. module: document_page #: field:document.page.create.menu,menu_parent_id:0 @@ -173,11 +175,12 @@ msgstr "Creat in" #, python-format msgid "You need to select minimum one or maximum two history revisions!" msgstr "" +"Trebuie sa selectati minim unul sau maxim doua istorice ale revizuirilor!" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "" +msgstr "Istoric pagina" #. module: document_page #: field:document.page.history,summary:0 @@ -187,12 +190,12 @@ msgstr "Rezumat" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page msgid "Create web pages" -msgstr "" +msgstr "Creeaza pagini web" #. module: document_page #: view:document.page.history:0 msgid "Document History" -msgstr "" +msgstr "Istoric Documente" #. module: document_page #: field:document.page.create.menu,menu_name:0 @@ -202,12 +205,12 @@ msgstr "Nume Meniu" #. module: document_page #: field:document.page.history,page_id:0 msgid "Page" -msgstr "" +msgstr "Pagina" #. module: document_page #: field:document.page,history_ids:0 msgid "History" -msgstr "" +msgstr "Istoric" #. module: document_page #: field:document.page,write_date:0 @@ -224,14 +227,14 @@ msgstr "Creează meniu" #. module: document_page #: field:document.page,display_content:0 msgid "Displayed Content" -msgstr "" +msgstr "Continut Afisat" #. module: document_page #: code:addons/document_page/document_page.py:129 #: code:addons/document_page/wizard/document_page_show_diff.py:50 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertizare!" #. module: document_page #: view:document.page.create.menu:0 @@ -247,9 +250,9 @@ msgstr "Diferit" #. module: document_page #: view:document.page:0 msgid "Document Type" -msgstr "" +msgstr "Tipul documentului" #. module: document_page #: field:document.page,child_ids:0 msgid "Children" -msgstr "" +msgstr "Subordonati" diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index 0b8297155af..8e4a16892c3 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:01+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -31,7 +31,7 @@ msgstr "Documente" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "" +msgstr "Actul de proprietate" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -150,7 +150,7 @@ msgstr "Creator" #. module: document_webdav #: view:document.webdav.file.property:0 msgid "Document Property" -msgstr "" +msgstr "Actul de Proprietate" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index ae10d6660a5..506d05d5b80 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.po @@ -8,35 +8,35 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:08+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:67 #, python-format msgid "Reason:" -msgstr "" +msgstr "Motiv:" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:60 #, python-format msgid "The document has been successfully imported!" -msgstr "" +msgstr "Documentul a fost importat cu succes!" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:65 #, python-format msgid "Sorry, the document could not be imported." -msgstr "" +msgstr "Ne pare rau, documentul nu a putut fi importat." #. module: edi #: model:ir.model,name:edi.model_res_company @@ -53,13 +53,13 @@ msgstr "Moneda" #: code:addons/edi/static/src/js/edi.js:71 #, python-format msgid "Document Import Notification" -msgstr "" +msgstr "Instiintare Import Document" #. module: edi #: code:addons/edi/models/edi.py:130 #, python-format msgid "Missing application." -msgstr "" +msgstr "Aplicatie lipsa." #. module: edi #: code:addons/edi/models/edi.py:131 @@ -87,4 +87,4 @@ msgstr "Partener" #. module: edi #: model:ir.model,name:edi.model_edi_edi msgid "EDI Subsystem" -msgstr "" +msgstr "Subsistem EDI" diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index d9778e9b091..caf9a22a80f 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:20+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: email_template #: field:email.template,email_from:0 @@ -37,13 +37,13 @@ msgstr "Buton bara laterala pentru a deschide actiunea barei laterale" #. module: email_template #: field:res.partner,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "Nu participati" #. module: email_template #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "Destinatar (Email-uri)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -76,7 +76,7 @@ msgstr "Adresa expeditorului (aici pot fi folositi inlocuitori)" #. module: email_template #: view:email.template:0 msgid "Remove context action" -msgstr "" +msgstr "Sterge actiunea cadru" #. module: email_template #: help:email.template,mail_server_id:0 @@ -97,7 +97,7 @@ msgstr "Raport nume fisier" #. module: email_template #: view:email.template:0 msgid "Preview" -msgstr "" +msgstr "Previzualizare" #. module: email_template #: field:email.template,reply_to:0 @@ -209,7 +209,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "" +msgstr "Creare Valoare Dinamica" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -227,6 +227,8 @@ msgid "" "Display an option on related documents to open a composition wizard with " "this template" msgstr "" +"Afiseaza o optiune in documentele asociate pentru a deschide un wizard de " +"compoziite cu acest sablon" #. module: email_template #: help:email.template,email_cc:0 @@ -249,7 +251,7 @@ msgstr "Avansat" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "Previzualizare a" #. module: email_template #: view:email_template.preview:0 @@ -297,7 +299,7 @@ msgstr "" #: field:email.template,copyvalue:0 #: field:email_template.preview,copyvalue:0 msgid "Placeholder Expression" -msgstr "" +msgstr "Expresie Substituenta" #. module: email_template #: field:email.template,sub_object:0 @@ -321,7 +323,7 @@ msgstr "Adresa de raspuns preferata (aici pot fi folositi inlocuitori)" #: field:email.template,ref_ir_value:0 #: field:email_template.preview,ref_ir_value:0 msgid "Sidebar Button" -msgstr "" +msgstr "Buton Bara laterala" #. module: email_template #: field:email.template,report_template:0 @@ -344,24 +346,24 @@ msgstr "Model" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Wizard de compozitie email-uri" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "Adauga contextul actiunii" #. module: email_template #: help:email.template,model_id:0 #: help:email_template.preview,model_id:0 msgid "The kind of document with with this template can be used" -msgstr "" +msgstr "Tipul de document cu care poate fi utilizat acest sablon" #. module: email_template #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Destinatar (Parteneri)" #. module: email_template #: field:email.template,auto_delete:0 @@ -382,7 +384,7 @@ msgstr "" #: field:email.template,model:0 #: field:email_template.preview,model:0 msgid "Related Document Model" -msgstr "" +msgstr "Model Document Asociat" #. module: email_template #: view:email.template:0 @@ -395,6 +397,8 @@ msgstr "Adresare" msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" msgstr "" +"Id-uri despartite prin virgule ale partenerilor destinatari (aici pot fi " +"folositi substituenti)" #. module: email_template #: field:email.template,attachment_ids:0 @@ -418,7 +422,7 @@ msgstr "Cc (copie carbon)" #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "" +msgstr "Se aplica pentru" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -490,7 +494,7 @@ msgstr "Partener" #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "Valoarea Implicita" #. module: email_template #: help:email.template,attachment_ids:0 @@ -512,7 +516,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Contents" -msgstr "" +msgstr "Cuprins" #. module: email_template #: field:email.template,subject:0 diff --git a/addons/event_moodle/i18n/ro.po b/addons/event_moodle/i18n/ro.po new file mode 100644 index 00000000000..f297294a5b4 --- /dev/null +++ b/addons/event_moodle/i18n/ro.po @@ -0,0 +1,195 @@ +# Romanian 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-01-23 21:30+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with username and password" +msgstr "Conectare cu numele de utilizator si parola" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_moodle_config_wiz +msgid "event.moodle.config.wiz" +msgstr "wiz.config.eveniment.moodle" + +#. module: event_moodle +#: help:event.moodle.config.wiz,server_moodle:0 +msgid "" +"URL where you have your moodle server. For exemple: 'http://127.0.0.1' or " +"'http://localhost'" +msgstr "" +"URL-ul unde aveti serverul moodle. De exemplu: 'http://127.0.0.1' or " +"'http://localhost'" + +#. module: event_moodle +#: field:event.registration,moodle_user_password:0 +msgid "Password for Moodle User" +msgstr "Parola pentru Utilizatorul Moodle" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_password:0 +msgid "Moodle Password" +msgstr "Parola Moodle" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Your email '%s' is wrong." +msgstr "Email-ul dumneavoastra '%s' este gresit." + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with a Token" +msgstr "Conectare cu un Simbol" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"The easiest way to connect OpenERP with a moodle server is to create a " +"'token' in Moodle. It will be used to authenticate OpenERP as a trustable " +"application." +msgstr "" +"Cel mai usor mod de conectare a lui OpenERP cu un server moodle este sa " +"creati un 'simbol' in Moodle. Va fi folosit pentru a autentifica OpenERP " +"drept o aplicatie de incredere." + +#. module: event_moodle +#: field:event.moodle.config.wiz,url:0 +msgid "URL to Moodle Server" +msgstr "URL catre Serverul Moodle" + +#. module: event_moodle +#: help:event.moodle.config.wiz,url:0 +msgid "The url that will be used for the connection with moodle in xml-rpc" +msgstr "Url-ul care va fi folosit pentru conectarea cu moodle in xml-rpc" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_registration +msgid "Event Registration" +msgstr "Inregistrarea Evenimentelor" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"Another approach is to create a user for OpenERP in Moodle. If you do so, " +"make sure that this user has appropriate access rights." +msgstr "" +"O alta abordare este sa creati un utilizator pentru OpenERP in Moodle. Daca " +"faceti acest lucru, asigurati-va ca acest utilizator are drepturi de acces " +"adecvate." + +#. module: event_moodle +#: field:event.registration,moodle_uid:0 +msgid "Moodle User ID" +msgstr "ID Utilizator Moodle" + +#. module: event_moodle +#: field:event.moodle.config.wiz,server_moodle:0 +msgid "Moodle Server" +msgstr "Server Moodle" + +#. module: event_moodle +#: field:event.event,moodle_id:0 +msgid "Moodle ID" +msgstr "ID Moodle" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Server" +msgstr "Server" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#: code:addons/event_moodle/event_moodle.py:105 +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Error!" +msgstr "Eroare!" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:105 +#, python-format +msgid "You must configure your moodle connection." +msgstr "Trebuie sa configurati conexiunea moodle." + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_username:0 +#: field:event.registration,moodle_username:0 +msgid "Moodle Username" +msgstr "Nume de utilizator Moodle" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +#: model:ir.actions.act_window,name:event_moodle.configure_moodle +msgid "Configure Moodle" +msgstr "Configureaza Moodle" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_token:0 +msgid "Moodle Token" +msgstr "Simbol Moodle" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_username:0 +msgid "" +"You can also connect with your username that you define when you create a " +"token" +msgstr "" +"De asemenea, puteti sa va conectati cu numele de utilizator pe care il " +"definiti atunci cand creati un simbol" + +#. module: event_moodle +#: help:event.event,moodle_id:0 +msgid "The identifier of this event in Moodle" +msgstr "Identificatorul acestui eveniment in Moodle" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_token:0 +msgid "Put your token that you created in your moodle server" +msgstr "Puneti simbolul pe care l-ati creat in serverul moodle" + +#. module: event_moodle +#: model:ir.ui.menu,name:event_moodle.wizard_moodle +msgid "Moodle Configuration" +msgstr "Configurare Moodle" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "or" +msgstr "sau" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#, python-format +msgid "First configure your moodle connection." +msgstr "Mai intai configurati-va conexiunea moodle." + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Apply" +msgstr "Aplica" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Cancel" +msgstr "Anuleaza" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_event +msgid "Event" +msgstr "Eveniment" diff --git a/addons/event_sale/i18n/ro.po b/addons/event_sale/i18n/ro.po new file mode 100644 index 00000000000..3ca5f4f556c --- /dev/null +++ b/addons/event_sale/i18n/ro.po @@ -0,0 +1,96 @@ +# Romanian 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-01-23 21:35+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: event_sale +#: model:ir.model,name:event_sale.model_product_product +msgid "Product" +msgstr "Produs" + +#. module: event_sale +#: help:product.product,event_ok:0 +msgid "" +"Determine if a product needs to create automatically an event registration " +"at the confirmation of a sales order line." +msgstr "" +"Determina daca un produs are nevoie sa creeze automat o inregistrare a " +"evenimentului la confirmarea unei linii a comenzii de vanzare." + +#. module: event_sale +#: help:sale.order.line,event_id:0 +msgid "" +"Choose an event and it will automatically create a registration for this " +"event." +msgstr "" +"Alege un eveniment si va crea automat o inregistrare pentru acest eveniment." + +#. module: event_sale +#: model:event.event,name:event_sale.event_technical_training +msgid "Technical training in Grand-Rosiere" +msgstr "Instruire tehnica in Grand-Rosiere" + +#. module: event_sale +#: help:product.product,event_type_id:0 +msgid "" +"Select event types so when we use this product in sales order lines, it will " +"filter events of this type only." +msgstr "" +"Selecteaza tipuri de evenimente astfel incat, atunci cand folosim acest " +"produs in liniile comenzii de vanzare, va filtra doar evenimentele de acest " +"tip." + +#. module: event_sale +#: field:product.product,event_type_id:0 +msgid "Type of Event" +msgstr "Tipul Evenimentului" + +#. module: event_sale +#: field:sale.order.line,event_ok:0 +msgid "event_ok" +msgstr "eveniment_ok" + +#. module: event_sale +#: field:product.product,event_ok:0 +msgid "Event Subscription" +msgstr "Abonament la Eveniment" + +#. module: event_sale +#: field:sale.order.line,event_type_id:0 +msgid "Event Type" +msgstr "Tipul Evenimentului" + +#. module: event_sale +#: model:product.template,name:event_sale.event_product_product_template +msgid "Technical Training" +msgstr "Instruire Tehnica" + +#. module: event_sale +#: code:addons/event_sale/event_sale.py:88 +#, python-format +msgid "The registration %s has been created from the Sales Order %s." +msgstr "Inregistrare %s a fost creata din Comanda de Vanzari %s." + +#. module: event_sale +#: field:sale.order.line,event_id:0 +msgid "Event" +msgstr "Eveniment" + +#. module: event_sale +#: model:ir.model,name:event_sale.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linia Comenzii de Vanzare" diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 84369fbc716..fd382746110 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:38+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -71,7 +71,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "" +msgstr "Configureaza gateway intrare email-uri" #. module: fetchmail #: view:fetchmail.server:0 @@ -102,7 +102,7 @@ msgstr "Server Local" #. module: fetchmail #: field:fetchmail.server,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_server @@ -122,7 +122,7 @@ msgstr "SSL" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_config_settings msgid "fetchmail.config.settings" -msgstr "" +msgstr "fetchmail.config.setari" #. module: fetchmail #: field:fetchmail.server,date:0 @@ -152,7 +152,7 @@ msgstr "Pastreaza Originalul" #. module: fetchmail #: view:fetchmail.server:0 msgid "Advanced Options" -msgstr "" +msgstr "Optiuni Avansate" #. module: fetchmail #: view:fetchmail.server:0 @@ -198,6 +198,8 @@ msgid "" "Here is what we got instead:\n" " %s." msgstr "" +"Iata ceea ce am obtinut in schimb:\n" +" %s." #. module: fetchmail #: view:fetchmail.server:0 @@ -242,7 +244,7 @@ msgstr "" #. module: fetchmail #: model:ir.model,name:fetchmail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Email-uri Trimise" #. module: fetchmail #: field:fetchmail.server,priority:0 diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index 638083b6ad4..ff19b7f656f 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:38+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: google_base_account #: field:res.users,gmail_user:0 @@ -36,12 +36,12 @@ msgstr "Eroare Import Contacte Google!" #. module: google_base_account #: model:ir.model,name:google_base_account.model_res_users msgid "Users" -msgstr "" +msgstr "Utilizatori" #. module: google_base_account #: view:google.login:0 msgid "or" -msgstr "" +msgstr "sau" #. module: google_base_account #: view:google.login:0 @@ -57,7 +57,7 @@ msgstr "Parola Google" #: code:addons/google_base_account/wizard/google_login.py:77 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: google_base_account #: view:res.users:0 @@ -67,13 +67,13 @@ msgstr "Cont Google" #. module: google_base_account #: view:res.users:0 msgid "Synchronization" -msgstr "" +msgstr "Sincronizare" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:77 #, python-format msgid "Authentication failed. Check the user and password." -msgstr "" +msgstr "Autentificarea a esuat. Verificati utilizatorul si parola." #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:29 @@ -93,7 +93,7 @@ msgstr "Contact Google" #. module: google_base_account #: view:google.login:0 msgid "Cancel" -msgstr "" +msgstr "Anuleaza" #. module: google_base_account #: field:google.login,user:0 diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index 53f90354d93..7198c2813e4 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-23 21:41+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -103,7 +103,7 @@ msgstr "Tipuri de contract" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Examen Medical" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -163,7 +163,7 @@ msgstr "Program de lucru" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "Salariu si Avantaje" #. module: hr_contract #: field:hr.contract,job_id:0 @@ -174,6 +174,8 @@ msgstr "Functie" #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"Eroare! Data de inceput a contractului trebuie sa fie mai mica decat data de " +"sfarsit a contractului." #. module: hr_contract #: field:hr.employee,manager:0 @@ -193,7 +195,7 @@ msgstr "Nr viza" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Acasa-Serviciu Dist." #. module: hr_contract #: field:hr.employee,place_of_birth:0 @@ -203,7 +205,7 @@ msgstr "Locul nasterii" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Durata Perioadei de Proba" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/purchase/i18n/nl.po b/addons/purchase/i18n/nl.po index 6190541d87d..06829283efe 100644 --- a/addons/purchase/i18n/nl.po +++ b/addons/purchase/i18n/nl.po @@ -8,14 +8,14 @@ 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: 2012-12-29 08:21+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"PO-Revision-Date: 2013-01-23 10:44+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:03+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -891,7 +891,7 @@ msgstr "" #: model:ir.ui.menu,name:purchase.menu_purchase_config #: view:res.partner:0 msgid "Purchases" -msgstr "Inkooporderregels" +msgstr "Inkopen" #. module: purchase #: view:purchase.report:0 diff --git a/addons/web/i18n/nl.po b/addons/web/i18n/nl.po index b22e56d0d77..99ea577ddfa 100644 --- a/addons/web/i18n/nl.po +++ b/addons/web/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-21 10:11+0000\n" +"PO-Revision-Date: 2013-01-23 10:42+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-22 05:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: web #. openerp-web @@ -126,7 +126,7 @@ msgstr "Back-up database" #: code:addons/web/static/src/js/views.js:463 #, python-format msgid "%(view_type)s view" -msgstr "%(view_type)s were gave" +msgstr "%(view_type)s weergave" #. module: web #. openerp-web From 6af11ee3876776495c49fe404286f6476a10d863 Mon Sep 17 00:00:00 2001 From: Vishmita Date: Thu, 24 Jan 2013 15:54:11 +0530 Subject: [PATCH 52/72] [Fix]can't open form of data out of kanban lp bug: https://launchpad.net/bugs/1103518 fixed bzr revid: vja@tinyerp.com-20130124102411-rt3nyp5s4xgbio2t --- addons/web_kanban/static/src/js/kanban.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web_kanban/static/src/js/kanban.js b/addons/web_kanban/static/src/js/kanban.js index 1d9ced0ca6d..0ced5bcef2d 100644 --- a/addons/web_kanban/static/src/js/kanban.js +++ b/addons/web_kanban/static/src/js/kanban.js @@ -632,7 +632,7 @@ instance.web_kanban.KanbanGroup = instance.web.Widget.extend({ 'limit': self.view.limit, 'offset': self.dataset_offset += self.view.limit }).then(function(records) { - self.view.dataset.ids = ids.concat(self.view.dataset.ids); + self.view.dataset.ids = ids.concat(self.dataset.ids); self.do_add_records(records); self.compute_cards_auto_height(); return records; From bd8a29b5cccd04c2c46b11512f99894d8a3e3080 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 24 Jan 2013 11:46:25 +0100 Subject: [PATCH 53/72] [FIX] note: stages should not block user deletion + incomplete fields.function declaration for current_partner_id bzr revid: odo@openerp.com-20130124104625-5aqn1ch5kdz9cgak --- addons/note/note.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/note/note.py b/addons/note/note.py index 7de91e4703a..2d95b15107a 100644 --- a/addons/note/note.py +++ b/addons/note/note.py @@ -29,7 +29,7 @@ class note_stage(osv.osv): _columns = { 'name': fields.char('Stage Name', translate=True, required=True), 'sequence': fields.integer('Sequence', help="Used to order the note stages"), - 'user_id': fields.many2one('res.users', 'Owner', help="Owner of the note stage.", required=True), + 'user_id': fields.many2one('res.users', 'Owner', help="Owner of the note stage.", required=True, ondelete='cascade'), 'fold': fields.boolean('Folded by Default'), } _order = 'sequence asc' @@ -112,7 +112,7 @@ class note_note(osv.osv): 'date_done': fields.date('Date done'), 'color': fields.integer('Color Index'), 'tag_ids' : fields.many2many('note.tag','note_tags_rel','note_id','tag_id','Tags'), - 'current_partner_id' : fields.function(_get_my_current_partner), + 'current_partner_id' : fields.function(_get_my_current_partner, type="many2one", relation='res.partner', string="Owner"), } _defaults = { 'open' : 1, From 54f58c82ae0f30289e75a8df38bc8c7451b76104 Mon Sep 17 00:00:00 2001 From: Mohammed Shekha Date: Thu, 24 Jan 2013 17:37:27 +0530 Subject: [PATCH 54/72] [FIX]Fixed the issue of sum aggregates not displayed on one2many footer. bzr revid: msh@openerp.com-20130124120727-hhlrzr7qzk242lw0 --- addons/web/static/src/xml/base.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/web/static/src/xml/base.xml b/addons/web/static/src/xml/base.xml index 6d707bb4627..7579eb9a55f 100644 --- a/addons/web/static/src/xml/base.xml +++ b/addons/web/static/src/xml/base.xml @@ -1414,8 +1414,6 @@ this.removeAttr('t-if'); - - this.removeAttr('t-if'); From 49849616347d015967008009b43e02864d229bd2 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 24 Jan 2013 13:38:27 +0100 Subject: [PATCH 55/72] [FIX] account: tree drill-down action bindings were removed by error for Chart of Accounts/Taxes Was done by mistake as a side-effect of rev. 8086.1.28 revid:dle@openerp.com-20121128150525-zh27h78v8dd6dkwm bzr revid: odo@openerp.com-20130124123827-2pv2nhzjdt9r2li4 --- addons/account/account_view.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 5e072c3d258..3ce60902d94 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -347,6 +347,15 @@ res_model="account.move.line" src_model="account.account"/> + + + account.journal.tree @@ -841,6 +850,16 @@ res_model="account.move.line" src_model="account.tax.code"/> + + + + account.tax.tree From 80c4789dff787fb1981b0e93bc40f2797fb02356 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 24 Jan 2013 13:41:32 +0100 Subject: [PATCH 56/72] [FIX] web_analytics: missing explicit empty value for WebClient.subscribe_deferred bzr revid: odo@openerp.com-20130124124132-6xgqf9qy22kkxasn --- addons/web_analytics/static/src/js/web_analytics.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/web_analytics/static/src/js/web_analytics.js b/addons/web_analytics/static/src/js/web_analytics.js index 959e9f0daf2..64162940195 100644 --- a/addons/web_analytics/static/src/js/web_analytics.js +++ b/addons/web_analytics/static/src/js/web_analytics.js @@ -270,6 +270,7 @@ openerp.web_analytics = function(instance) { // client does not already exists, we are in monodb mode instance.web.WebClient.include({ start: function() { + this.subscribe_deferred = $.when(); var d = this._super.apply(this, arguments); this.tracker = new instance.web_analytics.Tracker(); return d; From e7547a13dbd30ccec448d751fe00203366f427f1 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Thu, 24 Jan 2013 14:11:02 +0100 Subject: [PATCH 57/72] [REM] noise key in web manifest bzr revid: xmo@openerp.com-20130124131102-s3342pppi2nhyk9g --- addons/web/__openerp__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/web/__openerp__.py b/addons/web/__openerp__.py index 2303b6a68e8..678eacd7f3e 100644 --- a/addons/web/__openerp__.py +++ b/addons/web/__openerp__.py @@ -86,5 +86,4 @@ This module provides the core of the OpenERP Web Client. "static/test/mutex.js" ], 'bootstrap': True, - 'twitter': False, } From 611ff620ce4d3d580872285e93cc428f4a5646dd Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 24 Jan 2013 15:05:38 +0100 Subject: [PATCH 58/72] [FIX] session: properly handle exceptions with unicode messages during dispatching String formatting with an Exception param will use str(Exception), raising an error if the exception has non-ascii characters in the message. bzr revid: odo@openerp.com-20130124140538-1wjjl4a12xnwn38o --- addons/web/session.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/web/session.py b/addons/web/session.py index 30e9308d4e1..8a083e0dec9 100644 --- a/addons/web/session.py +++ b/addons/web/session.py @@ -85,7 +85,7 @@ class OpenERPSession(object): self.jsonp_requests = {} # FIXME use a LRU def send(self, service_name, method, *args): - code_string = "warning -- %s\n\n%s" + code_string = u"warning -- %s\n\n%s" try: return openerp.netsvc.dispatch_rpc(service_name, method, args) except openerp.osv.osv.except_osv, e: @@ -95,13 +95,13 @@ class OpenERPSession(object): except openerp.exceptions.AccessError, e: raise xmlrpclib.Fault(code_string % ("AccessError", e), '') except openerp.exceptions.AccessDenied, e: - raise xmlrpclib.Fault('AccessDenied', str(e)) + raise xmlrpclib.Fault('AccessDenied', openerp.tools.ustr(e)) except openerp.exceptions.DeferredException, e: formatted_info = "".join(traceback.format_exception(*e.traceback)) - raise xmlrpclib.Fault(openerp.tools.ustr(e.message), formatted_info) + raise xmlrpclib.Fault(openerp.tools.ustr(e), formatted_info) except Exception, e: formatted_info = "".join(traceback.format_exception(*(sys.exc_info()))) - raise xmlrpclib.Fault(openerp.tools.exception_to_unicode(e), formatted_info) + raise xmlrpclib.Fault(openerp.tools.ustr(e), formatted_info) def proxy(self, service): return Service(self, service) From e761ab7454645037e3c2be8c8337ecd3dae33786 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Thu, 24 Jan 2013 15:40:18 +0100 Subject: [PATCH 59/72] [FIX] domain returned by onchange The "new" form engine performs a bunch of conversions on the form arch from json to xml to text to json again (or something), thus the ``node`` attribute on form fields might be json but it's got no more relation to the form's own arch (and the fields defined therein). Meanwhile the domains processing for onchange recursively traversed the *form*'s arch trying to find a node matching the key it had to set its @domain to what it was given. It long predates the "new" form engine, and since it alters the *original* arch not a copy the "new" form engine broke it. And since that's untested, it's been broken for a bunch of months (probably). Fix by looking up the field according to the domain key (in form.fields), and setting the domain in the node of the field, rather than the node of the form's arch. lp bug: https://launchpad.net/bugs/1088447 fixed bzr revid: xmo@openerp.com-20130124144018-0g3sl2nej2aj6syp --- addons/web/static/src/js/view_form.js | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/addons/web/static/src/js/view_form.js b/addons/web/static/src/js/view_form.js index 01d4bf6dd33..4880b3882ff 100644 --- a/addons/web/static/src/js/view_form.js +++ b/addons/web/static/src/js/view_form.js @@ -573,19 +573,14 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM ] }); } - if (result.domain) { - function edit_domain(node) { - if (typeof node !== "object") { - return; - } - var new_domain = result.domain[node.attrs.name]; - if (new_domain) { - node.attrs.domain = new_domain; - } - _(node.children).each(edit_domain); - } - edit_domain(this.fields_view.arch); - } + + var fields = this.fields; + _(result.domain).each(function (domain, fieldname) { + var field = fields[fieldname]; + if (!field) { return; } + field.node.attrs.domain = domain; + }); + return $.Deferred().resolve(); } catch(e) { console.error(e); From 06c7519a6248a41cb3ccab87df109a82597594d1 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 25 Jan 2013 06:04:37 +0000 Subject: [PATCH 60/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053457-8qf8k6eb4ukdig0k bzr revid: launchpad_translations_on_behalf_of_openerp-20130125060437-nlhqe2dilssuf70x --- openerp/addons/base/i18n/es_MX.po | 12 ++++++------ openerp/addons/base/i18n/nl.po | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/openerp/addons/base/i18n/es_MX.po b/openerp/addons/base/i18n/es_MX.po index e726421f08b..e53ef8c1156 100644 --- a/openerp/addons/base/i18n/es_MX.po +++ b/openerp/addons/base/i18n/es_MX.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:09+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-25 04:40+0000\n" +"Last-Translator: Antonio Fregoso \n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:54+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -673,7 +673,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mx msgid "Mexico - Accounting" -msgstr "" +msgstr "México - Contabilidad" #. module: base #: help:ir.actions.server,action_id:0 @@ -8634,7 +8634,7 @@ msgstr "" #. module: base #: model:res.country,name:base.mx msgid "Mexico" -msgstr "" +msgstr "México" #. module: base #: code:addons/orm.py:3902 diff --git a/openerp/addons/base/i18n/nl.po b/openerp/addons/base/i18n/nl.po index 724ef073f65..381dd486415 100644 --- a/openerp/addons/base/i18n/nl.po +++ b/openerp/addons/base/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-20 11:34+0000\n" +"PO-Revision-Date: 2013-01-23 11:04+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-24 05:34+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -5231,7 +5231,7 @@ msgstr ", of uw favoriete tekstverwerker" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "Partners Geo-Localisatie" +msgstr "Partners Geo-Lokalisatie" #. module: base #: model:res.country,name:base.ke @@ -9685,7 +9685,7 @@ msgstr "klaar" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "Algemene instellingen" +msgstr "Algemeen" #. module: base #: model:ir.module.module,description:base.module_l10n_in @@ -15445,7 +15445,7 @@ msgstr "Configuratie-assistenten" #. module: base #: field:res.lang,code:0 msgid "Locale Code" -msgstr "Code localisatie" +msgstr "Code lokalisatie" #. module: base #: field:workflow.activity,split_mode:0 From 1558bb732d6a61b8b85ef45cacb88a0c8ac76f19 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 25 Jan 2013 06:05:30 +0000 Subject: [PATCH 61/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130125060530-mvl0r5jn2ysf7amp --- addons/web/i18n/nl.po | 11 ++-- addons/web/i18n/tr.po | 144 ++++++++++++++++++++++-------------------- 2 files changed, 80 insertions(+), 75 deletions(-) diff --git a/addons/web/i18n/nl.po b/addons/web/i18n/nl.po index 99ea577ddfa..3e9abf3706a 100644 --- a/addons/web/i18n/nl.po +++ b/addons/web/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-23 10:42+0000\n" +"PO-Revision-Date: 2013-01-24 12:31+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-24 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" "X-Generator: Launchpad (build 16445)\n" #. module: web @@ -794,10 +794,9 @@ msgid "" "\n" "Are you sure you want to leave this page ?" msgstr "" -"Opgelet, het record werd aangepast, uw wijzigingen willen verloren gaan.
\n" -"
\n" -"Bent u zeker dat u deze pagina wenst te verlaten?" +"Opgelet, het record is aangepast, uw wijzigingen zullen verloren gaan.\n" +"\n" +"Weet u zeker dat u deze pagina wilt verlaten?" #. module: web #. openerp-web diff --git a/addons/web/i18n/tr.po b/addons/web/i18n/tr.po index 21223425450..bfe3744b0ae 100644 --- a/addons/web/i18n/tr.po +++ b/addons/web/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"PO-Revision-Date: 2013-01-24 20:42+0000\n" "Last-Translator: Ahmet Altınışık \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:38+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: web #. openerp-web @@ -59,7 +59,7 @@ msgstr "az ya da eşittir" #: code:addons/web/static/src/js/chrome.js:393 #, python-format msgid "Please enter your previous password" -msgstr "" +msgstr "Lütfen önceki şifrenizi girin" #. module: web #. openerp-web @@ -82,7 +82,7 @@ msgstr "Ana şifreyi değiştir." #: code:addons/web/static/src/js/chrome.js:491 #, python-format msgid "Do you really want to delete the database: %s ?" -msgstr "" +msgstr "Gerçekten %s veritabanını SİLMEK istiyor musunuz?" #. module: web #. openerp-web @@ -96,14 +96,14 @@ msgstr "Search %(field)s at: %(value)s" #: code:addons/web/static/src/js/chrome.js:537 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Erişim Reddedildi" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5183 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Yükleme hatası" #. module: web #. openerp-web @@ -126,7 +126,7 @@ msgstr "Veritabanı Yedekle" #: code:addons/web/static/src/js/views.js:463 #, python-format msgid "%(view_type)s view" -msgstr "" +msgstr "%(view_type)s ekranı" #. module: web #. openerp-web @@ -134,7 +134,7 @@ msgstr "" #: code:addons/web/static/src/js/dates.js:53 #, python-format msgid "'%s' is not a valid date" -msgstr "" +msgstr "'%s' geçerli bir tarih değil" #. module: web #. openerp-web @@ -161,7 +161,7 @@ msgstr "Dosya" #: code:addons/web/controllers/main.py:826 #, python-format msgid "You cannot leave any password empty." -msgstr "" +msgstr "Şifreleri boş bırkamazsınız." #. module: web #. openerp-web @@ -221,7 +221,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:1227 #, python-format msgid "Widget type '%s' is not implemented" -msgstr "" +msgstr "'%s' widget tipi uygulanmamış" #. module: web #. openerp-web @@ -250,7 +250,7 @@ msgstr "(yazı yok)" #: code:addons/web/static/src/js/formats.js:282 #, python-format msgid "'%s' is not a correct time" -msgstr "" +msgstr "'%s' geçersiz saat biçimi" #. module: web #. openerp-web @@ -271,7 +271,7 @@ msgstr "Yeni Parola:" #: code:addons/web/static/src/xml/base.xml:610 #, python-format msgid "Attachment :" -msgstr "" +msgstr "Ek :" #. module: web #. openerp-web @@ -356,7 +356,7 @@ msgstr "Parolayı Değiştir" #: code:addons/web/static/src/js/view_form.js:3411 #, python-format msgid "View type '%s' is not supported in One2Many." -msgstr "" +msgstr "'%s' ekran (view) tipi one2many için desteklenmiyor." #. module: web #. openerp-web @@ -371,7 +371,7 @@ msgstr "İndir" #: code:addons/web/static/src/js/formats.js:266 #, python-format msgid "'%s' is not a correct datetime" -msgstr "" +msgstr "'%s' geçerli bir tarih saat biçimi değil" #. module: web #. openerp-web @@ -399,13 +399,13 @@ msgstr "Seçim:" #: code:addons/web/static/src/js/view_form.js:871 #, python-format msgid "The following fields are invalid:" -msgstr "" +msgstr "Geçersiz alanlar:" #. module: web #: code:addons/web/controllers/main.py:847 #, python-format msgid "Languages" -msgstr "" +msgstr "Diller" #. module: web #. openerp-web @@ -426,7 +426,7 @@ msgstr "İçe aktar" #: code:addons/web/static/src/js/chrome.js:543 #, python-format msgid "Could not restore the database" -msgstr "" +msgstr "Veritabanı geri yüklenemedi" #. module: web #. openerp-web @@ -539,7 +539,7 @@ msgstr "Desteklenmeyen operatör %s alan adında %s" #: code:addons/web/static/src/js/formats.js:242 #, python-format msgid "'%s' is not a correct float" -msgstr "" +msgstr "'%s' geçersiz bir float" #. module: web #. openerp-web @@ -553,7 +553,7 @@ msgstr "Onarıldı" #: code:addons/web/static/src/js/view_list.js:394 #, python-format msgid "%d-%d of %d" -msgstr "" +msgstr "%d-%d / %d" #. module: web #. openerp-web @@ -567,7 +567,7 @@ msgstr "Oluştur ve düzenle..." #: code:addons/web/static/src/js/pyeval.js:731 #, python-format msgid "Unknown nonliteral type " -msgstr "" +msgstr "Bilinmeyen (nonliteral) tipi " #. module: web #. openerp-web @@ -595,7 +595,7 @@ msgstr "İş Akışı'nı Yazdır" #: code:addons/web/static/src/js/chrome.js:396 #, python-format msgid "Please confirm your new password" -msgstr "" +msgstr "Lütfen yeni şifrenizi onaylayın" #. module: web #. openerp-web @@ -644,7 +644,7 @@ msgstr "Model %s Alanları" #: code:addons/web/static/src/js/view_list.js:893 #, python-format msgid "Setting 'id' attribute on existing record %s" -msgstr "" +msgstr "Geçerli kayıt %s nin 'id' özeliği ayarlanıyor" #. module: web #. openerp-web @@ -690,13 +690,14 @@ msgstr "Eylem ID:" #, python-format msgid "Your user's preference timezone does not match your browser timezone:" msgstr "" +"Kullanıcınızın saat dilimi seçimi tarayıcınızın saat diliminden farklı:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1223 #, python-format msgid "Field '%s' specified in view could not be found." -msgstr "" +msgstr "Ekranda tanımlanan '%s' alanı bulunamıyor." #. module: web #. openerp-web @@ -724,7 +725,7 @@ msgstr "Bytes,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb" #: code:addons/web/static/src/js/chrome.js:481 #, python-format msgid "The database has been duplicated." -msgstr "" +msgstr "Veritabanı Kopyalandı." #. module: web #. openerp-web @@ -753,7 +754,7 @@ msgstr "Farklı Kaydet" #: code:addons/web/doc/module/static/src/xml/web_example.xml:3 #, python-format msgid "00:00:00" -msgstr "" +msgstr "00:00:00" #. module: web #. openerp-web @@ -819,7 +820,7 @@ msgstr "Sonlandırıcı:" #: code:addons/web/static/src/xml/base.xml:462 #, python-format msgid "Browser's timezone" -msgstr "" +msgstr "Tarayıcınızın saat dilimi" #. module: web #. openerp-web @@ -885,7 +886,7 @@ msgstr "Tercihler" #: code:addons/web/static/src/js/view_form.js:436 #, python-format msgid "Wrong on change format: %s" -msgstr "" +msgstr "Hatalı (on change) biçimi: %s" #. module: web #. openerp-web @@ -900,7 +901,7 @@ msgstr "Veritabanını Sil" #: code:addons/web/static/src/xml/base.xml:466 #, python-format msgid "Click here to change your user's timezone." -msgstr "" +msgstr "Saat diliminizi değiştirmek için için tıklayın." #. module: web #. openerp-web @@ -946,21 +947,21 @@ msgstr "Kullanıcı Adı" #: code:addons/web/static/src/js/chrome.js:481 #, python-format msgid "Duplicating database" -msgstr "" +msgstr "Veritabanı Kopyalanıyor" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:563 #, python-format msgid "Password has been changed successfully" -msgstr "" +msgstr "Şifreniz değiştirildi" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list_editable.js:788 #, python-format msgid "The form's data can not be discarded" -msgstr "" +msgstr "Formdaki veriler iptal edilemiyor" #. module: web #. openerp-web @@ -995,6 +996,10 @@ msgid "" "\n" "%s" msgstr "" +"Yerel değerlendirme hatası\n" +"%s\n" +"\n" +"%s" #. module: web #. openerp-web @@ -1015,7 +1020,7 @@ msgstr "Alan listesini Kaydet" #: code:addons/web/doc/module/static/src/xml/web_example.xml:5 #, python-format msgid "Start" -msgstr "" +msgstr "Başlat" #. module: web #. openerp-web @@ -1036,7 +1041,7 @@ msgstr "Oluşturma Tarihi:" #: code:addons/web/controllers/main.py:835 #, python-format msgid "Error, password not changed !" -msgstr "" +msgstr "Hata, şifre değiştirilemedi !" #. module: web #. openerp-web @@ -1058,7 +1063,7 @@ msgstr "/web/binary/upload_attachment" #: code:addons/web/static/src/js/chrome.js:563 #, python-format msgid "Changed Password" -msgstr "" +msgstr "Parola Değişti" #. module: web #. openerp-web @@ -1092,14 +1097,14 @@ msgstr "Yedekle" #: code:addons/web/static/src/js/dates.js:80 #, python-format msgid "'%s' is not a valid time" -msgstr "" +msgstr "'%s' geçerli bir zaman biçimi değil" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:274 #, python-format msgid "'%s' is not a correct date" -msgstr "" +msgstr "'%s' geçerli bir tarih biçimi değil" #. module: web #. openerp-web @@ -1153,7 +1158,7 @@ msgstr "Son Değiştiren:" #: code:addons/web/static/src/xml/base.xml:470 #, python-format msgid "Timezone mismatch" -msgstr "" +msgstr "Saat dilimi uyumsuzluğu" #. module: web #. openerp-web @@ -1221,7 +1226,7 @@ msgstr "Gelişmiş Filtre Ekle" #: code:addons/web/controllers/main.py:828 #, python-format msgid "The new password and its confirmation must be identical." -msgstr "" +msgstr "Yeni şifre ve şifre tekrarı aynı olmalı" #. module: web #. openerp-web @@ -1236,7 +1241,7 @@ msgstr "Veritabanını Geri Yükle" #: code:addons/web/static/src/js/chrome.js:644 #, python-format msgid "Login" -msgstr "" +msgstr "Kullanıcı Adı:" #. module: web #. openerp-web @@ -1279,7 +1284,7 @@ msgstr "Grupla : %s" #: code:addons/web/static/src/js/view_form.js:153 #, python-format msgid "No data provided." -msgstr "" +msgstr "Hiç veri sağlanmadı." #. module: web #. openerp-web @@ -1350,14 +1355,14 @@ msgstr "%(page)d/%(page_count)d" #: code:addons/web/static/src/js/chrome.js:397 #, python-format msgid "The confirmation does not match the password" -msgstr "" +msgstr "Şifre ve doğrulaması uyuşmuyor." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:441 #, python-format msgid "Edit Company data" -msgstr "" +msgstr "Şirket Bilgilerini düzenle" #. module: web #. openerp-web @@ -1396,7 +1401,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:394 #, python-format msgid "99+" -msgstr "" +msgstr "99+" #. module: web #. openerp-web @@ -1410,7 +1415,7 @@ msgstr ".CSV Dosyasından veri al" #: code:addons/web/static/src/js/chrome.js:644 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Veritabanı Seçilmedi !" #. module: web #. openerp-web @@ -1448,7 +1453,7 @@ msgstr "eşittir" #: code:addons/web/static/src/js/views.js:1500 #, python-format msgid "Could not serialize XML" -msgstr "" +msgstr "XML serileştirilemedi" #. module: web #. openerp-web @@ -1553,14 +1558,14 @@ msgstr "Ağaç" #: code:addons/web/controllers/main.py:750 #, python-format msgid "Could not drop database !" -msgstr "" +msgstr "Veritabanı Silinemedi !" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:227 #, python-format msgid "'%s' is not a correct integer" -msgstr "" +msgstr "'%s' geçerli bir tamsayı (interger) değil" #. module: web #. openerp-web @@ -1581,7 +1586,7 @@ msgstr "Bilinmeyen alan %s alan adında %s" #: code:addons/web/static/src/js/views.js:1466 #, python-format msgid "Node [%s] is not a JSONified XML node" -msgstr "" +msgstr "[%s] düğümü JSONlaştırılmış XML düğümü değil" #. module: web #. openerp-web @@ -1595,7 +1600,7 @@ msgstr "Gelişmiş Arama..." #: code:addons/web/static/src/js/chrome.js:499 #, python-format msgid "Dropping database" -msgstr "" +msgstr "Veritabanı Siliniyor" #. module: web #. openerp-web @@ -1660,7 +1665,7 @@ msgstr "%d yıl önce" #: code:addons/web/static/src/js/view_list.js:1040 #, python-format msgid "Unknown m2m command %s" -msgstr "" +msgstr "Bilinmeyen m2m komutu %s" #. module: web #. openerp-web @@ -1683,7 +1688,7 @@ msgstr "Yeni Veritaban adı:" #: code:addons/web/static/src/js/chrome.js:394 #, python-format msgid "Please enter your new password" -msgstr "" +msgstr "Lütfen yeni parolanızı girin" #. module: web #. openerp-web @@ -1797,7 +1802,7 @@ msgstr "Alanları Göster" #: code:addons/web/static/src/xml/base.xml:330 #, python-format msgid "Confirm New Password:" -msgstr "" +msgstr "Yeni Parolayı Onaylayın:" #. module: web #. openerp-web @@ -1855,7 +1860,7 @@ msgstr "OpenERP" #: code:addons/web/doc/module/static/src/xml/web_example.xml:8 #, python-format msgid "Stop" -msgstr "" +msgstr "Durdur" #. module: web #. openerp-web @@ -1974,7 +1979,7 @@ msgstr "Tip:" #: code:addons/web/static/src/js/chrome.js:538 #, python-format msgid "Incorrect super-administrator password" -msgstr "" +msgstr "Geçersiz super-yönetici şifresi" #. module: web #. openerp-web @@ -2016,6 +2021,7 @@ msgid "" "The type of the field '%s' must be a many2many field with a relation to " "'ir.attachment' model." msgstr "" +"'%s' alanı 'ir.attachment' modeline many2many ile bağlı bir tipte olmalı" #. module: web #. openerp-web @@ -2078,7 +2084,7 @@ msgstr "Örnek verileri yükle:" #: code:addons/web/static/src/xml/base.xml:615 #, python-format msgid "Created by :" -msgstr "" +msgstr "Oluşturan:" #. module: web #. openerp-web @@ -2086,7 +2092,7 @@ msgstr "" #: code:addons/web/static/src/js/dates.js:26 #, python-format msgid "'%s' is not a valid datetime" -msgstr "" +msgstr "'%s' geçersiz bir tarih saat değeri" #. module: web #. openerp-web @@ -2166,14 +2172,14 @@ msgstr "\"%s\" İndir" #: code:addons/web/static/src/js/view_form.js:326 #, python-format msgid "New" -msgstr "" +msgstr "Yeni" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1767 #, python-format msgid "Can't convert value %s to context" -msgstr "" +msgstr "%s değeri bağlama dönüştürülemiyor" #. module: web #. openerp-web @@ -2246,13 +2252,13 @@ msgstr "OpenERP Hakkında" #: code:addons/web/static/src/js/formats.js:297 #, python-format msgid "'%s' is not a correct date, datetime nor time" -msgstr "" +msgstr "'%s' geçerli bir tarih, saat ya da tarih saat değeri değil" #. module: web #: code:addons/web/controllers/main.py:1264 #, python-format msgid "No content found for field '%s' on '%s:%s'" -msgstr "" +msgstr "'%s' alanı için içerik '%s:%s' bulunamadı" #. module: web #. openerp-web @@ -2280,7 +2286,7 @@ msgstr "Veritabanlarını Yönet" #: code:addons/web/static/src/js/pyeval.js:765 #, python-format msgid "Evaluation Error" -msgstr "" +msgstr "Değerlendirme hatası" #. module: web #. openerp-web @@ -2313,7 +2319,7 @@ msgstr "Hayır" #: code:addons/web/static/src/js/formats.js:309 #, python-format msgid "'%s' is not convertible to date, datetime nor time" -msgstr "" +msgstr "'%s' tarih, tarihsaat veya saat biçimine çevrilemiyor" #. module: web #. openerp-web @@ -2380,7 +2386,7 @@ msgstr "Öntanımlı değer olarak kullan" #: code:addons/web/static/src/js/view_list.js:1348 #, python-format msgid "%s (%d)" -msgstr "" +msgstr "%s (%d)" #. module: web #. openerp-web @@ -2443,7 +2449,7 @@ msgstr "Gerçekten bu eki silmek istediğinizden emin misiniz?" #: code:addons/web/static/src/js/views.js:840 #, python-format msgid "Technical Translation" -msgstr "" +msgstr "Terim Çevirileri" #. module: web #. openerp-web @@ -2457,21 +2463,21 @@ msgstr "Alan:" #: code:addons/web/static/src/xml/base.xml:620 #, python-format msgid "Modified by :" -msgstr "" +msgstr "Değiştiren :" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:499 #, python-format msgid "The database %s has been dropped" -msgstr "" +msgstr "Veritabanu %s silindi" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:460 #, python-format msgid "User's timezone" -msgstr "" +msgstr "Kullanıcı saat dilimi" #. module: web #. openerp-web @@ -2500,7 +2506,7 @@ msgstr "Özel:" #, python-format msgid "" "The old password you provided is incorrect, your password was not changed." -msgstr "" +msgstr "Eski şifrenizi yanlış girdiniz, şifreniz değiştirilemedi." #. module: web #. openerp-web From 4c46187ebfd19cb45b76684ae87e743e0701499e Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Fri, 25 Jan 2013 11:05:47 +0100 Subject: [PATCH 62/72] [IMP] set_content_full_screen code, avoid duplications bzr revid: xmo@openerp.com-20130125100547-ujawyg4ohnrofl3u --- addons/web/static/src/js/chrome.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 91a006c1f7c..c346e9691b7 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -1370,13 +1370,9 @@ instance.web.WebClient = instance.web.Client.extend({ }); }, set_content_full_screen: function(fullscreen) { - if (fullscreen) { - $(".oe_webclient", this.$el).addClass("oe_content_full_screen"); - $("body").css({'overflow-y':'hidden'}); - } else { - $(".oe_webclient", this.$el).removeClass("oe_content_full_screen"); - $("body").css({'overflow-y':'scroll'}); - } + $(document.body).css('overflow-y', fullscreen ? 'hidden' : 'scroll'); + this.$('.oe_webclient').toggleClass( + 'oe_content_full_screen', fullscreen); }, has_uncommitted_changes: function() { var $e = $.Event('clear_uncommitted_changes'); From e02e3969255cec1dd5d78de395e006d3706bed61 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Fri, 25 Jan 2013 12:01:59 +0100 Subject: [PATCH 63/72] [IMP] set _push_me: false to fix lp:1091759 bzr revid: hbrunn@therp.nl-20130125110159-b43murb3dzbp9oib --- addons/web/static/src/js/chrome.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 5bd760486a3..bd82d5b4e19 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -461,10 +461,12 @@ instance.web.DatabaseManager = instance.web.Widget.extend({ params: { 'db': form_obj['db_name'], 'login': 'admin', + 'password': form_obj['create_admin_pwd'], 'login_successful': function() { self.do_action("reload"); }, }, + _push_me: false, }; self.do_action(client_action); }); From 4e6607c75c808e4db8541fe5fad3a3ce1ed19cb2 Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Fri, 25 Jan 2013 22:40:27 +0100 Subject: [PATCH 64/72] [IMP] res.partner missing group by country bzr revid: al@openerp.com-20130125214027-usu1y7eho9gm9uld --- openerp/addons/base/res/res_partner_view.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/openerp/addons/base/res/res_partner_view.xml b/openerp/addons/base/res/res_partner_view.xml index d3f204e102a..c6bda5111ce 100644 --- a/openerp/addons/base/res/res_partner_view.xml +++ b/openerp/addons/base/res/res_partner_view.xml @@ -316,6 +316,7 @@ +
From b7f2a1979a13b7d5460b59df50d6c8714832c11f Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Sun, 27 Jan 2013 05:10:12 +0000 Subject: [PATCH 65/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130126053743-gvzlf7q6x7t1epw7 bzr revid: launchpad_translations_on_behalf_of_openerp-20130127051012-oel2zn0owk19akxk --- addons/web/i18n/pt_BR.po | 38 ++++++++++++++++----------------- addons/web_graph/i18n/pt_BR.po | 11 +++++----- addons/web_kanban/i18n/pt_BR.po | 13 +++++------ 3 files changed, 32 insertions(+), 30 deletions(-) diff --git a/addons/web/i18n/pt_BR.po b/addons/web/i18n/pt_BR.po index 56ba8f53e30..b05ad2a868d 100644 --- a/addons/web/i18n/pt_BR.po +++ b/addons/web/i18n/pt_BR.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-22 07:29+0000\n" +"PO-Revision-Date: 2013-01-26 00:53+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-23 05:09+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: web #. openerp-web @@ -127,7 +127,7 @@ msgstr "Cópia de segurança da base de dados" #: code:addons/web/static/src/js/views.js:463 #, python-format msgid "%(view_type)s view" -msgstr "%(view_type)s view" +msgstr "Visualização %(view_type)s" #. module: web #. openerp-web @@ -214,7 +214,7 @@ msgstr "Data da Última Modificação:" #: code:addons/web/static/src/js/search.js:1459 #, python-format msgid "M2O search fields do not currently handle multiple default values" -msgstr "Campos de pesquisa M2O não aceitão múltiplos valores default" +msgstr "Campos de pesquisa M2O não aceitão múltiplos valores padrão" #. module: web #. openerp-web @@ -433,7 +433,7 @@ msgstr "Não foi possível restaurar a base de dados" #: code:addons/web/static/src/js/view_form.js:4851 #, python-format msgid "File upload" -msgstr "Arquivo carregado" +msgstr "Upload de arquivos" #. module: web #. openerp-web @@ -532,7 +532,7 @@ msgstr "Condição:" #: code:addons/web/static/src/js/view_form.js:1692 #, python-format msgid "Unsupported operator %s in domain %s" -msgstr "Operador não suportado %s no domínio %s" +msgstr "Operador %s não suportado no domínio %s" #. module: web #. openerp-web @@ -560,7 +560,7 @@ msgstr "%d-%d de %d" #: code:addons/web/static/src/js/view_form.js:2868 #, python-format msgid "Create and Edit..." -msgstr "Criar e editar..." +msgstr "Criar e Editar..." #. module: web #. openerp-web @@ -1169,7 +1169,7 @@ msgstr "Fuso horário diferentes" #: code:addons/web/static/src/js/view_form.js:1646 #, python-format msgid "Unknown operator %s in domain %s" -msgstr "Operador desconhecido %s no domínio %s" +msgstr "Operador %s desconhecido no domínio %s" #. module: web #. openerp-web @@ -1183,7 +1183,7 @@ msgstr "%d / %d" #: code:addons/web/static/src/xml/base.xml:1782 #, python-format msgid "2. Check your file format" -msgstr "2. Verifique seu formato de arquivo" +msgstr "2. Verifique o formato de seu arquivo" #. module: web #. openerp-web @@ -1318,7 +1318,7 @@ msgstr "Você deve escolher pelo menos um registro." #: code:addons/web/static/src/js/coresetup.js:631 #, python-format msgid "Don't leave yet,
it's still loading..." -msgstr "Não deixe ainda,
que ainda está carregando ..." +msgstr "Não saia dai,
que ainda está carregando ..." #. module: web #. openerp-web @@ -1332,7 +1332,7 @@ msgstr "Pesquisa Inválida" #: code:addons/web/static/src/js/view_list.js:980 #, python-format msgid "Could not find id in dataset" -msgstr "Não foi possível encontrar ID no conjunto de dados" +msgstr "Não foi possível encontrar o ID no conjunto de dados" #. module: web #. openerp-web @@ -1479,7 +1479,7 @@ msgstr "Confirme a Senha do Super Admin:" #: code:addons/web/static/src/js/coresetup.js:634 #, python-format msgid "Maybe you should consider reloading the application by pressing F5..." -msgstr "Considere recarregar a a aplicação pressionado F5 ..." +msgstr "Tente recarregar a aplicação pressionado F5 ..." #. module: web #. openerp-web @@ -1585,7 +1585,7 @@ msgstr "Todos os usuários" #: code:addons/web/static/src/js/view_form.js:1654 #, python-format msgid "Unknown field %s in domain %s" -msgstr "Campo desconhecido %s no domínio %s" +msgstr "Campo %s desconhecido no domínio %s" #. module: web #. openerp-web @@ -1936,8 +1936,8 @@ msgid "" "Grouping on field '%s' is not possible because that field does not appear in " "the list view." msgstr "" -"Agrupamento em campo '% s' não é possível porque o campo não aparece na " -"visão de lista." +"Agrupar por em campo '% s' não é possível porque o campo não aparece na " +"visualização lista." #. module: web #. openerp-web @@ -1987,7 +1987,7 @@ msgstr "Tipo:" #: code:addons/web/static/src/js/chrome.js:538 #, python-format msgid "Incorrect super-administrator password" -msgstr "Senha de Super-administrator incorreta" +msgstr "Senha de Super Admin incorreta" #. module: web #. openerp-web @@ -2274,7 +2274,7 @@ msgstr "Nenhum conteúdo encontrado para o campo '%s' em '%s:%s'" #: code:addons/web/static/src/xml/base.xml:304 #, python-format msgid "Database Management" -msgstr "Gerenciamento de base de dados" +msgstr "Gerenciamento do banco de dados" #. module: web #. openerp-web @@ -2346,7 +2346,7 @@ msgstr "Duplicar" #: code:addons/web/static/src/xml/base.xml:1391 #, python-format msgid "Discard" -msgstr "Descartar" +msgstr "Cancelar" #. module: web #. openerp-web diff --git a/addons/web_graph/i18n/pt_BR.po b/addons/web_graph/i18n/pt_BR.po index 5f48f52a118..e184b8b50a7 100644 --- a/addons/web_graph/i18n/pt_BR.po +++ b/addons/web_graph/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Luiz Fernando M.França \n" +"PO-Revision-Date: 2013-01-26 06:21+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: web_graph #. openerp-web @@ -85,7 +86,7 @@ msgstr "Radar" #: code:addons/web_graph/static/src/xml/web_graph.xml:34 #, python-format msgid "Download as PNG" -msgstr "Download um PNG" +msgstr "Download como PNG" #. module: web_graph #. openerp-web diff --git a/addons/web_kanban/i18n/pt_BR.po b/addons/web_kanban/i18n/pt_BR.po index a4bd8e19e59..061241953de 100644 --- a/addons/web_kanban/i18n/pt_BR.po +++ b/addons/web_kanban/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Cristiano Korndörfer \n" +"PO-Revision-Date: 2013-01-26 06:23+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: web_kanban #. openerp-web @@ -93,7 +94,7 @@ msgstr "Dobrar" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:91 #, python-format msgid "Add" -msgstr "Incluir" +msgstr "Adicionar" #. module: web_kanban #. openerp-web @@ -107,7 +108,7 @@ msgstr "Criar rapidamente" #: code:addons/web_kanban/static/src/js/kanban.js:936 #, python-format msgid "Are you sure you want to delete this record ?" -msgstr "Você tem certeza que quer deletar este registro ?" +msgstr "Você tem certeza que quer excluir este registro ?" #. module: web_kanban #. openerp-web From b87102f22eac494a2bba1deab811ba0e20906ba7 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Mon, 28 Jan 2013 14:06:40 +0100 Subject: [PATCH 66/72] [FIX] Inject user context in all domain and context evaluation Custom keys from user context may be used in action contexts (not just e.g. searchview filters). For instance, have a custom key context_salesteam (in the user model) and an action defining some search default as a function of the salesteam. In that case, the action's context evaluation (view.js:~275) will blow up. Ensure that does not happen. Note: eval_contexts already injects user_context in the reduction of contexts to evaluate. It should be possible to alter the reduction function to avoid having to inject instance.session.user_context through pyeval.context(), maybe by _.extend-ing ``result_context`` into ``evaluation_context`` at the *top* of the reduction function rather than at its bottom? bzr revid: xmo@openerp.com-20130128130640-ksyvxvx6rlc4820n --- addons/web/static/src/js/pyeval.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/addons/web/static/src/js/pyeval.js b/addons/web/static/src/js/pyeval.js index 2c1b5ec9d7d..554c4aa7db0 100644 --- a/addons/web/static/src/js/pyeval.js +++ b/addons/web/static/src/js/pyeval.js @@ -689,15 +689,14 @@ openerp.web.pyeval = function (instance) { }; instance.web.pyeval.context = function () { - return { - uid: py.float.fromJSON(instance.session.uid), + return _.extend({ datetime: datetime, context_today: context_today, time: time, relativedelta: relativedelta, current_date: py.PY_call( time.strftime, [py.str.fromJSON('%Y-%m-%d')]), - }; + }, instance.session.user_context); }; /** From 26ea11f21b1971d568a0b94e8bbcd69e03ccb6d4 Mon Sep 17 00:00:00 2001 From: Niels Huylebroeck Date: Mon, 28 Jan 2013 15:07:10 +0100 Subject: [PATCH 67/72] [FIX] membership: added correction by Olivier Dony to catch errors if the xmlid was deleted by user. bzr revid: nh@agaplan.eu-20130128140710-4l5fcxesmx1fflwd --- addons/membership/wizard/membership_invoice.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/addons/membership/wizard/membership_invoice.py b/addons/membership/wizard/membership_invoice.py index 2198f15d4bf..46896435c56 100644 --- a/addons/membership/wizard/membership_invoice.py +++ b/addons/membership/wizard/membership_invoice.py @@ -54,7 +54,10 @@ class membership_invoice(osv.osv_memory): invoice_list = partner_obj.create_membership_invoice(cr, uid, context.get('active_ids', []), datas=datas, context=context) res = mod_obj.get_object_reference(cr, uid, 'account', 'view_account_invoice_filter') - form_view_id = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_form') + try: + form_view_id = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_form')[1] + except ValueError: + form_view_id = False return { 'domain': [('id', 'in', invoice_list)], @@ -63,7 +66,7 @@ class membership_invoice(osv.osv_memory): 'view_mode': 'tree,form', 'res_model': 'account.invoice', 'type': 'ir.actions.act_window', - 'views': [(False, 'tree'), (form_view_id and form_view_id[1] or False, 'form')], + 'views': [(False, 'tree'), (form_view_id, 'form')], 'search_view_id': res and res[1] or False } From 39951ce27cb3a23ee75425188af5e512fa6d35fa Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Tue, 29 Jan 2013 06:18:24 +0000 Subject: [PATCH 68/72] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130125060526-1sardheh24y8unc0 bzr revid: launchpad_translations_on_behalf_of_openerp-20130126053740-34a73mqkdg04j9s4 bzr revid: launchpad_translations_on_behalf_of_openerp-20130127051008-60htke4mkwclnqfk bzr revid: launchpad_translations_on_behalf_of_openerp-20130128055849-swluxyrhgvpbmrg2 bzr revid: launchpad_translations_on_behalf_of_openerp-20130129061824-peffot06nnwkgdkp --- addons/account/i18n/fr.po | 14 +- addons/account/i18n/nl.po | 654 +++++++++- addons/account/i18n/pt_BR.po | 17 +- addons/account_analytic_analysis/i18n/fr.po | 23 +- addons/account_asset/i18n/hr.po | 14 +- .../i18n/sl.po | 32 +- addons/account_budget/i18n/sl.po | 55 +- addons/account_check_writing/i18n/pt.po | 12 +- addons/account_followup/i18n/pt_BR.po | 197 ++- addons/account_followup/i18n/sl.po | 74 +- addons/account_payment/i18n/sl.po | 103 +- addons/account_sequence/i18n/sl.po | 20 +- addons/account_test/i18n/hr.po | 241 ++++ addons/account_test/i18n/pt_BR.po | 289 +++++ addons/account_test/i18n/sl.po | 84 +- addons/account_voucher/i18n/nl.po | 25 +- addons/account_voucher/i18n/pt.po | 24 +- addons/account_voucher/i18n/pt_BR.po | 11 +- addons/analytic_user_function/i18n/sl.po | 30 +- addons/anonymization/i18n/sl.po | 341 ++++++ addons/auth_crypt/i18n/hr.po | 72 +- addons/auth_oauth/i18n/sl.po | 12 +- addons/auth_oauth_signup/i18n/hr.po | 23 + addons/auth_signup/i18n/nl.po | 8 +- addons/base_calendar/i18n/cs.po | 2 +- addons/base_gengo/i18n/sl.po | 249 ++++ addons/base_import/i18n/nl.po | 59 +- addons/base_import/i18n/pt_BR.po | 134 ++- addons/base_setup/i18n/nl.po | 52 +- addons/base_setup/i18n/pt.po | 12 +- addons/base_setup/i18n/pt_BR.po | 28 +- addons/crm/i18n/nl.po | 10 +- addons/crm/i18n/sl.po | 211 ++-- addons/crm_helpdesk/i18n/hr.po | 10 +- addons/crm_todo/i18n/sl.po | 85 ++ addons/document/i18n/sl.po | 85 +- addons/event/i18n/ro.po | 225 ++-- addons/event/i18n/sl.po | 142 +-- addons/event_moodle/i18n/sl.po | 185 +++ addons/fetchmail/i18n/sl.po | 36 +- addons/fleet/i18n/hr.po | 603 ++++++---- addons/fleet/i18n/pt_BR.po | 709 ++++++----- addons/google_base_account/i18n/sl.po | 26 +- addons/google_docs/i18n/ro.po | 226 ++++ addons/google_docs/i18n/sl.po | 188 +++ addons/hr/i18n/de.po | 21 +- addons/hr/i18n/nl.po | 67 +- addons/hr/i18n/ro.po | 216 ++-- addons/hr_attendance/i18n/ro.po | 36 +- addons/hr_evaluation/i18n/nl.po | 54 +- addons/hr_evaluation/i18n/ro.po | 78 +- addons/hr_expense/i18n/pt.po | 20 +- addons/hr_expense/i18n/ro.po | 92 +- addons/hr_holidays/i18n/nl.po | 64 +- addons/hr_holidays/i18n/pt.po | 16 +- addons/hr_holidays/i18n/ro.po | 147 ++- addons/hr_payroll/i18n/pt.po | 22 +- addons/hr_payroll/i18n/ro.po | 70 +- addons/hr_payroll_account/i18n/sl.po | 126 ++ addons/hr_recruitment/i18n/ro.po | 171 ++- addons/hr_timesheet/i18n/nl.po | 8 +- addons/hr_timesheet/i18n/pt.po | 12 +- addons/hr_timesheet/i18n/ro.po | 82 +- addons/hr_timesheet_invoice/i18n/ro.po | 94 +- addons/hr_timesheet_sheet/i18n/de.po | 10 +- addons/hr_timesheet_sheet/i18n/nl.po | 14 +- addons/hr_timesheet_sheet/i18n/pt.po | 16 +- addons/l10n_ar/i18n/pt_BR.po | 174 +++ addons/l10n_be/i18n/pt_BR.po | 15 +- addons/l10n_be_coda/i18n/pt_BR.po | 18 +- addons/l10n_be_hr_payroll/i18n/pt.po | 10 +- addons/l10n_be_hr_payroll/i18n/pt_BR.po | 12 +- addons/l10n_be_invoice_bba/i18n/pt_BR.po | 147 +++ addons/l10n_br/i18n/pt_BR.po | 13 +- addons/l10n_cl/i18n/pt_BR.po | 174 +++ addons/l10n_ec/i18n/pt_BR.po | 31 +- addons/l10n_es/i18n/pt_BR.po | 35 +- addons/l10n_fr/i18n/pt_BR.po | 17 +- addons/l10n_fr_rib/i18n/pt_BR.po | 136 +++ addons/l10n_gt/i18n/pt_BR.po | 27 +- addons/l10n_hn/i18n/pt_BR.po | 27 +- addons/l10n_in/i18n/pt_BR.po | 29 +- addons/l10n_in_hr_payroll/i18n/pt_BR.po | 1014 ++++++++++++++++ addons/l10n_lu/i18n/pt_BR.po | 15 +- addons/l10n_ma/i18n/pt_BR.po | 15 +- addons/l10n_pe/i18n/pt_BR.po | 31 +- addons/l10n_syscohada/i18n/pt_BR.po | 104 ++ addons/l10n_th/i18n/pt_BR.po | 15 +- addons/l10n_uk/i18n/pt_BR.po | 33 +- addons/l10n_ve/i18n/pt_BR.po | 27 +- addons/lunch/i18n/pt.po | 18 +- addons/mail/i18n/de.po | 11 +- addons/mail/i18n/nl.po | 56 +- addons/mail/i18n/pt_BR.po | 81 +- addons/marketing/i18n/nl.po | 14 +- addons/marketing_campaign/i18n/sl.po | 1058 +++++++++++++++++ addons/membership/i18n/sl.po | 86 +- addons/mrp_byproduct/i18n/nl.po | 18 +- addons/mrp_operations/i18n/sl.po | 44 +- addons/mrp_repair/i18n/pt.po | 28 +- addons/note_pad/i18n/sl.po | 28 + addons/note_pad/i18n/sv.po | 28 + addons/point_of_sale/i18n/pt.po | 16 +- addons/point_of_sale/i18n/pt_BR.po | 752 ++++++------ addons/point_of_sale/i18n/sl.po | 318 ++--- addons/portal/i18n/sl.po | 56 +- addons/portal_anonymous/i18n/sv.po | 25 + addons/portal_claim/i18n/nl.po | 15 +- addons/portal_crm/i18n/sl.po | 546 +++++++++ addons/portal_event/i18n/nl.po | 10 +- addons/portal_event/i18n/sv.po | 59 + addons/portal_hr_employees/i18n/nl.po | 12 +- addons/portal_hr_employees/i18n/sl.po | 95 ++ addons/portal_project/i18n/sv.po | 10 +- addons/portal_project_issue/i18n/sv.po | 40 + addons/portal_sale/i18n/nl.po | 10 +- addons/portal_sale/i18n/sl.po | 344 ++++++ addons/portal_sale/i18n/sv.po | 16 +- addons/procurement/i18n/sl.po | 10 +- addons/product/i18n/et.po | 16 +- addons/product/i18n/nl.po | 66 +- addons/product/i18n/sl.po | 23 +- addons/product_manufacturer/i18n/lt.po | 72 ++ addons/product_margin/i18n/sl.po | 18 +- addons/project/i18n/sl.po | 40 +- addons/purchase/i18n/hr.po | 20 +- addons/purchase/i18n/nl.po | 112 +- addons/purchase_requisition/i18n/nl.po | 26 +- addons/report_webkit/i18n/pt.po | 10 +- addons/report_webkit/i18n/pt_BR.po | 95 +- addons/sale/i18n/hu.po | 8 +- addons/sale/i18n/nl.po | 196 ++- addons/sale_mrp/i18n/sl.po | 12 +- addons/sale_stock/i18n/fr.po | 12 +- addons/sale_stock/i18n/nl.po | 23 +- addons/share/i18n/nl.po | 53 +- addons/share/i18n/pt.po | 37 +- addons/share/i18n/sl.po | 617 ++++++++++ addons/stock/i18n/et.po | 10 +- addons/stock/i18n/hu.po | 38 +- addons/stock/i18n/pt_BR.po | 16 +- addons/stock/i18n/sl.po | 108 +- addons/stock_location/i18n/pt_BR.po | 14 +- addons/survey/i18n/pt_BR.po | 159 ++- addons/web_shortcuts/i18n/sv.po | 25 + 145 files changed, 11848 insertions(+), 2989 deletions(-) create mode 100644 addons/account_test/i18n/hr.po create mode 100644 addons/account_test/i18n/pt_BR.po create mode 100644 addons/anonymization/i18n/sl.po create mode 100644 addons/auth_oauth_signup/i18n/hr.po create mode 100644 addons/base_gengo/i18n/sl.po create mode 100644 addons/crm_todo/i18n/sl.po create mode 100644 addons/event_moodle/i18n/sl.po create mode 100644 addons/google_docs/i18n/ro.po create mode 100644 addons/google_docs/i18n/sl.po create mode 100644 addons/hr_payroll_account/i18n/sl.po create mode 100644 addons/l10n_ar/i18n/pt_BR.po create mode 100644 addons/l10n_be_invoice_bba/i18n/pt_BR.po create mode 100644 addons/l10n_cl/i18n/pt_BR.po create mode 100644 addons/l10n_fr_rib/i18n/pt_BR.po create mode 100644 addons/l10n_in_hr_payroll/i18n/pt_BR.po create mode 100644 addons/l10n_syscohada/i18n/pt_BR.po create mode 100644 addons/marketing_campaign/i18n/sl.po create mode 100644 addons/note_pad/i18n/sl.po create mode 100644 addons/note_pad/i18n/sv.po create mode 100644 addons/portal_anonymous/i18n/sv.po create mode 100644 addons/portal_crm/i18n/sl.po create mode 100644 addons/portal_event/i18n/sv.po create mode 100644 addons/portal_hr_employees/i18n/sl.po create mode 100644 addons/portal_project_issue/i18n/sv.po create mode 100644 addons/portal_sale/i18n/sl.po create mode 100644 addons/product_manufacturer/i18n/lt.po create mode 100644 addons/share/i18n/sl.po create mode 100644 addons/web_shortcuts/i18n/sv.po diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index d2841d2cf22..8d072eeba27 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -8,14 +8,14 @@ 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-01-18 09:44+0000\n" -"Last-Translator: Numérigraphe \n" +"PO-Revision-Date: 2013-01-24 16:43+0000\n" +"Last-Translator: WANTELLET Sylvain \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-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1578,7 +1578,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "État de la facturation" #. module: account #: view:account.bank.statement:0 @@ -1720,7 +1720,7 @@ msgstr "Code de la case" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Aperçu des comptes bancaires en pied de page" #. module: account #: selection:account.account,type:0 @@ -2159,7 +2159,7 @@ msgstr "Analyse des factures" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Assistant de composition de courriel" #. module: account #: model:ir.model,name:account.model_account_period_close diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index d124e1073d5..59ddd701ff2 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-20 11:59+0000\n" +"PO-Revision-Date: 2013-01-27 11:07+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -717,7 +717,7 @@ msgstr "De huidige valuta-soort is niet juist geconfigureerd." #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "Winst & Verlies rekeneing" +msgstr "Winst & Verlies rekening" #. module: account #: code:addons/account/account_move_line.py:1157 @@ -1867,6 +1867,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik hier om een nieuwe rekeningsoort aan te maken.\n" +"

\n" +" Een categorie van een grootboekrekeningen wordt gebruikt om " +"\n" +" te bepalen hoe een rekening wordt gebruikt bij een dagboek. " +"\n" +" De afsluitmethode van een categorie bepaald de verwerking " +"van \n" +" de jaarlijkse afsluiting. Rapporten zoals de balans en de " +"winst&verlies \n" +" rekening gebruiken de categorie (Winst/verlies of balans). " +"\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1916,6 +1931,16 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Als u 'Afronden per regel' kiest dan wordt voor elke belasting het bedrag " +"eerst berekend en afgerond voor elke inkooporder-, verkooporder en " +"factuurregel en vervolgens worden deze afgeronde bedragen opgeteld, wat " +"leidt tot het totale bedrag voor deze belasting. Als u 'Globaal Afrond' dan " +"wordt voor elke belasting het bedrag berekend voor elke inkooporder-, " +"verkooporder en factuurregel, dan zullen deze bedragen worden opgeteld en " +"uiteindelijk wordt dit totale belastingbedrag afgerond. Als u verkoopt met " +"prijzen inclusief belastingen, moet u kiezen voor 'Afronden per regel', " +"omdat u er zeker van wilt zijn dat de som van uw regels gelijk zijn aan het " +"totale bedrag met belastingen." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all @@ -2024,7 +2049,7 @@ msgstr "Tijdsduur" #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "Laatste afsluit balans" +msgstr "Laatste eindsaldo" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -2076,7 +2101,7 @@ msgstr "Factuur gevalideerd" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Betaal uw leveranciers per check" +msgstr "Betaal uw leveranciers per cheque" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2099,6 +2124,12 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Dit menu drukt een BTW-aangifte af. Selecteer één of meer periodes uit het " +"fiscale jaar. De benodigde informatie voor de BTW-aangifte wordt door " +"OpenERP automatisch verzameld op basis van de facturen of betalingen (dit " +"verschilt per land). De rapportage geeft de actuele stand van zaken, zodat u " +"op elk moment kunt zien hoeveel belasting u schuldig bent aan het begin en " +"eind van een periode." #. module: account #: code:addons/account/account.py:409 @@ -2210,6 +2241,8 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Dit dagboek bevat al regels voor deze periode, het is zodoende niet mogelijk " +"om het veld bedrijf te wijzigen." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form @@ -2441,6 +2474,8 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Als u dit dagboek wilt gebruiken voor de dagelijkse opening/sluiting van het " +"kasregister, vink deze optie dan aan." #. module: account #: view:account.bank.statement:0 @@ -2699,6 +2734,8 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Het is niet mogelijk om de rekening van 'Gesloten' te wijzigen naar een " +"ander soort, omdat het reeds regels bevat!" #. module: account #: field:account.invoice.report,account_line_id:0 @@ -2719,6 +2756,11 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"Kan de factuur niet aanmaken.\n" +"Het gerelateerde betalingstermijn is waarschijnlijk verkeerd geconfigureerd, " +"want het geeft een berekend bedrag dat groter is dan het totale " +"factuurbedrag. Om afrondingsproblemen te voorkomen, moet de laatste regel " +"van uw betalingstermijn van het type 'saldo'." #. module: account #: view:account.move:0 @@ -2762,6 +2804,7 @@ msgstr "Fiscale positie" #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" +"Het is niet mogelijk om regels aan te maken op een gesloten rekening %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2900,6 +2943,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het maken van een journaalpost.\n" +"

\n" +" Een journaalpost bestaat uit verschillende boekingen. Elk " +"daarvan \n" +" is ofwel een debet- of een credit-transactie. \n" +"

\n" +" OpenERP genereert automatisch één journaalpost per " +"financieel\n" +" boekstuk: factuur, credit factuur, betaling aan een " +"leverancier, bankafschrift, etc.).\n" +" U hoeft dus alleen/hoofdzakelijk handmatige journaalposten " +"aan te maken \n" +" voor memoriaal boekingen.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -3115,6 +3174,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het maken van een nieuw boekjaar.\n" +"

\n" +" Definieer naar behoefte de boekjaren van uw bedrijf. Een \n" +" financieel jaar is een periode waarop aan het einde de " +"bedrijfsresultaten\n" +" worden opgemaakt (veelal 12 maanden). Als men refereert naar " +"het \n" +" financiële jaar, dan is dit het jaar waarin deze eindigt. " +"Bijvoorbeeld: \n" +" Als het financiële jaar van een bedrijf eindigt op 30 " +"november 2011, \n" +" dan wordt bij alles tussen 1 december 2010 en 30 november " +"2011 \n" +" gerefereerd aan het financiële jaar 2011. Het is niet " +"verplicht om \n" +" een kalenderjaar te volgen.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -3191,12 +3269,14 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Geselecteerde facturen kunnen niet bevestigd worden omdat deze zich niet in " +"de 'Concept' of 'Proforma' status bevinden." #. module: account #: code:addons/account/account.py:1062 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "U dient de periodes te selecteren welke toebehoren aan het bedrijf." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3209,7 +3289,7 @@ msgstr "Verkopen per grootboekrekening" #: code:addons/account/account.py:1411 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Het is niet mogelijk een geboekte regel te verwijderen \"%s\"." #. module: account #: view:account.invoice:0 @@ -3236,6 +3316,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Dit dagboek bevat al regels, het iz zodoende niet mogelijk het veld bedrijf " +"te wijzigen." #. module: account #: code:addons/account/account.py:409 @@ -3244,6 +3326,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"U dient een peningsbalans opgeven in een openingsdagboek met de instelling " +"'gecentraliseerde tegenboeking'." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3680,6 +3764,88 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hallo ${object.partner_id.name},

\n" +"\n" +"

Er is een nieuwe factuur voor u beschikbaar:

\n" +" \n" +"

\n" +"   REFERENTIES
\n" +"   Invoice number: ${object.number}
\n" +"   Invoice total: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Invoice date: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Order referentie: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Uw contactpersoon: ${object.user_id.name}\n" +" % endif\n" +"

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

Het is ook mogelijk om direct te betalen met Paypal:

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

Indien u vragen heeft, aarzel dan niet om contact met ons op te " +"nemen.

\n" +"

Dank u voor het kiezen voor ${object.company_id.name or 'us'}!

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

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

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

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 @@ -3859,7 +4025,7 @@ msgstr "Sluit een periode af" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "Opening Subtotaal" +msgstr "Opening subtotaal" #. module: account #: constraint:account.move.line:0 @@ -3867,6 +4033,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Het is niet mogelijk om journaalposten aan te maken met een tweede valuta, " +"zonder zowel de valuta a;s het valutabedrag in te voeren." #. module: account #: field:account.financial.report,display_detail:0 @@ -3895,6 +4063,11 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal rekening (e-mail) voor het ontvangen van online betalingen " +"(creditcard, atc.). Indien u een Paypal rekening instelt, is het mogelijk " +"voor uw klanten om hun facturen of offertes te betalen door te klikken op de " +"knop \"Betaal met Paypal\", in de automatische e-mails of in het OpenERP " +"portaal." #. module: account #: code:addons/account/account_move_line.py:535 @@ -3905,6 +4078,10 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Kan geen dagboek van het soort %s vinden voor dit bedrijf.\n" +"\n" +"U kunt deze aanmaken in het menu:\n" +"Instellingen/Dagboeken/Dagboeken." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile @@ -3955,6 +4132,13 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"U heeft de mogelijkheid om deze credit factuur\n" +" direct de bewerken en te valideren of " +"deze\n" +" in concept te laten staan en te wachten " +"totdat u\n" +" het document ontvangt van uw klant of " +"leverancier." #. module: account #: view:validate.account.move.lines:0 @@ -3972,6 +4156,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"U heeft niet genoeg gegevens opgegeven om de openingsbalans te berekenen. " +"Selecteer een periode en een dagboek in de context." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -4022,6 +4208,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het maken van een fractuur.\n" +"

\n" +" Met OpenERP's digitaal factureren heeft u de mogelijkheid\n" +" om uw betalingen te vereenvoudigen en te versnellen. Uw " +"klanten ontvangen de\n" +" factuur per e-mail en kunnen deze online betalen en/of " +"importeren in hun\n" +" eigen systeem\n" +"

\n" +" Alle communicatie met uw klant wordt automatisch weergegeven " +"onder\n" +" aan iedere factuur\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -4053,6 +4254,9 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"U kunt geen boekingen in dit dagboek wijzigen of annuleren!\n" +"U dient 'Maak het annuleren boekingen mogelijk' in het betreffende dagboek " +"aan te vinken indien u dit wilt doen." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -4077,6 +4281,8 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Er is geen boekjaar voor deze datum gedefinieerd!\n" +"Maak een boekjaar aan in de instellingen van het menu Financieel." #. module: account #: view:account.addtmpl.wizard:0 @@ -4088,7 +4294,7 @@ msgstr "Rekening aanmaken" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "De af te letteren regels moeten behoren tot hetzelfde bedrijf." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -4109,6 +4315,7 @@ msgstr "Detail" #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." msgstr "" +"Deze inkoopbelasting zal standaard worden toegewezen aan nieuwe producten." #. module: account #: report:account.invoice:0 @@ -4291,6 +4498,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Wanneer maandelijkse periodes zijn gemaakt is de status 'Concept'. Aan het " +"einde van een maandelijkse periode is de status 'Gereed'." #. module: account #: view:account.invoice.report:0 @@ -4323,7 +4532,7 @@ msgstr "Crediteuren" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "De periodes om een opening te maken zijn niet gevonden." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4389,7 +4598,7 @@ msgstr "Geen ongeconfigureerd bedrijf!" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Verwacht een grootboek rekeningschema" #. module: account #: field:account.move.line,date:0 @@ -4400,7 +4609,7 @@ msgstr "Boek datum" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "Het dagboek heeft een standaard credit en debet rekening nodig." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree @@ -4452,6 +4661,8 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Vink deze optie aan als u geen belastingen van deze rubriek wilt weergaven " +"op facturen." #. module: account #: code:addons/account/account_move_line.py:1061 @@ -4580,7 +4791,7 @@ msgstr "(Factuur mag niet afgeletterd zijn als u deze wilt openen)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Factuur belastingen kostenplaats" #. module: account #: field:account.chart,period_from:0 @@ -4618,6 +4829,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Deze betalingsvoorwaarde zal worden gebruikt in plaats van de standaard- " +"voor verkooporders en facturen." #. module: account #: view:account.config.settings:0 @@ -4625,6 +4838,8 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Als u \"%(year)s\" in de prefix invoert, dan zal dit worden vervangen door " +"het huidige jaar." #. module: account #: help:account.account,active:0 @@ -4662,6 +4877,9 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Een voorbeeld. Een decimale precisie van 2 staat journaalpostregels toe " +"zoals 9,99 EUR. Een decimale precisie van 4 staat journaalpostregels toe van " +"0,0231 EUR." #. module: account #: field:account.account,shortcut:0 @@ -4725,13 +4943,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voro het aanmaken van een nieuwe bankrekening. \n" +"

\n" +" Stel uw bedrijf bankrekening in en selecteer die moet worden\n" +" vermeld als rapport voettekst. \n" +"

\n" +" Als u de boekhoudmodule van OpenERP gebruikt, dan zullen \n" +" dagboeken en rekeningen automatisch worden aangemaakt\n" +" op basis van deze gegevens.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 msgid "" "Error!\n" "You cannot create recursive Tax Codes." -msgstr "" +msgstr "Fout! U kunt geen herhalende belastingrubrieken maken." #. module: account #: constraint:account.period:0 @@ -4739,6 +4968,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Fout!\n" +"De duur van de periode(s) is/zijn ongeldig." #. module: account #: field:account.entries.report,month:0 @@ -4756,6 +4987,8 @@ msgstr "Maand" #, python-format msgid "You cannot change the code of account which contains journal items!" msgstr "" +"Het is niet mogelijk de de code van de rekening te wijzigen, welke al regels " +"bevat!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 @@ -4770,6 +5003,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Kan geen grootboekschema vinden. U dient er een aan te maken bij " +"Instellingen\\Instellingen\\Financieel" #. module: account #: field:account.entries.report,product_uom_id:0 @@ -4791,7 +5026,7 @@ msgstr "Rek. type" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Bank en Cheques." #. module: account #: field:account.account.template,note:0 @@ -4819,7 +5054,7 @@ msgstr "Laat leeg voor vandaag" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Afsluit subtotaal" #. module: account #: field:account.tax,base_code_id:0 @@ -4832,6 +5067,8 @@ msgstr "Grondslag" msgid "" "You have to provide an account for the write off/exchange difference entry." msgstr "" +"U dient ene rekening op te geven voor boeken van het betaal- en/of " +"koersverschil." #. module: account #: help:res.company,paypal_account:0 @@ -4875,7 +5112,7 @@ msgstr "Vink dit aan wanneer u ook rekeningen wilt tonen met een nul-saldo." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Afletteren openingsbelans" #. module: account #. openerp-web @@ -4901,6 +5138,8 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Er is geen bedrijf zonder een grootboekschema. De wizard wordt zodoende niet " +"gestart." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart @@ -4984,7 +5223,7 @@ msgstr "Creditfacturen" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Af te letteren journaalpostregels" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -5041,6 +5280,9 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Fout!\n" +"Het is niet mogelijk een rekening aan te maken, waarvan de bovenliggende " +"rekening toebehoord aan een ander bedrijf." #. module: account #: code:addons/account/account_invoice.py:631 @@ -5051,6 +5293,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Kan geen enkel dagboek %s vinden voor dit bedrijf.\n" +"\n" +"U kunt deze aanmaken in het menu:\n" +"Instellingen\\Dagboeken\\Dagboeken." #. module: account #: report:account.vat.declaration:0 @@ -5109,6 +5355,7 @@ msgstr "Geannuleerd" #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." msgstr "" +"Geeft u de mogelijkheid om uw facturen in de pro-forma status te zeten." #. module: account #: view:account.journal:0 @@ -5122,6 +5369,8 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Het voegt een valuta kolom toe aan het rapport, als de valuta afwijkt van de " +"bedrijfsvaluta." #. module: account #: code:addons/account/account.py:3346 @@ -5196,6 +5445,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Wanneer een journaalpost wordt aangemaakt is de status 'Concept'. Wanneer " +"een rapport wordt afgedrukt wordt de status 'Afgedrukt'. Wanneer alle " +"transacties zijn afgerond, krijgt het de status 'Gereed'." #. module: account #: code:addons/account/account.py:3157 @@ -5224,7 +5476,7 @@ msgstr "Facturen" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Vink dit aan als dit bedrijf een rechtspersoon is." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5341,6 +5593,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Stel de rekening in welke standaard wordt ingesteld bij belastingregels bij " +"facturen. Laat leeg om de kostenrekening te gebruiken." #. module: account #: code:addons/account/account.py:890 @@ -5376,6 +5630,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Controleer de prijs van de factuur!\n" +"Het ingevoerde totaal niet overeen met de berekende totaal." #. module: account #: field:account.account,active:0 @@ -5421,7 +5677,7 @@ msgstr "Saldo per rekeningsoort" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Er is geen %s rekening bij het dagboek %s." #. module: account #: model:res.groups,name:account.group_account_user @@ -5474,6 +5730,9 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Indien u dit niet aanvinkt, kunt u wel facturen maken en betalingen " +"verwerken, maar heeft u geen boekhouding (financiële mutaties, " +"grootboekrekeningen, ...)" #. module: account #: view:account.period:0 @@ -5551,12 +5810,14 @@ msgstr "Doelrekening" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Mutatie kan niet worden verwijderd, als deze is gekoppeld aan een factuur. " +"(Factuur: %s - Mutatie ID:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Begin aantal" #. module: account #: field:account.subscription,period_type:0 @@ -5623,7 +5884,7 @@ msgstr "Jaar" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Het geeft aan dat de factuur is verzonden." #. module: account #: field:account.tax.template,description:0 @@ -5638,6 +5899,9 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Het is niet mogelijk om een automatische reeks aan te maken voor dit deel.\n" +"Stel een reeks in bij het dagboek voor automatische nummering of maak voor " +"dit deel handmatig een reeks aan." #. module: account #: view:account.invoice:0 @@ -5708,6 +5972,8 @@ msgstr "Bereken code (if type=code)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Kan geen grootboekschema vinden voor dit bedrijf. U dient er een aan te " +"maken." #. module: account #: selection:account.analytic.journal,type:0 @@ -5788,6 +6054,13 @@ msgid "" "entry was reconciled, either the user pressed the button \"Fully " "Reconciled\" in the manual reconciliation process" msgstr "" +"Datum waarop de boekingen van de relatie voor het laatst volledig zijn " +"afgeletterd. Deze datum verschilt van de datum van de laatste datum van " +"afletteren voor deze relatie, omdat het systeem hier het feit weergeeft dat " +"er niets meer was om te af te letteren op deze datum. Dit kan worden bereikt " +"op 2 manieren: ofwel de laatste debet/credit regel is afgeletterd, ofwel de " +"gebruiker heeft op de knop \"Volledig aflettering\" gedrukt bij het " +"handmatig afletteren." #. module: account #: field:account.journal,update_posted:0 @@ -5841,6 +6114,8 @@ msgstr "BeLasti gen en totalen opnieuw berekenen" #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" +"Het is niet mogelijk het dagboek aan te passen of te verwijderen voor deze " +"periode." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5872,6 +6147,8 @@ msgstr "Bedrag berekening" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Het is niet mogelijk om regels toe te voegen of aan te passen in een " +"gesloten periode %s van dagboek %s." #. module: account #: view:account.journal:0 @@ -5928,6 +6205,9 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Selecteer hier het type van de waardering met betrekking tot deze " +"betalingstermijn lijn. Merk op dat u uw laatste regel van het type 'Saldo' " +"moet zijn om ervoor te zorgen dat het hele bedrag zal worden behandeld." #. module: account #: field:account.partner.ledger,initial_balance:0 @@ -6032,7 +6312,7 @@ msgstr "Betaaldatum" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Opening kasregels" #. module: account #: view:account.analytic.account:0 @@ -6095,6 +6375,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Dit betaaltermijn wordt gebruikt in plaats van het standaard betaaltermijn " +"voor inkooporders en inkoopfacturen." #. module: account #: help:account.automatic.reconcile,power:0 @@ -6110,7 +6392,7 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "U dient een periode lengte in te geven welke groter is dan 0." #. module: account #: view:account.fiscal.position.template:0 @@ -6159,6 +6441,8 @@ msgstr "Letter af met afboeken verschil" #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." msgstr "" +"Het is niet ogelijk om regels aan te maken op een rekening van het type " +"'weergave'." #. module: account #: selection:account.payment.term.line,value:0 @@ -6171,6 +6455,8 @@ msgstr "Vast Bedrag" #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Het is niet mogelijk de belastingen te wijzigen. U dient de regels te " +"verwijderen en opnieuw in te geven." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile @@ -6359,6 +6645,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het aanmaken van een grootboekrekening.\n" +"

\n" +" Een grootboekrekening is onderdeel van een grootboek\n" +" wat uw bedrijf in staat stelt om allerlei debet- en " +"creditboekingen\n" +" te registreren. Bedrijven presenteren de volgende " +"jaarstukken:\n" +" de balans en de winst- en verliesrekening. Met het " +"publiceren van de\n" +" jaarstukken kunnen bedrijven voldoen aan de wettelijke " +"verplichting om \n" +" een bepaalde hoeveelheid informatie prijs te geven.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6432,6 +6733,12 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Alle handmatig gemaakte nieuwe journaalposten zijn meestal in de staat " +"'Ongeboekt', maar u kunt met de optie instellen om deze status over te slaan " +"op het betreffende dagboek. In dat geval worden ze behandeld als " +"journaalposten automatisch aangemaakt door het systeem bij document " +"validatie (facturen, bankafschriften, ...). Tevens worden ze aangemaakt in " +"de 'Geboekt' status." #. module: account #: field:account.payment.term.line,days:0 @@ -6505,7 +6812,7 @@ msgstr "Bedrijf gerelateerd aan dit dagboek" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Dit geeft u de mogelijkheid van het gebruik van meerdere valuta's." #. module: account #: view:account.subscription:0 @@ -6597,6 +6904,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Het is niet mogelijk een factuur te annuleren, welke al gedeeltelijk betaald " +"is. U dient de afgeletterde betaling eerst ongedaan te maken." #. module: account #: field:product.template,taxes_id:0 @@ -6631,6 +6940,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het aanmaken van een credit factuur van uw " +"leverancier.\n" +"

\n" +" In plaats van het handmatig maken van de credit factuur, " +"kunt u ook rechtstreeks\n" +" een credit factuur genereren en deze afletteren bij de " +"bijbehorende inkoopfactuur.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6768,12 +7087,15 @@ msgstr "Debiteuren" #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." msgstr "" +"Het is niet mogelijk om journaalposten te maken op een gesloten rekening." #. module: account #: code:addons/account/account_invoice.py:610 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"Het bedrijf ingesteld op de factuurregel grootboekrekening en het bedrijf " +"van de factuur komen niet overheen." #. module: account #: view:account.invoice:0 @@ -6816,13 +7138,13 @@ msgstr "Vermogen" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Interne overboekingen rekening" #. module: account #: code:addons/account/wizard/pos_box.py:33 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Controleer of het veld 'dagboek' is ingesteld bij de bankafschrift." #. module: account #: selection:account.tax,type:0 @@ -6900,6 +7222,13 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Bij het gebruik van betalingstermijnen zal de vervaldatum automatisch " +"berekend worden bij het genereren van de posten. De betalingstermijn kan " +"meerdere vervaldata berekenen, bijvoorbeeld 50% nu en 50% over een maand, " +"maar u kunt ook een vervaldatum forceren. Zorg er dan voor dat er geen " +"betaaltermijn is ingesteld op de factuur. Als u noch een betalingstermijn " +"noch een vervaldatum gebruikt, dan veronderstelt het systeem een " +"onmiddellijke betaling." #. module: account #: code:addons/account/account.py:414 @@ -6908,6 +7237,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Er is geen opening/afsluitperiode gedefinieerd. Mak deze aan voor het maken " +"van een openingsbalans." #. module: account #: help:account.tax.template,sequence:0 @@ -7057,6 +7388,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Er is geen periode gedefinieerd voor deze datum: %s.\n" +"Maak deze aan." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -7107,6 +7440,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Het percentage voor de betaaltermijn regel moet liggen tussen 0 en 1, " +"bijvoorbeeld 0,002 voor 2%." #. module: account #: report:account.invoice:0 @@ -7140,6 +7475,9 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Als u het afletteren van transacties ongedaan maakt, moet u ook alle acties " +"die gekoppeld zijn aan deze transacties controleren. Deze worden niet " +"ongedaan gemaakt." #. module: account #: view:account.account.template:0 @@ -7174,6 +7512,8 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Het is niet toegestaan een tweede valuta op te geven als deze hetzelfde is " +"als de bedrijfsvaluta." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -7262,13 +7602,14 @@ msgstr "Winst & verlies (Kosten rekening)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "Totaal aantal teansacties" +msgstr "Totaal aantal transacties" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." msgstr "" +"Het is niet mogelijk een rekening te verwijderen dat nog regels bevat." #. module: account #: code:addons/account/account.py:1024 @@ -7412,6 +7753,8 @@ msgstr "Alle boekingen" #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." msgstr "" +"U kunt alleen journaalregels afletteren welke aan dezelfde relatie " +"toebehoren." #. module: account #: view:account.journal.select:0 @@ -7472,6 +7815,8 @@ msgstr "Complete set van belastingen" msgid "" "Selected Entry Lines does not have any account move enties in draft state." msgstr "" +"De geselecteerde regels hebben geen enkele journaalpostregel in concept " +"status." #. module: account #: view:account.chart.template:0 @@ -7501,6 +7846,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Instellingen fout!\n" +"De gekozen valuta moet worden gedeeld bij de standaard rekeningen." #. module: account #: code:addons/account/account.py:2256 @@ -7532,7 +7879,7 @@ msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Beheer klantbetalingen" #. module: account #: help:report.invoice.created,origin:0 @@ -7551,6 +7898,8 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Fout!\n" +"De startdatum van het boekjaar moet liggen voor de einddatum." #. module: account #: view:account.tax.template:0 @@ -7589,6 +7938,9 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Het is niet mogelijk een niet-gebalanceerde boeking goed te keuren.\n" +"Zorg ervoor dat u de betalingstermijn correct heeft ingesteld.\n" +"De laatste betalingstermijn regel zou moeten zijn van het type \"Saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 @@ -7634,6 +7986,9 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Instellingen fout!\n" +"U kunt geen onderliggende rekeningen maken bij een rekening van het interne " +"soort \"Weergave\"" #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7657,6 +8012,8 @@ msgid "" "You can not delete an invoice which is not cancelled. You should refund it " "instead." msgstr "" +"Het is niet mogelijk een factuur te verwijderen welke niet is geannuleerd. " +"In plaats hiervan dient u een credit factuur te maken." #. module: account #: help:account.tax,amount:0 @@ -7781,7 +8138,7 @@ msgstr "Journaalpostregels in onbelans" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Grootboekschema sjablonen" #. module: account #: field:account.journal.period,icon:0 @@ -7919,6 +8276,12 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Gebruik deze optie indien u een factuur wilt annuleren, welke niet gemaakt " +"had\n" +" mogen worden. de credit factuur wordt " +"aangemaakt, goedgekeurd en afgeletterd\n" +" met de factuur. U heeft niet de " +"mogelijkheid om de credit factuur te bewerken." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7954,6 +8317,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Er is geen standaard credit rekening gedefinieerd\n" +"bij dagboek \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7992,6 +8357,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een kostenplaats toe te voegen.\n" +"

\n" +" Het normale grootboekschema heeft een structuur volgen\n" +" de wettelijke richtlijnen voor boekhouden. De kostenplaats\n" +" rekeningen kunt u vrij inrichten naar uw behoeften. \n" +"

\n" +" Kostenplaatsen worden normaliter gebruikt bij contracten,\n" +" projecten en/of afdelingen. De meeste acties uitgevoerd " +"door\n" +" OpenERP (facturen, urenstaten, declaraties, etc.) genereren\n" +" kostenplaatsboekingen.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view @@ -8117,6 +8496,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Deze datum wordt gebruikt als de factuurdatum voor de credit factuur. De " +"periode wordt op basis van deze periode bepaald." #. module: account #: view:product.template:0 @@ -8130,6 +8511,8 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"U dient een grootboekrekening, van het geselecteerde grootboekschema, in te " +"stellen voor de bankrekening." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -8205,7 +8588,7 @@ msgstr "Het volgorde veld wordt gebruikt om te sorteren van laag naar hoog." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Restbedrag in valuta" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 @@ -8259,6 +8642,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Credit gebaseerd op dit type. Het is niet mogelijk om te bewerken en te " +"annuleren als de factuur al is afgeletterd." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8295,6 +8680,8 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Fout!\n" +"Het is niet mogelijk om herhalende rekeningen te maken." #. module: account #: model:ir.model,name:account.model_cash_box_in @@ -8325,7 +8712,7 @@ msgstr "Activa" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "Berekende balans" +msgstr "Berekend saldo" #. module: account #. openerp-web @@ -8392,7 +8779,7 @@ msgstr "Kasregel" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Financiële rekenschema's" #. module: account #: report:account.third_party_ledger:0 @@ -8548,6 +8935,7 @@ msgstr "Omgekeerde kostenplaatsbalans -" msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." msgstr "" +"Is deze aflettering aangemaakt door het openen van een nieuw boekjaar?" #. module: account #: view:account.analytic.line:0 @@ -8581,7 +8969,7 @@ msgstr "Totaal resterend" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Opening kas" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8652,7 +9040,7 @@ msgstr "Credit inkoopboek" #: code:addons/account/account.py:1297 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Definieer een reeks voor dit dagboek." #. module: account #: help:account.tax.template,amount:0 @@ -8681,6 +9069,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Dit geeft u de mogelijkheid om het versturen van betalingsherinneringen, met " +"verschillende herinneringsniveaus, te automatiseren.\n" +"                 Dit installeert de module account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8725,7 +9116,7 @@ msgstr "Netto totaal" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Selecteer een start en eind periode" #. module: account #: field:account.config.settings,sale_sequence_next:0 @@ -8774,6 +9165,8 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Deze wizard verwijderd de eindejaar boekingen van het geselecteerde " +"boekjaar. U kunt deze wizard meerdere malen starten voor hetzelfde boekjaar." #. module: account #: report:account.invoice:0 @@ -8861,6 +9254,13 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Gebruik deze optie als u een factuur wilt annuleren en een nieuwe wilt " +"maken.\n" +" De credit factuur wordt aangemaakt, " +"goedgekeurd en afgeletterd\n" +" met de huidige factuur. Een nieuwe " +"concept factuur wordt aangemaakt\n" +" welke u kunt bewerken." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8893,7 +9293,7 @@ msgstr "Grootboekrekeningen categorieën" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Factuur (Ref ${object.number or 'n/b'})" #. module: account #: code:addons/account/account_move_line.py:1211 @@ -8902,6 +9302,8 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"U kunt deze algemeen rekening niet gebruiken in dit dagboek. Controleer de " +"instellingen op het tabblad 'Boekingscontrole' bij het dagboek." #. module: account #: field:account.account.type,report_type:0 @@ -8961,6 +9363,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een een dagboek aan te maken.\n" +"

\n" +" Een dagboek wordt gebruikt om transacties van alle " +"boekhoudkundige gegevens\n" +" met betrekking tot de dagelijkse bedrijfsvoering.\n" +"

\n" +" een gemiddeld bedrijf gebruikt een dagboek per " +"betaalmethode(kasboek,\n" +" bankrekeningen, cheques), een inkoopboek, een verkoopboek\n" +" en een memoriaal.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state @@ -9089,6 +9504,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Deze optie geeft u meer details over de manier waarop uw balans wordt " +"berekend. Omdat het veel ruimte inneemt, kunt u deze optie niet gebruiken, " +"als u een vergelijk maakt." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -9105,6 +9523,8 @@ msgstr "De code van de rekening moet uniek zijn per bedrijf!" #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Deze rekening wordt gebruikt om de uitgaande voorraad te waarderen tegen " +"kostprijs." #. module: account #: view:account.invoice:0 @@ -9142,7 +9562,7 @@ msgstr "Rekeningen toegestaan ( leeg voor geen controle)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Verkoop belastingen (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -9167,6 +9587,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het aanmaken van een herhalende boeking.\n" +"

\n" +" Een herhalende boeking is een memoriaalboeking welke zich " +"hetrhaald\n" +" op een bepaalde datum. Bijvoorbeeld, overeenkomend met de " +"ondertekening\n" +" van een contract of een overeenkomst met een klant of een " +"leverancier. Met\n" +" herhalende boekingen, kunt u deze boekingen automatisch " +"laten genereren.\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -9209,6 +9642,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Dit geeft u de mogelijkheid tot het maken en afdrukken van cheques.\n" +" Dit installeert module account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9248,7 +9683,7 @@ msgstr "" #: code:addons/account/account_move_line.py:1009 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "De journaalpost (%s) voor voor centralisatie is bevestigd." #. module: account #: report:account.analytic.account.journal:0 @@ -9287,6 +9722,9 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"U kunt hier het dagboek kiezen voor het aanmaken van de credit factuur. " +"Indien u dit veld leeg laat, wordt het dagboek van de huidige factuur " +"gebruikt." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9336,6 +9774,10 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Het is niet mogelijk om deze aanpassing te doen op een reeds afgeletterde " +"boeking. Het is alleen mogelijk om enkele, niet wettelijke velden, te " +"wijzigen. Anders dient u het afletteren eerst ongedaan te maken!\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9399,6 +9841,10 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Instellingen fout!\n" +"Het is niet mogelijk een rekening te selecteren met een afsluitmethode van " +"het type \"Onafgeletterd\" voor rekeningen van het type " +"\"Crediteuren/debiteuren\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9420,6 +9866,8 @@ msgstr "" #, python-format msgid "You cannot deactivate an account that contains journal items." msgstr "" +"Het is niet mogelijk ene rekening inactief te maken, als deze nog regels " +"bevat." #. module: account #: selection:account.tax,applicable_type:0 @@ -9486,6 +9934,9 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Wanneer concept facturen zijn bevestigd, kunt u deze niet meer\n" +" bewerken. de facturen krijgen een uniek nummer\n" +" en journaalposten worden aangemaakt in uw grootboek." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9524,7 +9975,7 @@ msgstr "Maak factuur" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Financiele gegevens instellen" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9544,6 +9995,8 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Controleer of het veld 'Interne overboekingen rekening' is ingesteld op de " +"betaalmethode '% s'." #. module: account #: field:account.vat.declaration,display_detail:0 @@ -9584,6 +10037,18 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * De 'Concept' status wordt gebruikt wanneer een gebruiker een nieuwe en " +"niet bevestigde factuur ingeeft.\n" +"* De 'Pro-forma' status wordt gebruikt bij factuur in de Pro-forma staat. De " +"factuur heeft geen factuurnummer.\n" +"* De 'Open' staat wordt gebruikt als gebruiker een factuur maakt en een " +"factuurnummer is toegekend. De factuur blijkt in deze staat zolang de " +"factuur niet is betaald.\n" +"* De 'Betaald' status, wordt automatisch ingesteld wanneer de factuur is " +"betaald. De bijbehorende journaalposten kunnen wel of niet zijn " +"afgeletterd.\n" +"* De 'Geannuleerd' status wordt gebruikt wanneer de gebruiker de factuur " +"annuleert." #. module: account #: field:account.period,date_stop:0 @@ -9603,7 +10068,7 @@ msgstr "Financiële rapportages" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Passiva weergave" #. module: account #: report:account.account.balance:0 @@ -9651,7 +10116,7 @@ msgstr "Bedrijven die referenen aan relatie" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Vraag een credit aan" #. module: account #: view:account.move.line:0 @@ -9700,6 +10165,13 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Dit geeft u de mogelijkheid om betaalopdrachten te maken en te beheren, met " +"als doel\n" +" * te dienen als een eenvoudige basis voor verschillende " +"automatische betaalmethoden, en\n" +" * zorgdragen voor een meer efficiënte manier om " +"betalingen te beheren.\n" +" Dit installeert de module account_payment." #. module: account #: xsl:account.transfer:0 @@ -9717,7 +10189,7 @@ msgstr "Debiteurenkaart" #: code:addons/account/account_move_line.py:827 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Om regels af te letteren moeten deze tot hetzelfde bedrijf behoren." #. module: account #: field:account.account,balance:0 @@ -9795,7 +10267,7 @@ msgstr "Filter op" #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Aantal eenheden" #. module: account #: model:process.node,note:account.process_node_manually0 @@ -9844,11 +10316,14 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Fout!\n" +"De periode is ongeldig. Of de periodes overlappen elkaar of de data van de " +"periodes vallen buiten het boekjaar." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Er zijn geen vervallen posten bij deze klant." #. module: account #: help:account.tax,account_paid_id:0 @@ -9856,6 +10331,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Stel de rekening in welke standaard wordt ingesteld bij belastingregels bij " +"credit facturen. Laat leeg om de kostenrekening te gebruiken." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9889,6 +10366,8 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Dit veld bevat de informatie gerelateerd aan de nummering van de " +"journaalposten in dit dagboek." #. module: account #: field:account.invoice,sent:0 @@ -9915,12 +10394,12 @@ msgstr "Saldo :" #: code:addons/account/account.py:1547 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Het is niet mogelijk om mutaties te maken voor meerdere bedrijven." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodieke verwerking" #. module: account #: view:account.invoice.report:0 @@ -9989,7 +10468,7 @@ msgstr "Eind periode" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Kosten weergave" #. module: account #: field:account.move.line,date_maturity:0 @@ -10000,13 +10479,13 @@ msgstr "Vervaldatum" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Directe betaling" #. module: account #: code:addons/account/account.py:1464 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralisatie" #. module: account #: help:account.journal,type:0 @@ -10163,6 +10642,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"De geselecteerde facturen kunnen niet worden geannuleerd, omdat deze reeds " +"geannuleerd zijn of gereed zijn." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -10197,6 +10678,10 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"U kunt deze wijziging niet uitvoeren op een bevestigde boeking. Alleen " +"bepaalde velden mogen nog wettelijk gewijzigd worden, anders moet u eerst de " +"boeking ongedaan maken.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -10207,11 +10692,17 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Dit geeft accountants de mogelijkheid tot het maken van kostenplaats- en " +"kruislingse budgetten.\n" +" Wanneer het hoofdbudget en de budgetten zijn gedefinieerd,\n" +" kan de projectmanager de geplande bedragen invullen op " +"iedere kostenplaats.\n" +" Dit installeert de module account_budget." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 @@ -10368,7 +10859,7 @@ msgstr "Winst (verlies) te rapporteren" #: code:addons/account/account_invoice.py:387 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Er is geen verkoop/inkoop dagboek gedefinieerd." #. module: account #: view:account.move.line.reconcile.select:0 @@ -10447,7 +10938,7 @@ msgstr "Interne soort" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Genereer regels voor" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10547,6 +11038,8 @@ msgstr "Provincies" #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Deze rekening wordt gebruikt om de uitgaande voorraad te waarderen tegen " +"verkoopprijs." #. module: account #: field:account.invoice,check_total:0 @@ -10569,12 +11062,12 @@ msgstr "Totaal" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Niet mogelijk om %s Concept/Pro-forma/Annuleren factuur." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Creditfactuur belastingen kostenplaats" #. module: account #: view:account.move.bank.reconcile:0 @@ -10699,6 +11192,9 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Als u het afletteren van transacties ongedaan maakt, moet u ook alle acties " +"die gekoppeld zijn aan deze transacties controleren. Deze worden niet " +"ongedaan gemaakt." #. module: account #: code:addons/account/account_move_line.py:1059 @@ -10733,6 +11229,9 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Deze rapportage geeft een overzicht van de uitstaande bedragen gefactureerd " +"aan uw klanten, en van de overschrijdingen van de betalingstermijnen. De " +"zoekopties geven de mogelijkheid om de analyses aan te passen." #. module: account #: view:account.partner.reconcile.process:0 @@ -10753,7 +11252,7 @@ msgstr "Factuurstatus is 'Gereed'" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Beheer klant betaalherinneringen" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10905,6 +11404,7 @@ msgstr "Groepeer op maand of factuurdatum" #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Er is geen inkomsten rekening gedefinieerd voor dit product: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -10966,6 +11466,8 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"De geselecteerde maateenheid is niet compatibel met de maateenheid van het " +"product." #. module: account #: view:account.fiscal.position:0 @@ -10989,6 +11491,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het aanmaken vaneen nieuwe belastingrubriek.\n" +"

\n" +" Afhankelijk van het land, is een belastingrubriek is meestal " +"een in te vullen\n" +"                veld in uw belastingaanfifte. Met OpenERP kunt u bepalen hoe " +"de\n" +"                fiscale structuur en elke belasting berekening zal worden " +"geregistreerd in\n" +"                een of meerdere belastingrubrieken.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -11015,6 +11529,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Selecteer de periode en het dagboek wat u wilt vullen.\n" +"

\n" +" Deze weergave kan worden gebruikt door accountants om\n" +" snel journaalposten te registreren in OpenERP. Indien u ee\n" +" leveranciersfactuur wilt registreren, start dan met het " +"registreren\n" +" van een regel voor kostenrekening. OpenERP zal vervolgens\n" +" automatisch de belasting, gerelateerd aan deze rekening\n" +" voorstellen, alsmede de tegenrekening \"Crediteuren\".\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -11025,7 +11551,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Installeer meer grootboekrekening sjablonen" #. module: account #: report:account.general.journal:0 @@ -11073,6 +11599,8 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Het is niet mogelijk een grootboekrekening te verwijderen of inactief te " +"maken, als deze is ingesteld bij een klant of leverancier." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -11084,6 +11612,8 @@ msgstr "Daboekregels bevestigen" msgid "" "The fiscal position will determine taxes and accounts used for the partner." msgstr "" +"De fiscale positie bepaald de belastingen en rekeningen welke worden " +"gebruikt bij de relatie." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -11099,7 +11629,7 @@ msgstr "Zodra het afletteren is gedaan, kan de factuur worden betaald." #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "De nieuwe valuta is niet correct ingesteld." #. module: account #: view:account.account.template:0 @@ -11115,7 +11645,7 @@ msgstr "Handmatige Factuur Belasting" #: code:addons/account/account_invoice.py:554 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Het betaaltermijn van de leverancier heeft geen betaaltermijnregels." #. module: account #: field:account.account,parent_right:0 @@ -11197,7 +11727,7 @@ msgstr "Februari" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Eind aantal" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11254,7 +11784,7 @@ msgstr "Kostenrekening op product sjabloon" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Betaaltermijn klant" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 064f1be8dc0..5dee314fb39 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -8,14 +8,15 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 00:13+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:29+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -170,9 +171,9 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" -"Você precisa registrar o 'Fim dos Lançamentos Anuais nos Diários' por este " -"Ano Fiscal isto é feito após a criação da Situação de Abertura a partir de " -"'Gerar Situação de Abertura'" +"Você precisa definir o 'Diário de Lançamentos de Fechamento Anual' para este " +"Ano Fiscal, o que é feito após a lançamentos de Abertura após 'Gerar " +"Lançamentos de Abertura'" #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -10660,7 +10661,7 @@ msgstr "" #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index a3f14848e19..2dde3b60f0d 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -8,14 +8,14 @@ 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-01-08 09:03+0000\n" -"Last-Translator: Numérigraphe \n" +"PO-Revision-Date: 2013-01-25 08:51+0000\n" +"Last-Translator: psyray \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-26 05:37+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -262,7 +262,7 @@ msgstr "ou afficher" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Contrats clients" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -399,6 +399,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer ici pour créer un modèle de contrat.\n" +"

\n" +" Les modèles sont utilisés pour pré-configurer un " +"contrat/projet qui \n" +" peut être choisi par les vendeurs pour rapidement " +"configurer les\n" +" clauses du contrat.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user @@ -521,6 +531,9 @@ msgid "" "remaining subtotals which, in turn, are computed as the maximum between " "'(Estimation - Invoiced)' and 'To Invoice' amounts" msgstr "" +"Restant de rente attendu pour ce contrat. Calculé comme la somme des sous-" +"totaux restants qui, a leur tour, sont calculés comme le maximum entre les " +"montants '(Estimation - Facturée)' et 'A facturer'" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index 12c00b51238..b46677ba500 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-25 00:13+0000\n" +"Last-Translator: Davor Bojkić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-26 05:37+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -92,12 +92,12 @@ msgstr "Promijeni" #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Izvodi se" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Postavi na nacrt" #. module: account_asset #: view:asset.asset.report:0 @@ -203,7 +203,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Broj mjeseci u periodu" #. module: account_asset #: view:asset.asset.report:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index f6726c50999..05bb24f771d 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -8,14 +8,14 @@ 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-30 21:58+0000\n" +"PO-Revision-Date: 2013-01-25 17:58+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-26 05:37+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -59,7 +59,7 @@ msgstr "Prekliči izbrane postavke" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "" +msgstr "Datum valute" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -88,7 +88,7 @@ msgstr "Potrditev izbranih postavk" #: report:bank.statement.balance.report:0 #: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report msgid "Bank Statement Balances Report" -msgstr "" +msgstr "Saldi bančnega izpiska" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -99,7 +99,7 @@ msgstr "Preklic postavk" #: view:account.bank.statement.line.global:0 #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Informacije o plačevanju" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 @@ -158,7 +158,7 @@ msgstr "prekliči izbrane postavke" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "" +msgstr "Proti konto" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -174,7 +174,7 @@ msgstr "Datum" #: view:account.bank.statement.line:0 #: field:account.bank.statement.line,globalisation_amount:0 msgid "Glob. Amount" -msgstr "" +msgstr "Skup.znesek" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -194,7 +194,7 @@ msgstr "Ni možno spreminjati potrjenih postavk." #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Are you sure you want to cancel the selected Bank Statement lines ?" -msgstr "" +msgstr "Ali res želite preklicati izbrane postavke?" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -244,12 +244,12 @@ msgstr "Fin.konto" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_currency:0 msgid "Counterparty Currency" -msgstr "" +msgstr "Valuta proti konta" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_bic:0 msgid "Counterparty BIC" -msgstr "" +msgstr "BIC koda proti konta" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,child_ids:0 @@ -271,7 +271,7 @@ msgstr "Res želite potrditi izbrane postavke?" msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" -msgstr "" +msgstr "Koda , ki opredeljuje isto serijo plačil" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -281,7 +281,7 @@ msgstr "\"Osnutki\" postavk" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Glob. Am." -msgstr "" +msgstr "Skupaj" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line @@ -296,7 +296,7 @@ msgstr "Oznaka" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Ime proti konta" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank @@ -334,7 +334,7 @@ msgstr "Opozorilo!" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 msgid "Child Batch Payments" -msgstr "" +msgstr "Podrejena serija plačil" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -354,4 +354,4 @@ msgstr "Skupni znesek" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "Skupni ID" diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index ef037cdeac2..15fd853ac8f 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-25 18:15+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-26 05:37+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -39,7 +39,7 @@ msgstr "Potrjeno" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "" +msgstr "Pozicije" #. module: account_budget #: report:account.budget:0 @@ -59,7 +59,7 @@ msgstr "Potrdi uporabnika" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "" +msgstr "Tiskanje povzetka" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 @@ -100,7 +100,7 @@ msgstr "Valuta:" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_report msgid "Account Budget crossvered report" -msgstr "" +msgstr "Navzkrižna analiza" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -121,7 +121,7 @@ msgstr "Stanje" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Proračun '%s' nima določenih kontov!" #. module: account_budget #: report:account.budget:0 @@ -132,7 +132,7 @@ msgstr "Opis" #. module: account_budget #: report:crossovered.budget.report:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account_budget #: report:crossovered.budget.report:0 @@ -144,7 +144,7 @@ msgstr "Skupaj:" #: field:crossovered.budget,company_id:0 #: field:crossovered.budget.lines,company_id:0 msgid "Company" -msgstr "" +msgstr "Podjetje" #. module: account_budget #: report:crossovered.budget.report:0 @@ -154,7 +154,7 @@ msgstr "do" #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" -msgstr "" +msgstr "Vrni v Osnutek" #. module: account_budget #: view:account.budget.post:0 @@ -179,7 +179,7 @@ msgstr "Zaključeno" #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Practical Amt" -msgstr "" +msgstr "Znesek" #. module: account_budget #: view:account.analytic.account:0 @@ -199,7 +199,7 @@ msgstr "Končni datum" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "" +msgstr "Poročilo proračuna za analitični konto" #. module: account_budget #: view:account.analytic.account:0 @@ -215,7 +215,7 @@ msgstr "Naziv" #. module: account_budget #: model:ir.model,name:account_budget.model_crossovered_budget_lines msgid "Budget Line" -msgstr "" +msgstr "Pozicija" #. module: account_budget #: report:account.budget:0 @@ -230,12 +230,12 @@ msgstr "Proračun" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve Budgets" -msgstr "" +msgstr "Proračuni za potrditev" #. module: account_budget #: view:crossovered.budget:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: account_budget #: field:account.budget.post,code:0 @@ -247,7 +247,7 @@ msgstr "Oznaka" #: view:account.budget.analytic:0 #: view:account.budget.crossvered.report:0 msgid "This wizard is used to print budget" -msgstr "" +msgstr "Čarovnik za tiskanje proračuna" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view @@ -263,7 +263,7 @@ msgstr "Proračuni" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 msgid "This wizard is used to print summary of budgets" -msgstr "" +msgstr "Čarovnik za tiskanje povzetkov proračuna" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -273,19 +273,19 @@ msgstr "Preklicano" #. module: account_budget #: view:crossovered.budget:0 msgid "Approve" -msgstr "" +msgstr "Potrdi" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve" -msgstr "" +msgstr "Za potrditi" #. module: account_budget #: view:account.budget.post:0 #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "" +msgstr "Pozicija" #. module: account_budget #: field:account.budget.analytic,date_from:0 @@ -298,13 +298,13 @@ msgstr "Začetek obdobja" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_summary_report msgid "Account Budget crossvered summary report" -msgstr "" +msgstr "Skupno navzkrižno poročilo za proračun" #. module: account_budget #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Theoretical Amt" -msgstr "" +msgstr "Teoretični znesek" #. module: account_budget #: code:addons/account_budget/account_budget.py:119 @@ -333,7 +333,7 @@ msgstr "Teoretični znesek" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "or" -msgstr "" +msgstr "ali" #. module: account_budget #: field:crossovered.budget.lines,analytic_account_id:0 @@ -368,12 +368,15 @@ msgid "" "

\n" " " msgstr "" +"Proračun je plan prihodkov in stroškov za vaše podjetje.\n" +" Proračun lahko določite na finančnih in analitičnih kontih.\n" +" " #. module: account_budget #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Planned Amt" -msgstr "" +msgstr "Planiran znesek" #. module: account_budget #: view:account.budget.post:0 @@ -419,4 +422,4 @@ msgstr "Analiza od" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "" +msgstr "Osnutki proračunov" diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 75e37566135..5f0aa783468 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:03+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -173,7 +173,7 @@ msgstr "Empresas" #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: account_check_writing #: help:account.check.write,check_number:0 @@ -231,4 +231,4 @@ msgstr "" #. module: account_check_writing #: view:account.check.write:0 msgid "Check" -msgstr "" +msgstr "Cheque" diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index 6fc78c46605..dc3a7bb486e 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -8,14 +8,15 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 00:56+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -34,7 +35,7 @@ msgstr "Nível máximo de acompanhamento de cobrança" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "Agrupar Por..." +msgstr "Agrupar por..." #. module: account_followup #: field:account_followup.print,followup_id:0 @@ -157,6 +158,25 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Caro %(partner_name)s,\n" +"\n" +"Estamos decepcionados ao ver que, apesar de enviar um lembrete, sua conta " +"está seriamente atrasada.\n" +"\n" +"É essencial que o pagamento imediato seja efetuado, caso contrário seremos " +"forçados a cancelar seu registro significando a interrupção de fornecimento " +"de produtos/serviços para sua empresa.\n" +"Por favor, adote as medidas cabíveis para conduzir este pagamento nos " +"próximos 8 dias.\n" +"\n" +"Se existe algum problema com a fatura do qual não temos conhecimento, não " +"hesite em contatar o nosso departamento financeiro, para que possamos " +"resolver o mais rápido possível.\n" +"\n" +"Os detalhes do pagamento estão descritos abaixo.\n" +"\n" +"Cordialmente,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -194,6 +214,37 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Caro ${object.name},

\n" +"

\n" +" Excessão feita se no caso o erro seja nosso, parece que a seguinte " +"quantia ainda não foi quitada. Por favor, adote as medidas cabíveis para " +"conduzir este pagamento nos próximos 8 dias.\n" +"\n" +"Se o seu pagamento foi feito depois desta mensagem chegar, favor ignorar. " +"Não hesite em contatar nosso departamento financeiro. \n" +"\n" +"

\n" +"
\n" +"Cordialmente,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -359,6 +410,42 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Caro ${object.name},

\n" +"

\n" +"\n" +" Estamos decepcionados ao ver que, apesar de enviar um lembrete, sua " +"conta está seriamente atrasada.\n" +"É essencial que o pagamento imediato seja efetuado, caso contrário seremos " +"forçados a cancelar seu registro significando a interrupção de fornecimento " +"de produtos/serviços para sua empresa.\n" +"Por favor, adote as medidas cabíveis para conduzir este pagamento nos " +"próximos 8 dias.\n" +"Se existe algum problema com a fatura do qual não temos conhecimento, não " +"hesite em contatar o nosso departamento financeiro, para que possamos " +"resolver o mais rápido possível.\n" +"Os detalhes do pagamento estão descritos abaixo.\n" +"

\n" +"
\n" +"Cordialmente,\n" +" \n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -667,6 +754,38 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Prezado ${object.name},

\n" +"

\n" +"Apesar de várias insistências, sua pendência ainda não está resolvida.\n" +"A menos que o pagamento integral seja feito nos próximos dias, a ação legal " +"para a cobrança da dívida será tomada sem\n" +"aviso prévio.\n" +"Espero que esta ação será desnecessária e detalhes de pagamentos devidos " +"estão impresso abaixo.\n" +"Em caso de dúvidas relativas a este assunto, não hesite em contactar o nosso " +"departamento financeiro.\n" +" \n" +"

\n" +"
\n" +"Atenciosamente,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -699,6 +818,21 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Caro %(partner_name)s,\n" +"\n" +"Apesar de várias insistências, sua pendência ainda não está resolvida.\n" +"\n" +"A menos que o pagamento integral seja feito nos próximos dias, então a ação " +"legal para a cobrança da dívida será tomada sem aviso prévio.\n" +"\n" +"Espero que esta ação será desnecessária e detalhes de pagamentos devidos " +"estão impresso abaixo.\n" +"Em caso de dúvidas relativas a este assunto, não hesite em contactar o nosso " +"departamento financeiro.\n" +"\n" +"Atenciosamente,\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 @@ -845,6 +979,32 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Prezado ${object.name},

\n" +"

\n" +"Constam em nossos registros uma fatura não paga. Por favor, providencie o " +"pagamento nos próximos dias.\n" +"Se o pagamento foi efetuado após o envio desta mensagem, queira nos " +"desculpas.\n" +"Em caso de dúvidas não deixe de entrar em contato conosco.\n" +"

\n" +"
\n" +"Atenciosamente,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -885,6 +1045,16 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Prezado ${object.name},\n" +"\n" +"Constam em nossos registros uma fatura não paga. Por favor, providencie o " +"pagamento nos próximos dias.\n" +"Se o pagamento foi efetuado após o envio desta mensagem, queira nos " +"desculpas.\n" +"Em caso de dúvidas não deixe de entrar em contato conosco.\n" +"\n" +"Atenciosamente,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 @@ -1051,6 +1221,23 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Prezado %(partner_name)s,\n" +"\n" +"Apesar de diversas mensagens, sua pendência de pagamento ainda não foi " +"resolvida.\n" +"\n" +"A menos que o pagamento total seja providenciado nos próximos dias, as ações " +"legais necessárias para recuperar esse débito serão tomadas sem outro aviso " +"prévio\n" +"\n" +"Esperamos que essa ação não seja necessária, os detalhes da fatura em aberto " +"encontram-se abaixo.\n" +"\n" +"Em caso de dúvidas com relação a esta questão, não deixe de entrar em " +"contato com nosso departamento financeiro.\n" +"\n" +"Atenciosamente,\n" #. module: account_followup #: help:account_followup.print,partner_lang:0 diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index c2139733110..fdc102ffa19 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-03 14:56+0000\n" +"PO-Revision-Date: 2013-01-28 15:23+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -23,12 +23,12 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} Opomnik plačil" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "Maksimalni nivo opominjanja" #. module: account_followup #: view:account_followup.stat:0 @@ -44,33 +44,33 @@ msgstr "Navezava" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(date)s" -msgstr "" +msgstr "%(date)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "" +msgstr "Datum naslednjega dejanja" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Ročno dejanje" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 msgid "Needs Printing" -msgstr "" +msgstr "Potrebno je tiskanje" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "Označite kot končano" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 msgid "Action To Do" -msgstr "" +msgstr "Opravila" #. module: account_followup #: field:account_followup.followup,company_id:0 @@ -93,17 +93,17 @@ msgstr "Predmet e-pošte" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(user_signature)s" -msgstr "" +msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "dni zapadlosti , naredi naslednje:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Koraki iztrjave" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -113,7 +113,7 @@ msgstr "Vsebina" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "" +msgstr "Pošlji opomine" #. module: account_followup #: report:account_followup.followup.print:0 @@ -126,11 +126,13 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Naslednje dejanje. Nastavljeno bo samodejno , ko bo partner dosegel stopnjo " +", ko se zahteva ročna intervencija. " #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "Ni odgovornega" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -196,7 +198,7 @@ msgstr "" #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Balance > 0" -msgstr "" +msgstr "Stanje > 0" #. module: account_followup #: view:account.move.line:0 @@ -206,7 +208,7 @@ msgstr "Skupaj v breme" #. module: account_followup #: field:res.partner,payment_next_action:0 msgid "Next Action" -msgstr "" +msgstr "Naslednje dejanje" #. module: account_followup #: view:account_followup.followup.line:0 @@ -216,14 +218,14 @@ msgstr ": Ime partnerja" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "Določi odgovornega" #. module: account_followup #: view:account_followup.followup:0 #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "" +msgstr "Opomin" #. module: account_followup #: report:account_followup.followup.print:0 @@ -272,7 +274,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:254 #, python-format msgid "Invoices Reminder" -msgstr "" +msgstr "Opomnik za račune" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 @@ -287,7 +289,7 @@ msgstr "" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "" +msgstr "Nepravno" #. module: account_followup #: view:account_followup.print:0 @@ -368,7 +370,7 @@ msgstr "" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "" +msgstr "Omogoča določiti zaporedje vrstic na listi opomina." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -401,12 +403,12 @@ msgstr "" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "" +msgstr "Nivo opomina" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "" +msgstr "Zadnji opomin" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_manual_reconcile_receivable @@ -422,7 +424,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Li." -msgstr "" +msgstr "Li" #. module: account_followup #: field:account_followup.print,email_conf:0 @@ -442,7 +444,7 @@ msgstr "" #. module: account_followup #: field:account_followup.print,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "" +msgstr "Pošlji email v jeziku partnerja" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:169 @@ -474,7 +476,7 @@ msgstr "" #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Partner to Remind" -msgstr "" +msgstr "Opomni partnerja" #. module: account_followup #: view:res.partner:0 @@ -485,7 +487,7 @@ msgstr "" #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 msgid "Follow Ups" -msgstr "" +msgstr "Opomini" #. module: account_followup #: code:addons/account_followup/account_followup.py:219 @@ -516,6 +518,8 @@ msgid "" "Your description is invalid, use the right legend or %% if you want to use " "the percent character." msgstr "" +"Vaš opis je neveljaven, uporabite pravo legendo ali %%, če želite " +"uporabljati znak procent." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -594,12 +598,12 @@ msgstr "" #: help:account_followup.print,date:0 msgid "" "This field allow you to select a forecast date to plan your follow-ups" -msgstr "" +msgstr "To polje omogoča napoved datuma za plan opominov." #. module: account_followup #: field:account_followup.print,date:0 msgid "Follow-up Sending Date" -msgstr "" +msgstr "Datum pošiljanja opomina" #. module: account_followup #: field:res.partner,payment_responsible_id:0 @@ -897,7 +901,7 @@ msgstr "Pravdanje" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "" +msgstr "Maksimalni nivo opomina" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -963,7 +967,7 @@ msgstr "Po" #. module: account_followup #: view:account_followup.stat:0 msgid "This Fiscal year" -msgstr "" +msgstr "To poslovno leto" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 @@ -1036,7 +1040,7 @@ msgstr "" #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "" +msgstr "Opomini so poslani" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1147,7 +1151,7 @@ msgstr "" #. module: account_followup #: field:account_followup.print,test_print:0 msgid "Test Print" -msgstr "" +msgstr "Print test" #. module: account_followup #: view:account_followup.followup.line:0 diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index f83e45f72f5..be4c795345f 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-02 14:35+0000\n" +"PO-Revision-Date: 2013-01-26 18:32+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -29,6 +29,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nov bančni izpisek\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -43,7 +47,7 @@ msgstr "V osnutek" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Izberite način plačevanja" #. module: account_payment #: view:payment.mode:0 @@ -82,7 +86,7 @@ msgstr "Podjetje" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Računovodstvo/Plačila" #. module: account_payment #: selection:payment.line,state:0 @@ -98,7 +102,7 @@ msgstr "Vknjižbe" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Uporabljen konto" #. module: account_payment #: field:payment.line,ml_maturity_date:0 @@ -115,7 +119,7 @@ msgstr "_Dodaj nalogu za plačilo" #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement #: model:ir.actions.act_window,name:account_payment.action_account_populate_statement_confirm msgid "Payment Populate statement" -msgstr "" +msgstr "Uporabljen dokument" #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -124,6 +128,8 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Ne morete preklicati računa , ki je že na bančnem izpisku.Izbrišite ga iz " +"izpiska: %s" #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -162,7 +168,7 @@ msgstr "Sklic" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "" +msgstr "Ime vrstice mora biti enoznačno" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree @@ -195,6 +201,9 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Izpisek je najprej v statusu \"Osnutek\"\n" +" Ko ga banka potrdi dobi status \"Potrjen\"\n" +" Ko je plačan dobi status \"Zaprto\"" #. module: account_payment #: view:payment.order:0 @@ -205,22 +214,22 @@ msgstr "Potrjeno" #. module: account_payment #: help:payment.line,ml_date_created:0 msgid "Invoice Effective Date" -msgstr "" +msgstr "DUR" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "" +msgstr "Način plačila" #. module: account_payment #: selection:payment.line,state:0 msgid "Structured" -msgstr "" +msgstr "Strukturirano" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "Uvoz plačil" #. module: account_payment #: view:payment.line:0 @@ -241,7 +250,7 @@ msgstr "Način plačila" #. module: account_payment #: field:payment.line,ml_date_created:0 msgid "Effective Date" -msgstr "" +msgstr "DUR" #. module: account_payment #: field:payment.line,ml_inv_ref:0 @@ -255,6 +264,8 @@ msgid "" "by you.'Directly' stands for the direct execution.'Due date' stands for the " "scheduled date of execution." msgstr "" +"Izberite možnosti za datum plačila :'Fiksno' = datum,ki ga sami " +"izberete.'Direktno'=takojšne plačilo.'Valuta'=po valuti" #. module: account_payment #: field:payment.order,date_created:0 @@ -264,28 +275,28 @@ msgstr "Datum kreiranja" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "" +msgstr "Dnevnik banke ali gotovine za ta način plačila" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" -msgstr "" +msgstr "Določen datum" #. module: account_payment #: field:payment.line,info_partner:0 #: view:payment.order:0 msgid "Destination Account" -msgstr "" +msgstr "Ciljni konto" #. module: account_payment #: view:payment.line:0 msgid "Desitination Account" -msgstr "" +msgstr "Ciljni konto" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "" +msgstr "Iskanje plačil" #. module: account_payment #: field:payment.line,create_date:0 @@ -322,7 +333,7 @@ msgstr "Partner" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 msgid "Bank statement line" -msgstr "" +msgstr "Pozicija" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -347,7 +358,7 @@ msgstr "Da" #. module: account_payment #: help:payment.line,info_owner:0 msgid "Address of the Main Partner" -msgstr "" +msgstr "Naslov partnerja" #. module: account_payment #: help:payment.line,date:0 @@ -361,13 +372,13 @@ msgstr "" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement msgid "Account Payment Populate Statement" -msgstr "" +msgstr "Predlog bančnega izpiska" #. module: account_payment #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Partner ni določen." #. module: account_payment #: help:payment.mode,name:0 @@ -377,7 +388,7 @@ msgstr "Način Plačila" #. module: account_payment #: report:payment.order:0 msgid "Value Date" -msgstr "" +msgstr "Datum valute" #. module: account_payment #: report:payment.order:0 @@ -387,7 +398,7 @@ msgstr "Vrsta plačila" #. module: account_payment #: help:payment.line,amount_currency:0 msgid "Payment amount in the partner currency" -msgstr "" +msgstr "Znesek v valuti partnerja" #. module: account_payment #: view:payment.order:0 @@ -404,22 +415,22 @@ msgstr "Status" #. module: account_payment #: help:payment.line,communication2:0 msgid "The successor message of Communication." -msgstr "" +msgstr "Naslednje sporočilo komunikacije" #. module: account_payment #: help:payment.line,info_partner:0 msgid "Address of the Ordering Customer." -msgstr "" +msgstr "Naslov kupca" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "Populate Statement:" -msgstr "" +msgstr "Predlog plačila:" #. module: account_payment #: help:payment.order,date_scheduled:0 msgid "Select a date if you have chosen Preferred Date to be fixed." -msgstr "" +msgstr "Izberite datum , če ste izbrali fiksni datum" #. module: account_payment #: field:account.payment.populate.statement,lines:0 @@ -436,7 +447,7 @@ msgstr "Postavke" msgid "" "This Entry Line will be referred for the information of the ordering " "customer." -msgstr "" +msgstr "Ta pozicija se bo sklicevala na kupca" #. module: account_payment #: view:payment.order.create:0 @@ -461,17 +472,17 @@ msgstr "Skupaj:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "Datum plačila" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "ADD" -msgstr "" +msgstr "Dodaj" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_create_payment_order msgid "Populate Payment" -msgstr "" +msgstr "Predlog plačila" #. module: account_payment #: field:account.move.line,amount_to_pay:0 @@ -486,12 +497,12 @@ msgstr "Znbesek v valuti podjetja" #. module: account_payment #: help:payment.line,partner_id:0 msgid "The Ordering Customer" -msgstr "" +msgstr "Kupec" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_make_payment msgid "Account make payment" -msgstr "" +msgstr "Izvedba plačila" #. module: account_payment #: report:payment.order:0 @@ -541,7 +552,7 @@ msgstr "Prekliči" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Bančni račun" #. module: account_payment #: view:payment.line:0 @@ -564,17 +575,17 @@ msgstr "Znesek plačila v valuti podjetja" #. module: account_payment #: view:payment.order.create:0 msgid "Search Payment lines" -msgstr "" +msgstr "Iskanje pozicij" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "" +msgstr "Znesek v valuti partnerja" #. module: account_payment #: field:payment.line,communication2:0 msgid "Communication 2" -msgstr "" +msgstr "Komunikacija 2" #. module: account_payment #: field:payment.order,date_scheduled:0 @@ -584,7 +595,7 @@ msgstr "Načrtovani datum" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Are you sure you want to make payment?" -msgstr "" +msgstr "Ali res želite izvršiti plačilo ?" #. module: account_payment #: view:payment.mode:0 @@ -618,19 +629,19 @@ msgstr "Plačilo" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "" +msgstr "Bančni izpisek/Plačilo" #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" -msgstr "" +msgstr "Pozicija" #. module: account_payment #: help:payment.line,communication:0 msgid "" "Used as the message between ordering customer and current company. Depicts " "'What do you want to say to the recipient about this order ?'" -msgstr "" +msgstr "Uporabljeno za sporočilo med kupcem in podjetjem." #. module: account_payment #: field:payment.mode,name:0 @@ -646,12 +657,12 @@ msgstr "Bančni račun" #: view:payment.line:0 #: view:payment.order:0 msgid "Entry Information" -msgstr "" +msgstr "Informacije o poziciji" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create msgid "payment.order.create" -msgstr "" +msgstr "payment.order.create" #. module: account_payment #: field:payment.line,order_id:0 @@ -672,7 +683,7 @@ msgstr "Izvedi Plačilo" #. module: account_payment #: field:payment.order,date_prefered:0 msgid "Preferred Date" -msgstr "" +msgstr "Željen datum" #. module: account_payment #: view:account.payment.make.payment:0 @@ -684,4 +695,4 @@ msgstr "ali" #. module: account_payment #: help:payment.mode,bank_id:0 msgid "Bank Account for the Payment Mode" -msgstr "" +msgstr "Bančni račun za ta način plačila" diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 29368843c95..444908610c7 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -8,26 +8,26 @@ 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-27 18:09+0000\n" +"PO-Revision-Date: 2013-01-26 18:02+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:33+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_sequence #: view:account.sequence.installer:0 #: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer msgid "Account Sequence Application Configuration" -msgstr "" +msgstr "Konfiguracija zaporedij v računovodstvu" #. module: account_sequence #: help:account.move,internal_sequence_number:0 #: help:account.move.line,internal_sequence_number:0 msgid "Internal Sequence Number" -msgstr "" +msgstr "Številka internega zaporedja" #. module: account_sequence #: help:account.sequence.installer,number_next:0 @@ -52,7 +52,7 @@ msgstr "Naslednje število zaporedja bo to število povečalo za to številko" #. module: account_sequence #: view:account.sequence.installer:0 msgid "Configure Your Account Sequence Application" -msgstr "" +msgstr "Nastavitve zaporedij v računovodstvu" #. module: account_sequence #: view:account.sequence.installer:0 @@ -83,7 +83,7 @@ msgstr "Postavke" #: field:account.move,internal_sequence_number:0 #: field:account.move.line,internal_sequence_number:0 msgid "Internal Number" -msgstr "" +msgstr "Interna številka" #. module: account_sequence #: help:account.sequence.installer,padding:0 @@ -100,7 +100,7 @@ msgstr "Ime" #. module: account_sequence #: field:account.journal,internal_sequence_id:0 msgid "Internal Sequence" -msgstr "" +msgstr "Interno zaporedje" #. module: account_sequence #: help:account.sequence.installer,prefix:0 @@ -132,7 +132,7 @@ msgstr "Predpona" msgid "" "This sequence will be used to maintain the internal number for the journal " "entries related to this journal." -msgstr "" +msgstr "To zaporedje bo uporabljeno za številčenje vknjižb v ta dnevnik" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer @@ -147,4 +147,4 @@ msgstr "Dnevnik" #. module: account_sequence #: view:account.sequence.installer:0 msgid "You can enhance the Account Sequence Application by installing ." -msgstr "" +msgstr "Z namestitvijo boste lahko izboljšali številčenja v računovodstvu." diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po new file mode 100644 index 00000000000..d7fced291ae --- /dev/null +++ b/addons/account_test/i18n/hr.po @@ -0,0 +1,241 @@ +# Croatian 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-01-24 12:40+0000\n" +"Last-Translator: Goran Kliska \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "" +"Code should always set a variable named `result` with the result of your " +"test, that can be a list or\n" +"a dictionary. If `result` is an empty list, it means that the test was " +"succesful. Otherwise it will\n" +"try to translate and print what is inside `result`.\n" +"\n" +"If the result of your test is a dictionary, you can set a variable named " +"`column_order` to choose in\n" +"what order you want to print `result`'s content.\n" +"\n" +"Should you need them, you can also use the following variables into your " +"code:\n" +" * cr: cursor to the database\n" +" * uid: ID of the current user\n" +"\n" +"In any ways, the code must be legal python statements with correct " +"indentation (if needed).\n" +"\n" +"Example: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_02 +msgid "Test 2: Opening a fiscal year" +msgstr "Provjera 2: Otvaranje fiskalne godine" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05 +msgid "" +"Check that reconciled invoice for Sales/Purchases has reconciled entries for " +"Payable and Receivable Accounts" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_03 +msgid "" +"Check if movement lines are balanced and have the same date and period" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,name:0 +msgid "Test Name" +msgstr "Naziv testa" + +#. module: account_test +#: report:account.test.assert.print:0 +msgid "Accouting tests on" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_01 +msgid "Test 1: General balance" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06 +msgid "Check that paid/reconciled invoices are not in 'Open' state" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05_2 +msgid "" +"Check that reconciled account moves, that define Payable and Receivable " +"accounts, are belonging to reconciled invoices" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Tests" +msgstr "Testovi" + +#. module: account_test +#: field:accounting.assert.test,desc:0 +msgid "Test Description" +msgstr "Opis provjere" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Description" +msgstr "Opis" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06_1 +msgid "Check that there's no move for any account with « View » account type" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_08 +msgid "Test 9 : Accounts and partners on account moves" +msgstr "Provjera 9 : Konta i partneri na stavkama knjiženja" + +#. module: account_test +#: model:ir.actions.act_window,name:account_test.action_accounting_assert +#: model:ir.actions.report.xml,name:account_test.account_assert_test_report +#: model:ir.ui.menu,name:account_test.menu_action_license +msgid "Accounting Tests" +msgstr "" + +#. module: account_test +#: code:addons/account_test/report/account_test_report.py:74 +#, python-format +msgid "The test was passed successfully" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,active:0 +msgid "Active" +msgstr "Aktivan" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06 +msgid "Test 6 : Invoices status" +msgstr "Provjera 6 : Status računa" + +#. module: account_test +#: model:ir.model,name:account_test.model_accounting_assert_test +msgid "accounting.assert.test" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05 +msgid "" +"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,code_exec:0 +msgid "Python code" +msgstr "Python kod" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_07 +msgid "" +"Check on bank statement that the Closing Balance = Starting Balance + sum of " +"statement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_07 +msgid "Test 8 : Closing balance on bank statements" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_03 +msgid "Test 3: Movement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05_2 +msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Expression" +msgstr "Izraz" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_04 +msgid "Test 4: Totally reconciled mouvements" +msgstr "Provjera 4: Potpuno zatvoreni IOS-i" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_04 +msgid "Check if the totally reconciled movements are balanced" +msgstr "Provjeri saldo zatvorenih IOS-a" + +#. module: account_test +#: field:accounting.assert.test,sequence:0 +msgid "Sequence" +msgstr "Redoslijed" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_02 +msgid "" +"Check if the balance of the new opened fiscal year matches with last year's " +"balance" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Python Code" +msgstr "Python kod" + +#. module: account_test +#: model:ir.actions.act_window,help:account_test.action_accounting_assert +msgid "" +"

\n" +" Click to create Accounting Test.\n" +"

\n" +" " +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_01 +msgid "Check the balance: Debit sum = Credit sum" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_08 +msgid "Check that general accounts and partners on account moves are active" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06_1 +msgid "Test 7: « View  » account type" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Code Help" +msgstr "" diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po new file mode 100644 index 00000000000..4e3fc82720f --- /dev/null +++ b/addons/account_test/i18n/pt_BR.po @@ -0,0 +1,289 @@ +# Brazilian Portuguese 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-01-27 00:29+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "" +"Code should always set a variable named `result` with the result of your " +"test, that can be a list or\n" +"a dictionary. If `result` is an empty list, it means that the test was " +"succesful. Otherwise it will\n" +"try to translate and print what is inside `result`.\n" +"\n" +"If the result of your test is a dictionary, you can set a variable named " +"`column_order` to choose in\n" +"what order you want to print `result`'s content.\n" +"\n" +"Should you need them, you can also use the following variables into your " +"code:\n" +" * cr: cursor to the database\n" +" * uid: ID of the current user\n" +"\n" +"In any ways, the code must be legal python statements with correct " +"indentation (if needed).\n" +"\n" +"Example: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" +msgstr "" +"O Código deve sempre definir uma variável chamada `resultado` com o " +"resultado do seu teste, que pode ser uma lista ou\n" +"um dicionário. Se `resultado` for uma lista vazia, isso significa que o " +"teste foi bem sucedido. Caso contrário, será\n" +"tentar traduzir e imprimir o que está dentro `resultado` .\n" +"\n" +"Se o resultado do seu teste é um dicionário, você pode definir uma variável " +"chamada `column_order` para escolher em\n" +"que ordem você deseja imprimir o conteúdo do `resultado`.\n" +"\n" +"Se você precisar deles, você também pode usar as seguintes variáveis ​​em " +"seu código:\n" +"     * cr: cursor para o banco de dados\n" +"     * uid: ID do usuário atual\n" +"\n" +"Em todas as maneiras, o código deve ser declarações Python legal com recuo " +"correto (se necessário).\n" +"\n" +"exemplo:\n" +"   sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_02 +msgid "Test 2: Opening a fiscal year" +msgstr "Teste 2: Abrindo um ano fiscal" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05 +msgid "" +"Check that reconciled invoice for Sales/Purchases has reconciled entries for " +"Payable and Receivable Accounts" +msgstr "" +"Verifique se a fatura reconciliada de Vendas / Compras reconciliou entradas " +"para Contas a Pagar e Receber" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_03 +msgid "" +"Check if movement lines are balanced and have the same date and period" +msgstr "" +"Verifique se as linhas de movimento são equilibradas e têm a mesma data e " +"período" + +#. module: account_test +#: field:accounting.assert.test,name:0 +msgid "Test Name" +msgstr "Nome do Teste" + +#. module: account_test +#: report:account.test.assert.print:0 +msgid "Accouting tests on" +msgstr "Testes Contábeis Ativos" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_01 +msgid "Test 1: General balance" +msgstr "Teste 1: Balanços Gerais" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06 +msgid "Check that paid/reconciled invoices are not in 'Open' state" +msgstr "" +"Verifique que as faturas pagas/reconciliadas não estão com a situação " +"'Aberto'" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05_2 +msgid "" +"Check that reconciled account moves, that define Payable and Receivable " +"accounts, are belonging to reconciled invoices" +msgstr "" +"Verifique que os movimentos de conta reconciliados, que definem as contas a " +"pagar e a receber, são pertencentes a faturas reconciliadas" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Tests" +msgstr "Testes" + +#. module: account_test +#: field:accounting.assert.test,desc:0 +msgid "Test Description" +msgstr "Descrição do Teste" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Description" +msgstr "Descrição" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06_1 +msgid "Check that there's no move for any account with « View » account type" +msgstr "" +"Verifique que não existe nenhum movimento para nenhuma conta do tipo " +"« Visualização »" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_08 +msgid "Test 9 : Accounts and partners on account moves" +msgstr "Teste 9: Contas e parceiros em movimentos de contas" + +#. module: account_test +#: model:ir.actions.act_window,name:account_test.action_accounting_assert +#: model:ir.actions.report.xml,name:account_test.account_assert_test_report +#: model:ir.ui.menu,name:account_test.menu_action_license +msgid "Accounting Tests" +msgstr "Testes Contábeis" + +#. module: account_test +#: code:addons/account_test/report/account_test_report.py:74 +#, python-format +msgid "The test was passed successfully" +msgstr "O teste passou com sucesso" + +#. module: account_test +#: field:accounting.assert.test,active:0 +msgid "Active" +msgstr "Ativo" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06 +msgid "Test 6 : Invoices status" +msgstr "Teste 6 :Situação das Faturas" + +#. module: account_test +#: model:ir.model,name:account_test.model_accounting_assert_test +msgid "accounting.assert.test" +msgstr "accounting.assert.test" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05 +msgid "" +"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" +msgstr "" +"Teste 5.1 : Linhas de Pagáveis e Recebíveis em faturas reconciliadas." + +#. module: account_test +#: field:accounting.assert.test,code_exec:0 +msgid "Python code" +msgstr "Código Python" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_07 +msgid "" +"Check on bank statement that the Closing Balance = Starting Balance + sum of " +"statement lines" +msgstr "" +"Verifique no extrato bancário que o Saldo Final = Saldo Inicial + soma das " +"linhas do demonstrativo" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_07 +msgid "Test 8 : Closing balance on bank statements" +msgstr "Teste 8 : Saldo final no demonstrativo bancário" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_03 +msgid "Test 3: Movement lines" +msgstr "Teste 3 : Linhas de Movimentos" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05_2 +msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" +msgstr "Teste 5.2 : Faturas reconciliadas e contas de pagáveis e recebíveis" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Expression" +msgstr "Expressão" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_04 +msgid "Test 4: Totally reconciled mouvements" +msgstr "Teste 4 : Movimentação totalmente reconciliadas" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_04 +msgid "Check if the totally reconciled movements are balanced" +msgstr "Verifique se o total dos movimentos reconciliados estão equilibrados" + +#. module: account_test +#: field:accounting.assert.test,sequence:0 +msgid "Sequence" +msgstr "Seqüência" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_02 +msgid "" +"Check if the balance of the new opened fiscal year matches with last year's " +"balance" +msgstr "" +"Verifique se o saldo da abertura do novo ano fiscal é igual ao com o " +"fechamento do ano passado" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Python Code" +msgstr "Código Python" + +#. module: account_test +#: model:ir.actions.act_window,help:account_test.action_accounting_assert +msgid "" +"

\n" +" Click to create Accounting Test.\n" +"

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

\n" +" Clique para criar um teste Contábil.\n" +"

\n" +" " + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_01 +msgid "Check the balance: Debit sum = Credit sum" +msgstr "Verifique o balanço: Soma dos Débitos = Soma dos Créditos" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_08 +msgid "Check that general accounts and partners on account moves are active" +msgstr "" +"Verifique que as contas gerais, e os parceiros nas contas de movimentos " +"estão ativos" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06_1 +msgid "Test 7: « View  » account type" +msgstr "Teste 7: Conta do tipo « Visualização  »" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Code Help" +msgstr "Ajuda com Código" diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 84ca374799e..54a8207172f 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-05 17:53+0000\n" +"PO-Revision-Date: 2013-01-27 12:43+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -47,24 +47,50 @@ msgid "" " cr.execute(sql)\n" " result = cr.dictfetchall()" msgstr "" +"Code should always set a variable named `result` with the result of your " +"test, that can be a list or\n" +"a dictionary. If `result` is an empty list, it means that the test was " +"succesful. Otherwise it will\n" +"try to translate and print what is inside `result`.\n" +"\n" +"If the result of your test is a dictionary, you can set a variable named " +"`column_order` to choose in\n" +"what order you want to print `result`'s content.\n" +"\n" +"Should you need them, you can also use the following variables into your " +"code:\n" +" * cr: cursor to the database\n" +" * uid: ID of the current user\n" +"\n" +"In any ways, the code must be legal python statements with correct " +"indentation (if needed).\n" +"\n" +"Example: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_02 msgid "Test 2: Opening a fiscal year" -msgstr "" +msgstr "Test 2: Otvoritev poslovnega leta" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_05 msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" -msgstr "" +msgstr "Preveri račune in vknjižbe v saldakontih" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_03 msgid "" "Check if movement lines are balanced and have the same date and period" -msgstr "" +msgstr "Preveri če so vknjižbe usklajene in imajo isto obdobje in datum." #. module: account_test #: field:accounting.assert.test,name:0 @@ -74,24 +100,24 @@ msgstr "Ime testa" #. module: account_test #: report:account.test.assert.print:0 msgid "Accouting tests on" -msgstr "" +msgstr "Testi na" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 msgid "Test 1: General balance" -msgstr "" +msgstr "Test 1: Stanja" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06 msgid "Check that paid/reconciled invoices are not in 'Open' state" -msgstr "" +msgstr "Preveri da če plačani računi niso v statusu 'Odprto'" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_05_2 msgid "" "Check that reconciled account moves, that define Payable and Receivable " "accounts, are belonging to reconciled invoices" -msgstr "" +msgstr "Preveri vknjižbe v saldakontih in račune." #. module: account_test #: view:accounting.assert.test:0 @@ -111,25 +137,25 @@ msgstr "Opis" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 msgid "Check that there's no move for any account with « View » account type" -msgstr "" +msgstr "Preveri da ni nobene vknjižbe na kontih vrste « Pogled »" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_08 msgid "Test 9 : Accounts and partners on account moves" -msgstr "" +msgstr "Test 9 : Konti in partnerji" #. module: account_test #: model:ir.actions.act_window,name:account_test.action_accounting_assert #: model:ir.actions.report.xml,name:account_test.account_assert_test_report #: model:ir.ui.menu,name:account_test.menu_action_license msgid "Accounting Tests" -msgstr "" +msgstr "Računovodski testi" #. module: account_test #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "Test uspešno opravljen" #. module: account_test #: field:accounting.assert.test,active:0 @@ -139,7 +165,7 @@ msgstr "Aktivno" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06 msgid "Test 6 : Invoices status" -msgstr "" +msgstr "Test 6 : Status računov" #. module: account_test #: model:ir.model,name:account_test.model_accounting_assert_test @@ -150,12 +176,12 @@ msgstr "accounting.assert.test" #: model:accounting.assert.test,name:account_test.account_test_05 msgid "" "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" -msgstr "" +msgstr "Test 5.1 : Postavke saldakontov in računi" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "" +msgstr "Python koda" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -163,21 +189,22 @@ msgid "" "Check on bank statement that the Closing Balance = Starting Balance + sum of " "statement lines" msgstr "" +"Preveri da je na bančnih izpiskih Končni saldo=Začetni saldo+vsota postavk" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_07 msgid "Test 8 : Closing balance on bank statements" -msgstr "" +msgstr "Test 1 : Zaključno stanje na bančnih izpiskih" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_03 msgid "Test 3: Movement lines" -msgstr "" +msgstr "Test 3: Vknjižbe" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05_2 msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" -msgstr "" +msgstr "Test 5.2 : Računi in konti terjatev in obveznosti" #. module: account_test #: view:accounting.assert.test:0 @@ -187,12 +214,12 @@ msgstr "Izraz" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_04 msgid "Test 4: Totally reconciled mouvements" -msgstr "" +msgstr "Test 4: Popolnoma usklajene vknjižbe" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_04 msgid "Check if the totally reconciled movements are balanced" -msgstr "" +msgstr "Preveri če so usklajene vknjižbe uravnovešene" #. module: account_test #: field:accounting.assert.test,sequence:0 @@ -204,7 +231,7 @@ msgstr "Zaporedje" msgid "" "Check if the balance of the new opened fiscal year matches with last year's " "balance" -msgstr "" +msgstr "Preveri če je otvoritveno stanje enako končnemu za prejšnje leto" #. module: account_test #: view:accounting.assert.test:0 @@ -219,23 +246,28 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nov test.\n" +"

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 msgid "Check the balance: Debit sum = Credit sum" -msgstr "" +msgstr "Preveri saldo : Kredit=Debit" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_08 msgid "Check that general accounts and partners on account moves are active" msgstr "" +"Preveri če so glavni konti in partnerji na kontih nastavljen na \"Aktivno\"" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06_1 msgid "Test 7: « View  » account type" -msgstr "" +msgstr "Test 7: « Pogled  » vrsta konta" #. module: account_test #: view:accounting.assert.test:0 msgid "Code Help" -msgstr "" +msgstr "Pomoč" diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 129bd241fb6..c56cc2e714e 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-13 18:16+0000\n" +"PO-Revision-Date: 2013-01-27 11:32+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -282,7 +282,7 @@ msgid "" " " msgstr "" "

\n" -" Klik om een verkoopbon aan te maken.\n" +" Klik om een betaalbewijs aan te maken.\n" "

\n" " Wanneer een verkoopbon is bevestigd, kunt u de \n" " betaling van uw klant vastleggen.\n" @@ -381,7 +381,7 @@ msgstr "Betaal later" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "Ontvangstbewijs" +msgstr "Betaalbewijs" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1004 @@ -416,7 +416,7 @@ msgstr "Leverancier" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Voucher" -msgstr "Ontvangstbewijs" +msgstr "Betaalbewijs" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 @@ -642,7 +642,7 @@ msgstr "Declaratieregels" #. module: account_voucher #: view:account.voucher:0 msgid "Sale voucher" -msgstr "Verkoop betaalbewijs" +msgstr "Betaalbewijs" #. module: account_voucher #: help:account.voucher,is_multi_currency:0 @@ -816,7 +816,7 @@ msgstr "Betaald" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "Verkoopbon" +msgstr "Betaalbewijs" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -921,7 +921,7 @@ msgstr "Klantbetaling" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "Verkoopbon analyse" +msgstr "Betaalbewijs analyse" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1118,7 +1118,7 @@ msgstr "mei" #. module: account_voucher #: view:account.voucher:0 msgid "Sale Receipt" -msgstr "Verkoopbon" +msgstr "Betaalbewijs" #. module: account_voucher #: view:account.voucher:0 @@ -1300,7 +1300,7 @@ msgstr "Bedrag excl. belastingen" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "Verkoopbon analyses" +msgstr "Betaalbewijs analyses" #. module: account_voucher #: view:account.voucher:0 @@ -1335,3 +1335,6 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" +"Standaard worden de concept afletteringen van bankafschriften ingesteld als " +"inactief. Dit geeft de mogelijkheid om de klant / leverancier-betaling te " +"verbergen zolang de bankafschrift niet is bevestigd." diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 3ea74a5ce1b..5022eee8071 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:46+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -66,7 +66,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Atualizar)" #. module: account_voucher #: view:account.voucher:0 @@ -103,7 +103,7 @@ msgstr "Pagar conta" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Tem a certeza que deseja cancelar este recibo?" #. module: account_voucher #: view:account.voucher:0 @@ -701,7 +701,7 @@ msgstr "" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: account_voucher #: view:account.voucher:0 @@ -722,7 +722,7 @@ msgstr "Agosto" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Validar pagamento" #. module: account_voucher #: help:account.voucher,audit:0 @@ -926,7 +926,7 @@ msgstr "Extrato Bancário" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1168,7 +1168,7 @@ msgstr "Tipo prédefinido" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1207,7 +1207,7 @@ msgstr "Data efectiva para lançamentos contáveis" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Alteração de estado" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1254,7 +1254,7 @@ msgstr "Abrir Balanço" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "Estado alterado" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1000 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index a8fa4fd4e77..d259f40e9f9 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -8,14 +8,15 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 00:30+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -975,7 +976,7 @@ msgstr "Extrato Bancário" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index e293898d72c..6d41e291f85 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -8,44 +8,44 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 13:15+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:34+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Analitična postavka" #. module: analytic_user_function #: view:account.analytic.account:0 msgid "Invoice Price Rate per User" -msgstr "" +msgstr "Cena rangirana po uporabniku" #. module: analytic_user_function #: field:analytic.user.funct.grid,product_id:0 msgid "Service" -msgstr "" +msgstr "Storitev" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Cena na uporabnika" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 msgid "Price" -msgstr "" +msgstr "Cena" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Cena na uro za tega uporabnika." #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -58,12 +58,12 @@ msgstr "Analitični konto" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Napaka!" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 msgid "Invoicing Data" -msgstr "" +msgstr "Podatki fakturiranja" #. module: analytic_user_function #: field:account.analytic.account,user_product_ids:0 @@ -79,11 +79,13 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"Določite posebne storitve in cene\n" +" za nekatere uporabnike." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Enota mere" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:107 @@ -105,7 +107,7 @@ msgid "" "a\n" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." -msgstr "" +msgstr "OpenERP bo iskal posebne pogoje tudi na nadrejenih kontih." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po new file mode 100644 index 00000000000..381f332a95f --- /dev/null +++ b/addons/anonymization/i18n/sl.po @@ -0,0 +1,341 @@ +# Slovenian 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-01-27 13:06+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard +msgid "ir.model.fields.anonymize.wizard" +msgstr "ir.model.fields.anonymize.wizard" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Object" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix +msgid "ir.model.fields.anonymization.migration.fix" +msgstr "ir.model.fields.anonymization.migration.fix" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,target_version:0 +msgid "Target Version" +msgstr "Target Version" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "sql" +msgstr "sql" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" +"Podatkovna zbirka je trenutno le delno kodirana. Poskušajte rešiti problem , " +"preden storite kakšno drugo dejanje." + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_name:0 +msgid "Field Name" +msgstr "Field Name" + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_id:0 +#: field:ir.model.fields.anonymization.migration.fix,field_name:0 +msgid "Field" +msgstr "Field" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "New" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_import:0 +msgid "Import" +msgstr "Import" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization +msgid "ir.model.fields.anonymization" +msgstr "ir.model.fields.anonymization" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "Pred kodiranjem , naredite rezervno kopijo podatkovne zbirke." + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,state:0 +#: field:ir.model.fields.anonymize.wizard,state:0 +msgid "Status" +msgstr "Status" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,direction:0 +msgid "Direction" +msgstr "Smer" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_tree +#: view:ir.model.fields.anonymization:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_fields +msgid "Anonymized Fields" +msgstr "Kodirana polja" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization +msgid "Database anonymization" +msgstr "Kodiranje podatkovne zbirke" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "clear -> anonymized" +msgstr "nekodirano -> kodirano" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Anonymized" +msgstr "Kodirano" + +#. module: anonymization +#: field:ir.model.fields.anonymization,state:0 +msgid "unknown" +msgstr "neznano" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "Kodirana vrednost je prazna. To se ne bi smelo zgoditi." + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,filepath:0 +msgid "File path" +msgstr "Pot do datoteke" + +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "Ta datoteka je rezultat procesa kodiranja." + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,date:0 +msgid "Date" +msgstr "Datum" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_export:0 +msgid "Export" +msgstr "Izvoz" + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Reverse the Database Anonymization" +msgstr "Povratek kodiranja" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" +"Ni možno kodirati polj vrste:binary, many2many, many2one, one2many, " +"reference." + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Database Anonymization" +msgstr "Kodiranje podatkovne zbirke" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_wizard +msgid "Anonymize database" +msgstr "Kodiranje podatkovne zbirke" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "python" +msgstr "python" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,field_ids:0 +msgid "Fields" +msgstr "Polja" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Clear" +msgstr "Počisti" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" +"Če želite povrniti proces kodiranja , morate imeti datoteko , ki ste jo " +"izvozili pri kodiranju." + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: anonymization +#: view:ir.model.fields.anonymization:0 +msgid "Anonymized Field" +msgstr "Kodirano polje" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" +"Podatkovna zbirka je trenutno le delno kodirana. Poskušajte rešiti problem , " +"preden storite kakšno drugo dejanje." + +#. module: anonymization +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Unstable" +msgstr "Nestabilno" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Exception occured" +msgstr "Zgodila se je napaka" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "Not Existing" +msgstr "Ne obstaja" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_name:0 +msgid "Object Name" +msgstr "Ime predmeta" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_history_tree +#: view:ir.model.fields.anonymization.history:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_history +msgid "Anonymization History" +msgstr "Zgodovina kodiranja" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,model_name:0 +msgid "Model" +msgstr "Model" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history +msgid "ir.model.fields.anonymization.history" +msgstr "ir.model.fields.anonymization.history" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:358 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" +"Podatkovna zbirka je trenutno le delno kodirana. Poskušajte rešiti problem , " +"preden storite kakšno drugo dejanje." + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "Napaka!" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Anonymize Database" +msgstr "Kodiranje podatkovne zbirke" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,name:0 +msgid "File Name" +msgstr "Ime datoteke" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "anonymized -> clear" +msgstr "kodirani->nekodirano" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Started" +msgstr "Začeto" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "Podatkovna zbirka je že kodirana." + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Done" +msgstr "Končano" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,query:0 +#: field:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "Query" +msgstr "Query" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,msg:0 +#: field:ir.model.fields.anonymize.wizard,msg:0 +msgid "Message" +msgstr "Sporočilo" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:65 +#: sql_constraint:ir.model.fields.anonymization:0 +#, python-format +msgid "You cannot have two fields with the same name on the same object!" +msgstr "Ni možno imeti dveh polij z istim imenom na istem predmetu." diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index c971ae1bf00..a49d7192b32 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -1,74 +1,28 @@ # Croatian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. +# 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: 2012-12-09 19:40+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-24 12:42+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Kriptirana lozinka" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users msgid "Users" msgstr "Korisnici" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Ovaj modul mijenja zaporku u čitljivom tekstu za šifriranom zaporkom,\n" -#~ "onemogućujući čitanje originalne zaporke.\n" -#~ "Za postojećeg korisnika, ukljanjanje čitljive zaporke dešava se priv put kad " -#~ "se korisnik prijavljuje \n" -#~ "u bazu podataka, nakon instalacije base crypt modula.\n" -#~ "Nakon instalacije ovog modula neće biti moguće doznati zaboravljenu zaporku " -#~ "vašeg korisnika.\n" -#~ "Jedino riješenje je da admin postavi novu zaporku.\n" -#~ "\n" -#~ "Napomena: instalacija ovog modula ne znači da možete ignorirati osnovne " -#~ "mjere sigurnosti,\n" -#~ "jer se zaporka i dlaje prenosi nešifrirana preko mreže (klijent),\n" -#~ "osim ako ne koristite sigurnosne protokole poput XML-RPSC.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Greška" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Molim navedite zaporku!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "Odabrana organizacija nije među dozvoljenim organizacijama za ovog korisnika" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Ne možete imati dva korisnika sa istim korisničkim imenom !" diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 8026344a61e..d4b50ea7ad3 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-14 17:09+0000\n" +"PO-Revision-Date: 2013-01-26 21:25+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -30,7 +30,7 @@ msgstr "" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: auth_oauth #: field:auth.oauth.provider,name:0 @@ -40,7 +40,7 @@ msgstr "" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 msgid "Scope" -msgstr "" +msgstr "Obseg" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 @@ -55,7 +55,7 @@ msgstr "" #. module: auth_oauth #: field:auth.oauth.provider,body:0 msgid "Body" -msgstr "" +msgstr "Vsebina" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po new file mode 100644 index 00000000000..c67459ae492 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -0,0 +1,23 @@ +# Croatian 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-01-24 12:30+0000\n" +"Last-Translator: Goran Kliska \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 26caba6fe27..7fc8ec41467 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-13 18:21+0000\n" +"PO-Revision-Date: 2013-01-27 17:34+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -165,7 +165,7 @@ msgid "" msgstr "" "Het is niet mogelijk om een e-mail te versturen: geen uitgaande e-mail " "server ingesteld,\n" -"Het is mogelijk deze in te stellen bij: Instellingen > Algemene instellingen" +"Het is mogelijk deze in te stellen bij: Instellingen > Algemene" #. module: auth_signup #. openerp-web diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index d191d984c79..1c890d079fd 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-01-24 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-01-25 06:04+0000\n" "X-Generator: Launchpad (build 16445)\n" #. module: base_calendar diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po new file mode 100644 index 00000000000..9df5e138524 --- /dev/null +++ b/addons/base_gengo/i18n/sl.po @@ -0,0 +1,249 @@ +# Slovenian 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-01-26 11:46+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Komentarji za prevajalce" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengo Job 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 "Ta jezik ni podprt" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Komentarji" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo privatni ključ" + +#. 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 "Jobs are Automatically Approved by Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Jezik" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Comments & Activity Linked to Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo Sync Translation (Response)" + +#. 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 "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "" + +#. 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 "" + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standardno" + +#. 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 "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privatni ključ" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Javni ključ" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo Javni ključ" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Prevodi" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Podjetja" + +#. 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 "" + +#. 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 "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Pošlji" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. 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 "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#. 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 "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index d6d95540331..f083105a27e 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -8,14 +8,14 @@ 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-25 20:42+0000\n" +"PO-Revision-Date: 2013-01-25 07:50+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-26 05:37+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: base_import #. openerp-web @@ -56,6 +56,8 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Hoe exporteer/importeer ik verschillende tabellen van een SQL \n" +" applicatie naar OpenERP?" #. module: base_import #. openerp-web @@ -72,6 +74,8 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Land/Database ID: de unieke OpenERP ID voor een \n" +" record, gedefinieerd door de postgresql kolom id" #. module: base_import #. openerp-web @@ -96,6 +100,9 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Voor het land\n" +" België, kunt u deze drie manieren van importeren " +"gebruiken:" #. module: base_import #. openerp-web @@ -121,6 +128,12 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"kopie\n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" #. module: base_import #. openerp-web @@ -139,6 +152,10 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Gebruik\n" +" Land/Externe ID: Gebruik externe ID wanneer u data " +"importeert\n" +" vanuit een andere applicatie." #. module: base_import #. openerp-web @@ -224,6 +241,10 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Gebruik land: Dit is\n" +" de makkelijkste weg wanneer uw gegevens komen vanuit " +"een CSV bestand \n" +" welke handmatig is aangemaakt." #. module: base_import #. openerp-web @@ -244,20 +265,24 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Bijvoorbeeld, om\n" +" te refereren naar het land van een relatie, stelt " +"OpenERP\n" +" drie verschillende velden voor om te importeren:" #. 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 "Wat moet ik doen als ik verschillende matches heb voor een veld?" #. 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 "Externe ID,Naam,Is een bedrijf" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 @@ -336,6 +361,8 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"Externe ID,Naam,Is een \n" +" bedrijf,Gerelateerd bedrijf/Externe ID" #. module: base_import #. openerp-web @@ -386,6 +413,12 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"Microsoft Excel geeft u \n" +" de mogelijkheid alleen de codering te wijzigen bij " +"het opslaan\n" +"                         (in 'Opslaan als' dialoogvenster> klik op 'Extra' " +"dropdown\n" +"                         lijst> Codering tab)." #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -420,6 +453,8 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"Land/Database \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char @@ -429,7 +464,7 @@ msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 msgid "File to check and/or import, raw binary (not base64)" -msgstr "" +msgstr "Te controleren en/of te importeren bestand, raw binair (niet base64)" #. module: base_import #. openerp-web @@ -623,6 +658,8 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"De eerste regel van het\n" +" bestand bevat het label van de kolom" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -641,7 +678,7 @@ msgstr "Importeer CSV bestand" #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Citeren:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related @@ -691,7 +728,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid "dump of such a PostgreSQL database" -msgstr "" +msgstr "dump van zo'n PostgreSQL database" #. module: base_import #. openerp-web @@ -747,7 +784,7 @@ msgstr "person_2,Laurence,False,company_1" #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "Land/Externe ID: base.be" #. module: base_import #. openerp-web @@ -775,7 +812,7 @@ msgstr "(%d meer)" #: code:addons/base_import/static/src/xml/import.xml:227 #, python-format msgid "File for some Quotations" -msgstr "" +msgstr "Bestand voor enkele offertes" #. module: base_import #. openerp-web @@ -827,7 +864,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:373 #, python-format msgid "Everything seems valid." -msgstr "Alles lijkt geldig" +msgstr "Alle velden lijken geldig." #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index d7732ef6b1f..9ae32c74fdd 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 20:27+0000\n" +"Last-Translator: Danimar Ribeiro \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: base_import #. openerp-web @@ -83,6 +83,8 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"País/ID do banco de dados: a ID única do OpenERP para um registro\n" +" registro, definido pela ID da coluna postgresql" #. module: base_import #. openerp-web @@ -98,6 +100,14 @@ msgid "" "\n" " have a unique Database ID)" msgstr "" +"Use \n" +" País/Banco de dados ID: Você deve usar raramente " +"esta \n" +" notação. É mais usado por desenvolvedores como sua " +"principal\n" +" vantagem é de nunca ter conflitos (você pode ter \n" +" vários registros com mesmo nome, mas eles\n" +" sempre tem um único ID no banco de dados)" #. module: base_import #. openerp-web @@ -116,12 +126,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "" +msgstr "company_1,Bigees,True" #. 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 @@ -141,7 +151,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "Arquivo CSV para o Frabricante, Revendedor" #. module: base_import #. openerp-web @@ -153,20 +163,24 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Use \n" +" País/ID Externo: Use ID Externo quando você importa " +"\n" +" dados de uma aplicação externa." #. 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/Id Externo" #. module: base_import #. openerp-web @@ -445,23 +459,25 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"País/Banco de dados \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 msgid "File to check and/or import, raw binary (not base64)" -msgstr "" +msgstr "Arquivo para checar e/ou importar, formato binário(não base64)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:230 #, python-format msgid "Purchase orders with their respective purchase order lines" -msgstr "" +msgstr "Pedidos de Compra com suas respectivas linhas de pedido" #. module: base_import #. openerp-web @@ -479,7 +495,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -489,16 +505,18 @@ msgid "" ". The issue is\n" " usually an incorrect file encoding." msgstr "" +". O problema geralmente\n" +" é um arquivo com encoding incorreto." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -521,59 +539,59 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:30 #, python-format msgid "CSV File:" -msgstr "" +msgstr "Arquivo CSV:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "ID Banco de Dados" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:313 #, python-format msgid "It will produce the following CSV file:" -msgstr "" +msgstr "irá produzir o seguinte arquivo CSV:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "Aqui é o início do arquivo que não foi possível importar:" #. module: base_import #: field:base_import.import,file_type:0 msgid "File Type" -msgstr "" +msgstr "Tipo de Arquivo" #. module: base_import #: model:ir.model,name:base_import.model_base_import_import msgid "base_import.import" -msgstr "" +msgstr "base_import.import" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m msgid "base_import.tests.models.o2m" -msgstr "" +msgstr "base_import.tests.models.o2m" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "A visualização da importação falhou devido a:" #. module: base_import #. openerp-web @@ -591,12 +609,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Recarregar os dados para verificar as alterações." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly msgid "base_import.tests.models.char.readonly" -msgstr "" +msgstr "base_import.tests.models.char.readonly" #. module: base_import #. openerp-web @@ -631,7 +649,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "Você precisa configurar pelo menos um campo para importar" #. module: base_import #. openerp-web @@ -652,33 +670,33 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Importar arquivo CSV" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Citando:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related msgid "base_import.tests.models.m2o.required.related" -msgstr "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -686,21 +704,21 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:396 #, python-format msgid "Import" -msgstr "" +msgstr "Importar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:407 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Aqui estão os possíveis valores:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "O" #. module: base_import #. openerp-web @@ -710,6 +728,8 @@ msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Uma única coluna foi encontrada no arquivo, isso muitas vezes significa que " +"o separador do arquivo está incorreto" #. module: base_import #. openerp-web @@ -723,7 +743,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Este comando SQL vai gerar o seguinte arquivo CSV:" #. module: base_import #. openerp-web @@ -758,7 +778,7 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +msgstr "desconhecido" #. module: base_import #. openerp-web @@ -793,21 +813,21 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:396 #, python-format msgid "(%d more)" -msgstr "" +msgstr "(mais %d)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:227 #, python-format msgid "File for some Quotations" -msgstr "" +msgstr "Arquivo para algumas Cotações" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "Codificação:" #. module: base_import #. openerp-web @@ -852,7 +872,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:373 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Tudo parece válido." #. module: base_import #. openerp-web @@ -871,7 +891,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:390 #, python-format msgid "at row %d" -msgstr "" +msgstr "na linha %d" #. module: base_import #. openerp-web @@ -943,7 +963,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: base_import #. openerp-web @@ -959,7 +979,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "Perguntas Freqüentes" #. module: base_import #. openerp-web @@ -1016,14 +1036,14 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "Arquivo CSV para categorias" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:309 #, python-format msgid "Normal Fields" -msgstr "" +msgstr "Campos normais" #. module: base_import #. openerp-web @@ -1041,7 +1061,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "Arquivo CSV para Produtos" #. module: base_import #. openerp-web @@ -1065,19 +1085,19 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "base_import.tests.models.m2o.related" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "to the original unique identifier." -msgstr "" +msgstr "para o identificador único original." #. module: base_import #. openerp-web @@ -1089,7 +1109,7 @@ msgstr "" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: base_import #. openerp-web @@ -1097,7 +1117,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "ID" #. module: base_import #. openerp-web @@ -1132,12 +1152,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Separador:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Nome do Arquivo" #. module: base_import #. openerp-web @@ -1147,7 +1167,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "ID Externo" #. module: base_import #. openerp-web @@ -1168,7 +1188,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "ou" #. module: base_import #. openerp-web diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 7b8229fd2e8..5257d333c6d 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-01 18:02+0000\n" -"Last-Translator: Leen Sonneveld \n" +"PO-Revision-Date: 2013-01-27 17:33+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,11 +56,19 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP maakt het mogelijk om automatisch leads (of anderen documenten)\n" +"                             van inkomende e-mails aan te maken. U kunt " +"automatisch e-mails synchroniseren met OpenERP\n" +"                             met behulp van reguliere POP / IMAP-accounts, " +"via een direct e-mail integratie script voor uw\n" +"                             e-mail server, of door handmatig uw e-mails te " +"sturen naar OpenERP met behulp van specifieke\n" +"                             plugins voor uw favoriete e-mailprogramma." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "VERKOOP" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -87,7 +95,7 @@ msgstr "Offertes en verkooporders" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "Algemene instellingen" +msgstr "Algemeen" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -122,12 +130,12 @@ msgstr "Beheer meerdere bedrijven" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Op e-mail client" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=UW_DATABASE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -204,6 +212,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Werken in multi-company omgevingen, met de nodige beveiliging toegang tussen " +"de bedrijven.\n" +"                 Dit installeert de module multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -212,6 +223,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Het publiek portal is alleen toegankelijk als u zich in een enkele database-" +"modus bevind. u kunt\n" +"                                     de OpenERP Server starten met de optie" #. module: base_setup #: view:base.config.settings:0 @@ -280,6 +294,16 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Met de plugin kunt u e-mails en bijbehorende bijlagen koppelen aan de " +"geselecteerde\n" +"                 OpenERP objecten. U kunt kiezen voor een relatie, of een " +"lead en\n" +"                 de geselecteerde e-mail koppelen als een. eml-bestand als " +"bijlage\n" +"                 van het geselecteerde record. U kunt documenten aanmaken " +"voor CRM Lead,\n" +"                 en relaties van de geselecteerde e-mails. Dit installeert " +"de module plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -308,6 +332,13 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Met de Outlook-plugin kunt u een object selecteren dat u wilt toevoegen\n" +"                 aan uw e-mail en de bijlagen van MS Outlook. U kunt een " +"relatie \n" +"                 of een lead kiezen en de geselecteerde e-mail archiveren in " +"een\n" +"                 OpenERP mailbericht met bijlagen.\n" +"                 Dit installeert de module plugin_outlook." #. module: base_setup #: view:base.config.settings:0 @@ -326,6 +357,9 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"te doen.\n" +"                                     Eenmaal geactiveerd, zal de login " +"pagina worden vervangen door de openbare website." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -335,7 +369,7 @@ msgstr "Staa documentdelen toe" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(bedrijfs nieuws, vacatures, contact formulier, etc.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index 222025d9676..8924c5f1f5b 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 09:53+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -101,7 +101,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -126,7 +126,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 7be2dff9820..acd14c9a7aa 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -8,14 +8,15 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 20:54+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,14 +57,12 @@ msgid "" " plugins for your preferred email application." msgstr "" "O OpenERP permite criar automaticamente prospectos (ou outros documentos)\n" -"                             a partir de e-mails recebidos. Você pode " -"sincronizar automaticamente e-mails com OpenERP\n" -"                             usando o Contas POP/IMAP, usando um script de " -"integração direta para o seu\n" -"                             e-mail do servidor, ou manualmente, enviando " -"emails para o OpenERP usando plugins\n" -"                             específicos para o seu aplicativo de e-mail " -"preferido." +"a partir de e-mails recebidos. Você pode sincronizar automaticamente e-mails " +"com OpenERP\n" +"usando o Contas POP/IMAP, usando um script de integração direta para o seu\n" +"e-mail do servidor, ou manualmente, enviando emails para o OpenERP usando " +"plugins\n" +"específicos para o seu aplicativo de e-mail preferido." #. module: base_setup #: field:sale.config.settings,module_sale:0 @@ -225,8 +224,7 @@ msgid "" msgstr "" "O portal público é acessível apenas se você estiver em um modo único banco " "de dados. você pode\n" -"                                     iniciar o servidor OpenERP com esta " -"opção" +"iniciar o servidor OpenERP com esta opção" #. module: base_setup #: view:base.config.settings:0 @@ -376,7 +374,7 @@ msgstr "Ativar o portal público" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "Configurar servidor de email para saida" +msgstr "Configurar servidor de email de saida" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index 537150138f6..ec393910922 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-13 18:41+0000\n" +"PO-Revision-Date: 2013-01-24 12:32+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: crm #: view:crm.lead.report:0 @@ -1051,7 +1051,7 @@ msgstr "Toon verkoper" msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." -msgstr "Geeft u de mogelijkheid om klant/leverancier klachten te beheersen." +msgstr "Geeft u de mogelijkheid om klant/leverancier klachten te beheren." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 @@ -1706,7 +1706,7 @@ msgstr "relatie is aangemaakt." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "beheers klant klachten" +msgstr "Klachten van klanten beheren" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index 83bcd04888d..2bc5b680bfb 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-12 13:05+0000\n" +"PO-Revision-Date: 2013-01-26 21:59+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:38+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: crm #: view:crm.lead.report:0 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" +"Omogoča konfiguracijo poštnega strežnika in kreiranje potencialnih " +"priložnosti iz prejetih e-mailov" #. module: crm #: code:addons/crm/crm_lead.py:880 @@ -54,6 +56,11 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Opozorilo , prejete priložnosti so stare več kot 5 dni.\n" +"Ime: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Opis: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 @@ -69,7 +76,7 @@ msgstr "" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "" +msgstr "Izberi priložnosti" #. module: crm #: model:res.groups,name:crm.group_fund_raising @@ -87,7 +94,7 @@ msgstr "" #: view:crm.case.stage:0 #: field:crm.case.stage,name:0 msgid "Stage Name" -msgstr "" +msgstr "Ime faze" #. module: crm #: view:crm.lead:0 @@ -117,13 +124,13 @@ msgstr "Ime podjetja" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Šolanje" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "Ključne besede" #. module: crm #: view:crm.lead.report:0 @@ -135,7 +142,7 @@ msgstr "" #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: crm #: help:crm.lead.report,creation_day:0 @@ -151,7 +158,7 @@ msgstr "Ime pravila" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Spremenite lahko le en klic naenkrat" #. module: crm #: view:crm.case.resource.type:0 @@ -166,12 +173,12 @@ msgstr "Kampanija" #. module: crm #: view:crm.lead:0 msgid "Search Opportunities" -msgstr "" +msgstr "Iskanje priložnosti" #. module: crm #: help:crm.lead.report,deadline_month:0 msgid "Expected closing month" -msgstr "" +msgstr "Pričakovan datum zaključka" #. module: crm #: help:crm.case.section,message_summary:0 @@ -180,7 +187,7 @@ msgstr "" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "Povzetek (število sporočil,..)" #. module: crm #: code:addons/crm/crm_lead.py:632 @@ -208,7 +215,7 @@ msgstr "Partner" #: view:crm.phonecall:0 #: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act msgid "Schedule Other Call" -msgstr "" +msgstr "Planiranje drugega klica" #. module: crm #: code:addons/crm/crm_phonecall.py:209 @@ -230,7 +237,7 @@ msgstr "Regija" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "# Sestanki" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead @@ -250,7 +257,7 @@ msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Združevanje priložnosti" #. module: crm #: view:crm.lead.report:0 @@ -263,7 +270,7 @@ msgstr "Analiza potencialnih priložnosti" #: code:addons/crm/crm_lead.py:1010 #, python-format msgid "%s a call for the %s." -msgstr "" +msgstr "%s klic za %s." #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act @@ -288,7 +295,7 @@ msgstr "" #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "" +msgstr "Možni partner" #. module: crm #: code:addons/crm/crm_lead.py:967 @@ -344,7 +351,7 @@ msgstr "" #: help:crm.lead.report,delay_close:0 #: help:crm.phonecall.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "Število dni za končanje zadeve" #. module: crm #: model:process.node,note:crm.process_node_opportunities0 @@ -399,7 +406,7 @@ msgstr "Razčlenjenost" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Povezava na obstoječega kupca" #. module: crm #: field:crm.lead,write_date:0 @@ -431,7 +438,7 @@ msgstr "Kategorija" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "" +msgstr "#Priložnosti" #. module: crm #: code:addons/crm/crm_lead.py:632 @@ -448,7 +455,7 @@ msgstr "" #. module: crm #: field:crm.lead,partner_address_email:0 msgid "Partner Contact Email" -msgstr "" +msgstr "Partnerjev e-mail" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_section_act @@ -480,7 +487,7 @@ msgstr "Stanje" #. module: crm #: view:crm.lead2opportunity.partner:0 msgid "Create Opportunity" -msgstr "" +msgstr "Nova priložnost" #. module: crm #: view:sale.config.settings:0 @@ -500,7 +507,7 @@ msgstr "" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Faza spremenjena" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -512,7 +519,7 @@ msgstr "Junij" #. module: crm #: selection:crm.segmentation,state:0 msgid "Not Running" -msgstr "" +msgstr "Ni v teku" #. module: crm #: field:crm.lead.report,planned_revenue:0 @@ -522,7 +529,7 @@ msgstr "Načrtovani prihodki" #. module: crm #: field:crm.lead,planned_revenue:0 msgid "Expected Revenue" -msgstr "" +msgstr "Pričakovan prihodek" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -566,12 +573,12 @@ msgstr "" #. module: crm #: view:crm.case.categ:0 msgid "Case Category" -msgstr "" +msgstr "Skupina zadeve" #. module: crm #: field:crm.lead,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "Ime stika partnerja" #. module: crm #: model:ir.actions.server,subject:crm.action_email_reminder_lead @@ -593,12 +600,12 @@ msgstr "#Telefonski klici" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "Koda prodajne ekipe mora biti edinstvena !" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "E-Mail stika" #. module: crm #: selection:crm.case.stage,state:0 @@ -647,7 +654,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.action_report_crm_phonecall #: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree msgid "Phone Calls Analysis" -msgstr "" +msgstr "Analiza telefonskih klicev" #. module: crm #: view:crm.lead:0 @@ -668,7 +675,7 @@ msgstr "Valuta" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "" +msgstr "Verjetni prihodek" #. module: crm #: help:crm.lead.report,creation_month:0 @@ -698,7 +705,7 @@ msgstr "" #. module: crm #: view:board.board:0 msgid "Statistics Dashboard" -msgstr "" +msgstr "Statistična nadzorna plošča" #. module: crm #: code:addons/crm/crm_lead.py:860 @@ -732,7 +739,7 @@ msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 msgid "Stop Process" -msgstr "" +msgstr "Ustavi proces" #. module: crm #: field:crm.case.section,alias_id:0 @@ -742,7 +749,7 @@ msgstr "Vzdevek" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "" +msgstr "Iskanje klicev" #. module: crm #: view:crm.lead.report:0 @@ -764,12 +771,12 @@ msgstr "Ekskluzivno" #: code:addons/crm/crm_lead.py:591 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "Od %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Pretvorba v priložnost" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -844,7 +851,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_phone2 msgid "Outbound" -msgstr "" +msgstr "Izhodno" #. module: crm #: view:crm.lead:0 @@ -925,7 +932,7 @@ msgstr "Sestanki" #: field:crm.lead,title_action:0 #: field:crm.phonecall,date_action_next:0 msgid "Next Action" -msgstr "" +msgstr "Naslednje dejanje" #. module: crm #: code:addons/crm/crm_lead.py:762 @@ -985,7 +992,7 @@ msgstr "" #. module: crm #: model:crm.case.section,name:crm.section_sales_department msgid "Sales Department" -msgstr "" +msgstr "Prodajni oddelek" #. module: crm #: field:crm.case.stage,type:0 @@ -1030,7 +1037,7 @@ msgstr "Unesek nakupa" #. module: crm #: view:crm.phonecall.report:0 msgid "Year of call" -msgstr "" +msgstr "Leto klica" #. module: crm #: view:crm.case.stage:0 @@ -1131,7 +1138,7 @@ msgstr "oe_kanban_text_red" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "Načini plačila" #. module: crm #: field:crm.lead.report,opening_date:0 @@ -1142,7 +1149,7 @@ msgstr "Datum odprtja" #. module: crm #: help:crm.phonecall,duration:0 msgid "Duration in Minutes" -msgstr "" +msgstr "Trajanje v minutah" #. module: crm #: field:crm.case.channel,name:0 @@ -1152,7 +1159,7 @@ msgstr "Ime kanala" #. module: crm #: help:crm.lead.report,deadline_day:0 msgid "Expected closing day" -msgstr "" +msgstr "Pričakovan datum zaključka" #. module: crm #: help:crm.case.section,active:0 @@ -1320,7 +1327,7 @@ msgstr "" #. module: crm #: field:crm.lead2opportunity.partner.mass,user_ids:0 msgid "Salesmen" -msgstr "" +msgstr "Prodajalec" #. module: crm #: view:crm.lead:0 @@ -1410,7 +1417,7 @@ msgstr "Uporabniki" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Faza spremenjena" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1477,7 +1484,7 @@ msgstr "" #: help:crm.lead,message_ids:0 #: help:crm.phonecall,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Sporočila in zgodovina sporočil" #. module: crm #: view:crm.lead:0 @@ -1651,7 +1658,7 @@ msgstr "" #: model:ir.model,name:crm.model_crm_case_channel #: model:ir.ui.menu,name:crm.menu_crm_case_channel msgid "Channels" -msgstr "" +msgstr "Kanali" #. module: crm #: view:crm.phonecall:0 @@ -1659,7 +1666,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Held" -msgstr "" +msgstr "Zadržano" #. module: crm #: view:crm.lead:0 @@ -1669,7 +1676,7 @@ msgstr "Dodatne informacije" #. module: crm #: view:crm.lead:0 msgid "Fund Raising" -msgstr "" +msgstr "Zbiranje sredstev" #. module: crm #: view:crm.lead:0 @@ -1770,7 +1777,7 @@ msgstr "Pričakovani prihodki" #. module: crm #: view:crm.lead:0 msgid "Referrer" -msgstr "" +msgstr "Napotitelj" #. module: crm #: help:crm.lead,type:0 @@ -1857,7 +1864,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "Oblikovanje" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 @@ -1869,7 +1876,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Todo" -msgstr "" +msgstr "Opravila" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity @@ -1949,7 +1956,7 @@ msgstr "" #: model:ir.ui.menu,name:crm.menu_crm_case_phone #: model:ir.ui.menu,name:crm.menu_crm_config_phonecall msgid "Phone Calls" -msgstr "" +msgstr "Telefonski klici" #. module: crm #: view:crm.case.stage:0 @@ -1969,7 +1976,7 @@ msgstr "" #: field:crm.phonecall,partner_phone:0 #: field:crm.phonecall2phonecall,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: crm #: field:crm.case.channel,active:0 @@ -2004,7 +2011,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "Programska oprema" #. module: crm #: field:crm.case.section,change_responsible:0 @@ -2021,7 +2028,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Misc" -msgstr "" +msgstr "Razno" #. module: crm #: view:crm.lead.report:0 @@ -2032,12 +2039,12 @@ msgstr "Odpri" #. module: crm #: field:crm.lead,city:0 msgid "City" -msgstr "" +msgstr "Kraj" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "Oboje" #. module: crm #: view:crm.phonecall:0 @@ -2058,7 +2065,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "" +msgstr "Izdelek" #. module: crm #: field:crm.lead.report,creation_year:0 @@ -2080,7 +2087,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Address" -msgstr "" +msgstr "Naslov" #. module: crm #: help:crm.case.section,alias_id:0 @@ -2162,7 +2169,7 @@ msgstr "" #: field:crm.phonecall,duration:0 #: field:crm.phonecall.report,duration:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 @@ -2191,7 +2198,7 @@ msgstr "" #: field:crm.lead.report,nbr:0 #: field:crm.phonecall.report,nbr:0 msgid "# of Cases" -msgstr "" +msgstr "# primerov" #. module: crm #: help:crm.phonecall,section_id:0 @@ -2211,7 +2218,7 @@ msgstr "Potencialne priložnosti/Priložnosti" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "" +msgstr "Faks" #. module: crm #: field:crm.lead,company_id:0 @@ -2221,7 +2228,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Podjetje" #. module: crm #: selection:crm.segmentation,state:0 @@ -2246,7 +2253,7 @@ msgstr "" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "" +msgstr "Ime predmeta" #. module: crm #: view:crm.phonecall:0 @@ -2256,19 +2263,19 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Reset" -msgstr "" +msgstr "Ponastavi" #. module: crm #: view:sale.config.settings:0 msgid "After-Sale Services" -msgstr "" +msgstr "Storitve po prodaji" #. module: crm #: field:crm.case.section,message_ids:0 #: field:crm.lead,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Sporočila" #. module: crm #: help:crm.lead,channel_id:0 @@ -2288,12 +2295,12 @@ msgstr "" #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Preklicano" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "Barvvni index" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2338,7 +2345,7 @@ msgstr "" #. module: crm #: selection:crm.phonecall,state:0 msgid "Confirmed" -msgstr "" +msgstr "Potrjeno" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding @@ -2353,12 +2360,12 @@ msgstr "" #. module: crm #: view:crm.phonecall:0 msgid "Confirm" -msgstr "" +msgstr "Potrditev" #. module: crm #: view:crm.lead:0 msgid "Unread messages" -msgstr "" +msgstr "Neprebrana sporočila" #. module: crm #: field:crm.phonecall.report,section_id:0 @@ -2375,7 +2382,7 @@ msgstr "" #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Sledilci" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2473,7 +2480,7 @@ msgstr "" #. module: crm #: view:res.partner:0 msgid "Calls" -msgstr "" +msgstr "Klici" #. module: crm #: field:crm.case.stage,on_change:0 @@ -2488,7 +2495,7 @@ msgstr "" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "" +msgstr "Usposobljenost" #. module: crm #: field:crm.lead2opportunity.partner,name:0 @@ -2516,7 +2523,7 @@ msgstr "" #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_lost @@ -2534,7 +2541,7 @@ msgstr "" #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: crm #: view:crm.phonecall:0 @@ -2570,13 +2577,13 @@ msgstr "" #. module: crm #: model:ir.actions.client,name:crm.action_client_crm_menu msgid "Open Sale Menu" -msgstr "" +msgstr "Odpri meni prodaje" #. module: crm #: field:crm.lead,date_open:0 #: field:crm.phonecall,date_open:0 msgid "Opened" -msgstr "" +msgstr "Odprto" #. module: crm #: view:crm.case.section:0 @@ -2631,7 +2638,7 @@ msgstr "" #: model:ir.model,name:crm.model_crm_meeting #: model:process.node,name:crm.process_node_meeting0 msgid "Meeting" -msgstr "" +msgstr "Sestanek" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ @@ -2654,7 +2661,7 @@ msgstr "Navadno" #. module: crm #: field:crm.lead,street2:0 msgid "Street2" -msgstr "" +msgstr "Ulica 2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 @@ -2670,14 +2677,14 @@ msgstr "" #: field:crm.lead.report,user_id:0 #: field:crm.phonecall.report,user_id:0 msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: crm #: view:crm.lead.report:0 @@ -2690,12 +2697,12 @@ msgstr "" #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 msgid "Contract" -msgstr "" +msgstr "Pogodba" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 @@ -2767,7 +2774,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "na" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -2776,12 +2783,12 @@ msgstr "" #: selection:crm.lead,state:0 #: view:crm.lead.report:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: crm #: field:crm.lead,function:0 msgid "Function" -msgstr "" +msgstr "Funkcija" #. module: crm #: field:crm.case.section,note:0 @@ -2808,14 +2815,14 @@ msgstr "Opis" #: field:crm.phonecall2phonecall,section_id:0 #: field:res.partner,section_id:0 msgid "Sales Team" -msgstr "" +msgstr "Prodajna ekipa" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_channel_action @@ -2837,7 +2844,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "" +msgstr "Interni zaznamki" #. module: crm #: view:crm.lead:0 @@ -2852,7 +2859,7 @@ msgstr "" #. module: crm #: field:crm.lead,street:0 msgid "Street" -msgstr "" +msgstr "Ulica" #. module: crm #: field:crm.lead,referred:0 @@ -2867,7 +2874,7 @@ msgstr "" #. module: crm #: field:crm.case.section,working_hours:0 msgid "Working Hours" -msgstr "" +msgstr "Delovne ure" #. module: crm #: view:crm.lead:0 @@ -2875,14 +2882,14 @@ msgstr "" #: field:crm.lead2opportunity.partner.mass,partner_id:0 #: field:crm.partner.binding,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Kupec" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: crm #: view:crm.phonecall:0 @@ -2905,7 +2912,7 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "" +msgstr "Država" #. module: crm #: view:crm.lead:0 @@ -2913,7 +2920,7 @@ msgstr "" #: view:crm.lead2opportunity.partner.mass:0 #: view:crm.phonecall:0 msgid "Convert to Opportunity" -msgstr "" +msgstr "Spremeni v priložnost" #. module: crm #: help:crm.phonecall,email_from:0 @@ -2925,7 +2932,7 @@ msgstr "" #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: crm #: field:crm.case.resource.type,name:0 @@ -2935,7 +2942,7 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "" +msgstr "Profiliranje" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report @@ -2945,7 +2952,7 @@ msgstr "" #. module: crm #: model:crm.case.stage,name:crm.stage_lead5 msgid "Negotiation" -msgstr "" +msgstr "Pogajanja" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2phonecall @@ -2978,7 +2985,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,name:0 msgid "Year" -msgstr "" +msgstr "Leto" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead8 diff --git a/addons/crm_helpdesk/i18n/hr.po b/addons/crm_helpdesk/i18n/hr.po index cce8dfb01d8..49ea6f0ed78 100644 --- a/addons/crm_helpdesk/i18n/hr.po +++ b/addons/crm_helpdesk/i18n/hr.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 19:25+0000\n" +"Last-Translator: Davor Bojkić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:40+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -63,7 +63,7 @@ msgstr "Emailovi posmatrača" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid "Salesperson" -msgstr "" +msgstr "Prodavač" #. module: crm_helpdesk #: selection:crm.helpdesk,priority:0 diff --git a/addons/crm_todo/i18n/sl.po b/addons/crm_todo/i18n/sl.po new file mode 100644 index 00000000000..9af48dc329e --- /dev/null +++ b/addons/crm_todo/i18n/sl.po @@ -0,0 +1,85 @@ +# Slovenian 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-01-26 12:15+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_project_task +msgid "Task" +msgstr "Naloga" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Timebox" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Lead" +msgstr "Potencialna priložnost" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For cancelling the task" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Next" +msgstr "Naprej" + +#. module: crm_todo +#: model:ir.actions.act_window,name:crm_todo.crm_todo_action +#: model:ir.ui.menu,name:crm_todo.menu_crm_todo +msgid "My Tasks" +msgstr "Moje naloge" + +#. module: crm_todo +#: view:crm.lead:0 +#: field:crm.lead,task_ids:0 +msgid "Tasks" +msgstr "Naloge" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Done" +msgstr "Končano" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potencialna priložnost/Priložnost" + +#. module: crm_todo +#: field:project.task,lead_id:0 +msgid "Lead / Opportunity" +msgstr "Potencialna priložnost/Priložnost" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For changing to done state" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Previous" +msgstr "Predhodni" diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index edfc9dde258..aa387bbbeae 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -8,25 +8,25 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 11:45+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:41+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: document #: field:document.directory,parent_id:0 msgid "Parent Directory" -msgstr "" +msgstr "Matična mapa" #. module: document #: code:addons/document/document.py:336 #, python-format msgid "Directory name contains special characters!" -msgstr "" +msgstr "Ime mape vsebuje posebne znake!" #. module: document #: view:document.directory:0 @@ -43,17 +43,17 @@ msgstr "" #. module: document #: view:document.directory:0 msgid "Group By..." -msgstr "" +msgstr "Združeno po..." #. module: document #: view:ir.attachment:0 msgid "Modification" -msgstr "" +msgstr "Sprememba" #. module: document #: view:document.directory:0 msgid "Resources" -msgstr "" +msgstr "Viri" #. module: document #: field:document.directory,file_ids:0 @@ -64,23 +64,23 @@ msgstr "Datoteke" #. module: document #: field:document.directory.content.type,mimetype:0 msgid "Mime Type" -msgstr "" +msgstr "Vrsta datoteke" #. module: document #: selection:report.document.user,month:0 msgid "March" -msgstr "" +msgstr "Marec" #. module: document #: field:document.directory.dctx,expr:0 msgid "Expression" -msgstr "" +msgstr "Izraz" #. module: document #: view:document.directory:0 #: field:document.directory,company_id:0 msgid "Company" -msgstr "" +msgstr "Podjetje" #. module: document #: model:ir.model,name:document.model_document_directory_content @@ -90,7 +90,7 @@ msgstr "Vsebina imenika" #. module: document #: view:ir.attachment:0 msgid "My Document(s)" -msgstr "" +msgstr "Moji dokumenti" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration @@ -104,6 +104,9 @@ msgid "" "You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " "to the current record, in dynamic folders" msgstr "" +"A python expression used to evaluate the field.\n" +"You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " +"to the current record, in dynamic folders" #. module: document #: help:document.directory.dctx,field:0 @@ -115,12 +118,12 @@ msgstr "" #: code:addons/document/document.py:331 #, python-format msgid "Directory name must be unique!" -msgstr "" +msgstr "Ime mape mora biti enoznačno!" #. module: document #: view:ir.attachment:0 msgid "Filter on my documents" -msgstr "" +msgstr "Filter na mojih dokumentih" #. module: document #: view:ir.attachment:0 @@ -203,19 +206,19 @@ msgstr "" #: code:addons/document/document.py:336 #, python-format msgid "ValidateError" -msgstr "" +msgstr "Napaka preverjanja" #. module: document #: model:ir.model,name:document.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: document #: model:ir.actions.act_window,name:document.action_document_file_form #: model:ir.ui.menu,name:document.menu_document_doc #: model:ir.ui.menu,name:document.menu_document_files msgid "Documents" -msgstr "" +msgstr "Dokumenti" #. module: document #: field:document.directory,ressource_type_id:0 @@ -250,7 +253,7 @@ msgstr "" #: code:addons/document/document.py:296 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: document #: help:document.directory,ressource_type_id:0 @@ -294,7 +297,7 @@ msgstr "Poročilo" #. module: document #: selection:report.document.user,month:0 msgid "July" -msgstr "" +msgstr "Julij" #. module: document #: field:document.directory.content.type,code:0 @@ -387,7 +390,7 @@ msgstr "Velikost datoteke po mesecu" #. module: document #: selection:report.document.user,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: document #: selection:document.directory,type:0 @@ -408,12 +411,12 @@ msgstr "" #. module: document #: view:document.directory:0 msgid "Static" -msgstr "" +msgstr "Statično" #. module: document #: field:report.document.user,user:0 msgid "unknown" -msgstr "" +msgstr "neznano" #. module: document #: view:document.directory:0 @@ -488,7 +491,7 @@ msgstr "" #. module: document #: selection:report.document.user,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: document #: view:document.directory:0 @@ -503,7 +506,7 @@ msgstr "" #. module: document #: selection:report.document.user,month:0 msgid "June" -msgstr "" +msgstr "Junij" #. module: document #: field:document.directory,group_ids:0 @@ -513,12 +516,12 @@ msgstr "Skupine" #. module: document #: field:document.directory.content.type,active:0 msgid "Active" -msgstr "" +msgstr "Aktivno" #. module: document #: selection:report.document.user,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: document #: help:document.directory,ressource_parent_type_id:0 @@ -537,7 +540,7 @@ msgstr "Definicija" #. module: document #: selection:report.document.user,month:0 msgid "October" -msgstr "" +msgstr "Oktober" #. module: document #: view:document.directory:0 @@ -552,7 +555,7 @@ msgstr "Vse uporabniške datoteke" #. module: document #: selection:report.document.user,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: document #: view:document.directory:0 @@ -567,7 +570,7 @@ msgstr "" #. module: document #: view:ir.attachment:0 msgid "Attachments" -msgstr "" +msgstr "Priponke" #. module: document #: field:document.directory,create_uid:0 @@ -592,12 +595,12 @@ msgstr "Datoteke po mesecih" #. module: document #: selection:report.document.user,month:0 msgid "September" -msgstr "" +msgstr "September" #. module: document #: field:document.directory.content,prefix:0 msgid "Prefix" -msgstr "" +msgstr "Predpona" #. module: document #: field:document.directory,child_ids:0 @@ -612,7 +615,7 @@ msgstr "Oznaka vira" #. module: document #: field:document.directory.dctx,field:0 msgid "Field" -msgstr "" +msgstr "Polje" #. module: document #: model:ir.model,name:document.model_document_directory_dctx @@ -634,7 +637,7 @@ msgstr "" #. module: document #: selection:report.document.user,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: document #: view:document.directory:0 @@ -644,7 +647,7 @@ msgstr "" #. module: document #: model:ir.model,name:document.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: document #: view:report.document.user:0 @@ -669,7 +672,7 @@ msgstr "" #. module: document #: selection:report.document.user,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: document #: field:document.directory,name:0 @@ -679,12 +682,12 @@ msgstr "Ime" #. module: document #: view:document.directory:0 msgid "Fields" -msgstr "" +msgstr "Polja" #. module: document #: selection:report.document.user,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: document #: field:report.document.file,nbr:0 @@ -709,7 +712,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:17 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #. module: document #: field:document.directory.content,sequence:0 @@ -734,7 +737,7 @@ msgstr "Drevesna struktura" #. module: document #: view:document.configuration:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: document #: model:ir.actions.act_window,name:document.action_document_directory_tree diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index c5d40ea7cf2..f8ed5ebcc0e 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:19+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: event #: view:event.event:0 @@ -26,12 +26,12 @@ msgstr "Evenimentele mele" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Participants" -msgstr "" +msgstr "Numar de Participanti" #. module: event #: field:event.event,register_attended:0 msgid "# of Participations" -msgstr "" +msgstr "# de Participari" #. module: event #: field:event.event,main_speaker_id:0 @@ -57,6 +57,9 @@ msgid "" "enough registrations you are not able to confirm your event. (put 0 to " "ignore this rule )" msgstr "" +"Puteti defini un nivel minim de inregistrare pentru fiecare nivel. Daca nu " +"aveti destul inregistrari, nu veti putea sa confirmati evenimentul. " +"(introduceti 0 pentur a ignora aceasta regula )" #. module: event #: field:event.registration,date_open:0 @@ -66,7 +69,7 @@ msgstr "Data inregistrarii" #. module: event #: field:event.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Tipul Evenimentului" #. module: event #: model:event.event,name:event.event_0 @@ -78,7 +81,7 @@ msgstr "Concertul lui Bon Jovi" #: selection:event.registration,state:0 #: selection:report.event.registration,registration_state:0 msgid "Attended" -msgstr "" +msgstr "Participare" #. module: event #: selection:report.event.registration,month:0 @@ -88,7 +91,7 @@ msgstr "Martie" #. module: event #: view:event.registration:0 msgid "Send Email" -msgstr "" +msgstr "Trimite Email" #. module: event #: field:event.event,company_id:0 @@ -102,22 +105,22 @@ msgstr "Companie" #: field:event.event,email_confirmation_id:0 #: field:event.type,default_email_event:0 msgid "Event Confirmation Email" -msgstr "" +msgstr "Email de Confirmare a Evenimentului" #. module: event #: field:event.type,default_registration_max:0 msgid "Default Maximum Registration" -msgstr "" +msgstr "Inregistrarea Maxima Implicita" #. module: event #: view:report.event.registration:0 msgid "Display" -msgstr "" +msgstr "Afisare" #. module: event #: field:event.event,register_avail:0 msgid "Available Registrations" -msgstr "" +msgstr "Inregistrari Disponibile" #. module: event #: view:event.registration:0 @@ -128,12 +131,12 @@ msgstr "Inregistrare eveniment" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "" +msgstr "Va ajuta sa va gestionati Evenimentele." #. module: event #: view:report.event.registration:0 msgid "Day" -msgstr "" +msgstr "Zi" #. module: event #: view:report.event.registration:0 @@ -162,12 +165,14 @@ msgstr "Analiza evenimentelor" #: help:event.type,default_registration_max:0 msgid "It will select this default maximum value when you choose this event" msgstr "" +"Va selecta aceasta valoare maxima implicita atunci cand alegeti acest " +"eveniment" #. module: event #: view:report.event.registration:0 #: field:report.event.registration,user_id_registration:0 msgid "Register" -msgstr "" +msgstr "Inregistrati" #. module: event #: field:event.event,message_ids:0 @@ -191,7 +196,7 @@ msgstr "Inregistrari" #: code:addons/event/event.py:355 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: event #: view:event.event:0 @@ -215,7 +220,7 @@ msgstr "Anulat(a)" #. module: event #: view:event.event:0 msgid "ticket" -msgstr "" +msgstr "bilet" #. module: event #: model:event.event,name:event.event_1 @@ -226,28 +231,28 @@ msgstr "Opera lui Verdi" #: help:event.event,message_unread:0 #: help:event.registration,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: event #: view:report.event.registration:0 #: field:report.event.registration,registration_state:0 msgid "Registration State" -msgstr "" +msgstr "Starea Inregistrarii" #. module: event #: view:event.event:0 msgid "tickets" -msgstr "" +msgstr "bilete" #. module: event #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Fals" #. module: event #: field:event.registration,event_end_date:0 msgid "Event End Date" -msgstr "" +msgstr "Data de Sfarsit a Evenimentului" #. module: event #: help:event.event,message_summary:0 @@ -256,6 +261,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: event #: view:report.event.registration:0 @@ -267,7 +274,7 @@ msgstr "Inregistrari in starea confirmat sau efectuat" #: code:addons/event/event.py:108 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertizare!" #. module: event #: view:event.event:0 @@ -286,6 +293,8 @@ msgstr "Partener" #: help:event.type,default_registration_min:0 msgid "It will select this default minimum value when you choose this event" msgstr "" +"Va selecta aceasta valoare minimia implicita atunci cand alegeti acest " +"eveniment" #. module: event #: model:ir.model,name:event.model_event_type @@ -315,7 +324,7 @@ msgstr "Confirmat(a)" #. module: event #: view:event.registration:0 msgid "Participant" -msgstr "" +msgstr "Participant" #. module: event #: view:event.registration:0 @@ -326,12 +335,12 @@ msgstr "Confirma" #. module: event #: view:event.event:0 msgid "Organized by" -msgstr "" +msgstr "Organizat de" #. module: event #: view:event.event:0 msgid "Register with this event" -msgstr "" +msgstr "Inregistrati cu acest eveniment" #. module: event #: help:event.type,default_email_registration:0 @@ -339,17 +348,19 @@ msgid "" "It will select this default confirmation registration mail value when you " "choose this event" msgstr "" +"Va selecta aceasta valoare a confirmarii inregistrarii prin email atunci " +"cand alegeti acest eveniment" #. module: event #: view:event.event:0 msgid "Only" -msgstr "" +msgstr "Doar" #. module: event #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: event #: view:event.event:0 @@ -362,7 +373,7 @@ msgstr "Locatie" #: view:event.registration:0 #: field:event.registration,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: event #: view:event.registration:0 @@ -384,12 +395,12 @@ msgstr "E-mail" #: code:addons/event/event.py:329 #, python-format msgid "New registration confirmed: %s." -msgstr "" +msgstr "Inregistrarea noua confirmata: %s." #. module: event #: view:event.event:0 msgid "Upcoming" -msgstr "" +msgstr "Viitoare" #. module: event #: field:event.registration,create_date:0 @@ -400,7 +411,7 @@ msgstr "Data crearii" #: view:report.event.registration:0 #: field:report.event.registration,user_id:0 msgid "Event Responsible" -msgstr "" +msgstr "Responsabil cu Evenimentul" #. module: event #: view:event.event:0 @@ -417,7 +428,7 @@ msgstr "Iulie" #. module: event #: field:event.event,reply_to:0 msgid "Reply-To Email" -msgstr "" +msgstr "Raspunde la Email" #. module: event #: view:event.registration:0 @@ -427,7 +438,7 @@ msgstr "Inregistrari confirmate" #. module: event #: view:event.event:0 msgid "Starting Date" -msgstr "" +msgstr "Data de inceput" #. module: event #: view:event.event:0 @@ -463,7 +474,7 @@ msgstr "Statusul de Completare a evenimentelor" #. module: event #: view:event.event:0 msgid "Event Category" -msgstr "" +msgstr "Categoria Evenimentului" #. module: event #: field:event.event,register_prospect:0 @@ -473,13 +484,13 @@ msgstr "Inregistrari neconfirmate" #. module: event #: model:ir.actions.client,name:event.action_client_event_menu msgid "Open Event Menu" -msgstr "" +msgstr "Deschide Meniul Evenimentului" #. module: event #: view:report.event.registration:0 #: field:report.event.registration,event_state:0 msgid "Event State" -msgstr "" +msgstr "Starea Evenimentului" #. module: event #: field:event.registration,log_ids:0 @@ -504,7 +515,7 @@ msgstr "Decembrie" #. module: event #: help:event.registration,origin:0 msgid "Reference of the sales order which created the registration" -msgstr "" +msgstr "Referinta comenzii de vanzare care a creat inregistrarea" #. module: event #: field:report.event.registration,draft_state:0 @@ -515,7 +526,7 @@ msgstr " # Nr Inregistrarilor ciorna" #: field:event.event,email_registration_id:0 #: field:event.type,default_email_registration:0 msgid "Registration Confirmation Email" -msgstr "" +msgstr "Email de Confirmare a Inregistrarii" #. module: event #: view:report.event.registration:0 @@ -526,12 +537,12 @@ msgstr "Luna" #. module: event #: field:event.registration,date_closed:0 msgid "Attended Date" -msgstr "" +msgstr "Data Participarii" #. module: event #: view:event.event:0 msgid "Finish Event" -msgstr "" +msgstr "Termina Eveniment" #. module: event #: view:event.registration:0 @@ -541,7 +552,7 @@ msgstr "Inregistrari in stare neconfirmata" #. module: event #: view:event.event:0 msgid "Event Description" -msgstr "" +msgstr "Descrierea Evenimentului" #. module: event #: field:event.event,date_begin:0 @@ -551,18 +562,18 @@ msgstr "Data de incepere" #. module: event #: view:event.confirm:0 msgid "or" -msgstr "" +msgstr "sau" #. module: event #: help:res.partner,speaker:0 msgid "Check this box if this contact is a speaker." -msgstr "" +msgstr "Selectati aceasta casuta daca acest contact este un vorbitor." #. module: event #: code:addons/event/event.py:108 #, python-format msgid "No Tickets Available!" -msgstr "" +msgstr "Nu mai sunt Bilete Disponibile!" #. module: event #: help:event.event,state:0 @@ -572,6 +583,10 @@ msgid "" "status is set to 'Done'.If event is cancelled the status is set to " "'Cancelled'." msgstr "" +"Daca evenimentul este creat, starea este 'Ciorna'.Daca evenimentul este " +"confirmat pentru datele respective, starea este 'Confirmat'. Daca " +"evenimentul este incheiat, starea este setata pe 'Efectuat'.Daca evenimentul " +"este anulat, starea este setata pe 'Anulat'." #. module: event #: model:ir.actions.act_window,help:event.action_event_view @@ -587,6 +602,16 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a adauga un eveniment nou.\n" +"

\n" +" OpenERP va ajuta sa planificati si sa va organizati " +"evenimentele eficient:\n" +" urmariti abonarile si participarile, automatizati email-urile " +"de confirmare,\n" +" vindeti bilete, etc.\n" +"

\n" +" " #. module: event #: help:event.event,register_max:0 @@ -595,6 +620,9 @@ msgid "" "much registrations you are not able to confirm your event. (put 0 to ignore " "this rule )" msgstr "" +"Pentru fiecare eveniment puteti defini un nivel maxim de inregistrari. Daca " +"aveti prea multe inregistrari, nu veti putea confirma evenimentul. " +"(introduceti 0 pentru a ignora aceasta regula )" #. module: event #: field:event.event,user_id:0 @@ -609,6 +637,9 @@ msgid "" "expected minimum/maximum. Please reconsider those limits before going " "further." msgstr "" +"Totalul inregistrarilor confirmate pentru evenimentul '%s' nu intruneste " +"minimul/maximul asteptat. Va rugam sa reconsiderati acele limite inainte de " +"a merge mai departe." #. module: event #: help:event.event,email_confirmation_id:0 @@ -616,11 +647,13 @@ msgid "" "If you set an email template, each participant will receive this email " "announcing the confirmation of the event." msgstr "" +"Daca setati un sablon de email, fiecare participant va primi acest email " +"care anunta confirmarea evenimentului." #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "Completarea Evenimentelor dupa Stare" #. module: event #: selection:report.event.registration,event_state:0 @@ -657,12 +690,12 @@ msgstr "Evenimente" #: view:event.registration:0 #: field:event.registration,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: event #: field:event.event,city:0 msgid "city" -msgstr "" +msgstr "oras" #. module: event #: selection:report.event.registration,month:0 @@ -672,7 +705,7 @@ msgstr "August" #. module: event #: field:event.event,zip:0 msgid "zip" -msgstr "" +msgstr "cod postal" #. module: event #: field:res.partner,event_ids:0 @@ -683,7 +716,7 @@ msgstr "necunoscut(a)" #. module: event #: field:event.event,street2:0 msgid "Street2" -msgstr "" +msgstr "Strada2" #. module: event #: selection:report.event.registration,month:0 @@ -697,17 +730,21 @@ msgid "" "emails sent automatically at event or registrations confirmation. You can " "also put your email address of your mail gateway if you use one." msgstr "" +"Adresa de email a organizatorului care este introdusa la 'Raspunde' in toate " +"email-urile trimise automat la confirmarea evenimentului sau a " +"inregistrarilor. De asemenea, puteti sa introduceti adresa dumneavoastra de " +"email din mail gateway daca folositi una." #. module: event #: help:event.event,message_ids:0 #: help:event.registration,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: event #: field:event.registration,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: event #: model:email.template,body_html:event.confirmation_event @@ -722,18 +759,27 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Buna ziua ${obiect.nume},

\n" +"

Evenimentul ${obiect.eveniment_id.nume} la care v-ati inregistrat " +"este confirmat si va fi tinut de la ${obiect.eveniment_id.data_de_inceput} " +"la ${obiect.eveniment_id.data_de_sfarsit}.\n" +" Pentru informatii suplimentare, va rugam sa contactati departamentul " +"nostru de evenimente.

\n" +"

Va multumim pentru participare!

\n" +"

Cu stima

" #. module: event #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: event #: field:event.registration,user_id:0 #: model:res.groups,name:event.group_event_user msgid "User" -msgstr "" +msgstr "Utilizator" #. module: event #: view:event.confirm:0 @@ -747,7 +793,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "(confirmed:" -msgstr "" +msgstr "(confirmat:" #. module: event #: view:event.registration:0 @@ -793,6 +839,8 @@ msgid "" "You have already set a registration for this event as 'Attended'. Please " "reset it to draft if you want to cancel this event." msgstr "" +"Ati setat deja o inregistrare pentru acest eveniment ca 'Participare'. Va " +"rugam sa il resetati pe ciorna daca doriti sa anulati acest eveniment." #. module: event #: view:res.partner:0 @@ -802,12 +850,12 @@ msgstr "Data" #. module: event #: view:event.event:0 msgid "Email Configuration" -msgstr "" +msgstr "Configurare E-Mail" #. module: event #: field:event.type,default_registration_min:0 msgid "Default Minimum Registration" -msgstr "" +msgstr "Inregistrare Minima Implicita" #. module: event #: field:event.event,address_id:0 @@ -826,12 +874,14 @@ msgid "" "This field contains the template of the mail that will be automatically sent " "each time a registration for this event is confirmed." msgstr "" +"Acest camp contine sablonul email-ului care va fi trimis automat de fiecare " +"data cand este confirmata o inregistrare a acestui eveniment." #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "Attended the Event" -msgstr "" +msgstr "Participare la Eveniment" #. module: event #: constraint:event.event:0 @@ -844,6 +894,8 @@ msgstr "" #, python-format msgid "You must wait for the starting day of the event to do this action." msgstr "" +"Trebuie sa asteptati ziua de inceput a evenimentului pentru a efectua " +"aceasta actiune." #. module: event #: selection:event.event,state:0 @@ -854,7 +906,7 @@ msgstr "Efectuat" #. module: event #: view:report.event.registration:0 msgid "Show Confirmed Registrations" -msgstr "" +msgstr "Afiseaza Inregistrarile Confirmate" #. module: event #: view:event.confirm:0 @@ -864,35 +916,35 @@ msgstr "Anuleaza" #. module: event #: field:event.registration,reply_to:0 msgid "Reply-to Email" -msgstr "" +msgstr "Email de Raspuns" #. module: event #: code:addons/event/event.py:106 #, python-format msgid "Only %d Seats are Available!" -msgstr "" +msgstr "Doar %d Locuri sunt Disponibile!" #. module: event #: model:email.template,subject:event.confirmation_event #: model:email.template,subject:event.confirmation_registration msgid "Your registration at ${object.event_id.name}" -msgstr "" +msgstr "Inregistrarea dumneavoastra la ${obiect.eveniment_id.nume}" #. module: event #: view:event.registration:0 msgid "Set To Unconfirmed" -msgstr "" +msgstr "Setati pe Neconfirmat" #. module: event #: view:event.event:0 #: field:event.event,is_subscribed:0 msgid "Subscribed" -msgstr "" +msgstr "Abonat" #. module: event #: view:event.event:0 msgid "Unsubscribe" -msgstr "" +msgstr "Dezabonare" #. module: event #: view:event.event:0 @@ -903,7 +955,7 @@ msgstr "Responsabil" #. module: event #: view:report.event.registration:0 msgid "Registration contact" -msgstr "" +msgstr "Contact inregistrare" #. module: event #: view:report.event.registration:0 @@ -915,18 +967,18 @@ msgstr "Vorbitor" #. module: event #: view:event.event:0 msgid "Upcoming events from today" -msgstr "" +msgstr "Evenimentele de azi" #. module: event #: model:event.event,name:event.event_2 msgid "Conference on ERP Business" -msgstr "" +msgstr "Conferinta pe tema Afaceri ERP" #. module: event #: model:ir.actions.act_window,name:event.act_event_view_registration #: model:mail.message.subtype,name:event.mt_event_registration msgid "New Registration" -msgstr "" +msgstr "Inregistrare Noua" #. module: event #: field:event.event,note:0 @@ -941,7 +993,7 @@ msgstr " # Nr Inregistrarilor confirmate" #. module: event #: field:report.event.registration,name_registration:0 msgid "Participant / Contact Name" -msgstr "" +msgstr "Participant / Nume Contact" #. module: event #: selection:report.event.registration,month:0 @@ -956,7 +1008,7 @@ msgstr "Inregistrare evenimente" #. module: event #: view:event.event:0 msgid "No ticket available." -msgstr "" +msgstr "Nu mai sunt bilete disponibile." #. module: event #: field:event.event,register_max:0 @@ -1006,7 +1058,7 @@ msgstr "Inchide Inregistrarea" #. module: event #: field:event.registration,origin:0 msgid "Source Document" -msgstr "" +msgstr "Document Sursa" #. module: event #: selection:report.event.registration,month:0 @@ -1019,6 +1071,8 @@ msgid "" "It will select this default confirmation event mail value when you choose " "this event" msgstr "" +"Va selecta aceasta valoare a confirmarii implicite a evenimentului prin " +"email atunci cand alegeti acest eveniment" #. module: event #: view:report.event.registration:0 @@ -1048,12 +1102,12 @@ msgstr "ID" #. module: event #: field:event.type,default_reply_to:0 msgid "Default Reply-To" -msgstr "" +msgstr "Raspunde implicit" #. module: event #: view:event.event:0 msgid "available." -msgstr "" +msgstr "disponibil." #. module: event #: field:event.registration,event_begin_date:0 @@ -1064,12 +1118,12 @@ msgstr "Data de incepere a evenimentului" #. module: event #: view:report.event.registration:0 msgid "Participant / Contact" -msgstr "" +msgstr "Participant / Contact" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "" +msgstr "Inregistrari curente" #. module: event #: model:email.template,body_html:event.confirmation_registration @@ -1084,6 +1138,15 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Buna ziua ${obiect.nume},

\n" +"

Confirmam faptul ca am inregistrat inregistrarea dumenavoastra la " +"eveniment. ${obiect.eveniment_id.nume}.\n" +" Veti primi automat un email care va ofera mai multe informatii " +"practice (precum programul, ordinea de zi...) de indata ce evenimentul este " +"confirmat.

\n" +"

Va multumim pentru participare!

\n" +"

Cu stima

" #. module: event #: help:event.event,reply_to:0 @@ -1093,6 +1156,10 @@ msgid "" "registrations confirmation. You can also put the email address of your mail " "gateway if you use one." msgstr "" +"Adresa de email a organizatorului este probabil sa fie introdusa aici, " +"pentru a fi introdusa in rubrica 'Raspunde' a email-urilor trimise automat " +"la confirmarea evenimentului sau a inregistrarii. De asemenea, puteti " +"introduce adresa de email din email gateway daca folositi una." #. module: event #: view:event.event:0 @@ -1103,12 +1170,12 @@ msgstr "Abonare" #. module: event #: model:res.groups,name:event.group_event_manager msgid "Manager" -msgstr "" +msgstr "Director" #. module: event #: field:event.event,street:0 msgid "Street" -msgstr "" +msgstr "Strada" #. module: event #: view:event.confirm:0 diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index bed3936c40c..a29b4c3c6c2 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/i18n/sl.po @@ -8,20 +8,20 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 22:11+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: event #: view:event.event:0 #: view:report.event.registration:0 msgid "My Events" -msgstr "" +msgstr "Moji Dogotki" #. module: event #: field:event.registration,nb_register:0 @@ -43,7 +43,7 @@ msgstr "" #: view:event.registration:0 #: view:report.event.registration:0 msgid "Group By..." -msgstr "" +msgstr "Združeno po..." #. module: event #: field:event.event,register_min:0 @@ -66,7 +66,7 @@ msgstr "" #. module: event #: field:event.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Vrsta dogodka" #. module: event #: model:event.event,name:event.event_0 @@ -83,7 +83,7 @@ msgstr "" #. module: event #: selection:report.event.registration,month:0 msgid "March" -msgstr "" +msgstr "Marec" #. module: event #: view:event.registration:0 @@ -96,7 +96,7 @@ msgstr "" #: view:report.event.registration:0 #: field:report.event.registration,company_id:0 msgid "Company" -msgstr "" +msgstr "Podjetje" #. module: event #: field:event.event,email_confirmation_id:0 @@ -112,7 +112,7 @@ msgstr "" #. module: event #: view:report.event.registration:0 msgid "Display" -msgstr "" +msgstr "Prikaži" #. module: event #: field:event.event,register_avail:0 @@ -133,7 +133,7 @@ msgstr "" #. module: event #: view:report.event.registration:0 msgid "Day" -msgstr "" +msgstr "Dan" #. module: event #: view:report.event.registration:0 @@ -173,7 +173,7 @@ msgstr "" #: field:event.event,message_ids:0 #: field:event.registration,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Sporočila" #. module: event #: view:event.event:0 @@ -202,7 +202,7 @@ msgstr "Potrdi dogodek" #: view:board.board:0 #: model:ir.actions.act_window,name:event.act_event_view msgid "Next Events" -msgstr "" +msgstr "Prihodnji dogodki" #. module: event #: selection:event.event,state:0 @@ -210,7 +210,7 @@ msgstr "" #: selection:report.event.registration,event_state:0 #: selection:report.event.registration,registration_state:0 msgid "Cancelled" -msgstr "" +msgstr "Preklicano" #. module: event #: view:event.event:0 @@ -226,7 +226,7 @@ msgstr "Verdijeva opera" #: help:event.event,message_unread:0 #: help:event.registration,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: event #: view:report.event.registration:0 @@ -242,7 +242,7 @@ msgstr "" #. module: event #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Napačno" #. module: event #: field:event.registration,event_end_date:0 @@ -255,7 +255,7 @@ msgstr "" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "Povzetek (število sporočil,..)" #. module: event #: view:report.event.registration:0 @@ -267,7 +267,7 @@ msgstr "" #: code:addons/event/event.py:108 #, python-format msgid "Warning!" -msgstr "" +msgstr "Opozorilo!" #. module: event #: view:event.event:0 @@ -280,7 +280,7 @@ msgstr "Registracija" #: field:event.registration,partner_id:0 #: model:ir.model,name:event.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: event #: help:event.type,default_registration_min:0 @@ -315,13 +315,13 @@ msgstr "Potrjeno" #. module: event #: view:event.registration:0 msgid "Participant" -msgstr "" +msgstr "Udeleženec" #. module: event #: view:event.registration:0 #: view:report.event.registration:0 msgid "Confirm" -msgstr "" +msgstr "Potrditev" #. module: event #: view:event.event:0 @@ -343,18 +343,18 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Only" -msgstr "" +msgstr "Samo" #. module: event #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Sledilci" #. module: event #: view:event.event:0 msgid "Location" -msgstr "" +msgstr "Lokacija" #. module: event #: view:event.event:0 @@ -362,13 +362,13 @@ msgstr "" #: view:event.registration:0 #: field:event.registration,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neprebrana sporočila" #. module: event #: view:event.registration:0 #: view:report.event.registration:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: event #: field:event.event,register_current:0 @@ -378,7 +378,7 @@ msgstr "Potrjene registracije" #. module: event #: field:event.registration,email:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: event #: code:addons/event/event.py:329 @@ -394,7 +394,7 @@ msgstr "" #. module: event #: field:event.registration,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Ustvarjeno dne" #. module: event #: view:report.event.registration:0 @@ -412,7 +412,7 @@ msgstr "Prekliči registracijo" #. module: event #: selection:report.event.registration,month:0 msgid "July" -msgstr "" +msgstr "Julij" #. module: event #: field:event.event,reply_to:0 @@ -427,7 +427,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Starting Date" -msgstr "" +msgstr "Začetni datum" #. module: event #: view:event.event:0 @@ -489,17 +489,17 @@ msgstr "" #. module: event #: field:event.event,state_id:0 msgid "State" -msgstr "" +msgstr "Regija" #. module: event #: selection:report.event.registration,month:0 msgid "September" -msgstr "" +msgstr "September" #. module: event #: selection:report.event.registration,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: event #: help:event.registration,origin:0 @@ -521,7 +521,7 @@ msgstr "" #: view:report.event.registration:0 #: field:report.event.registration,month:0 msgid "Month" -msgstr "" +msgstr "Mesec" #. module: event #: field:event.registration,date_closed:0 @@ -541,17 +541,17 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Event Description" -msgstr "" +msgstr "Opis dogodka:" #. module: event #: field:event.event,date_begin:0 msgid "Start Date" -msgstr "" +msgstr "Začetni datum" #. module: event #: view:event.confirm:0 msgid "or" -msgstr "" +msgstr "ali" #. module: event #: help:res.partner,speaker:0 @@ -599,7 +599,7 @@ msgstr "" #. module: event #: field:event.event,user_id:0 msgid "Responsible User" -msgstr "" +msgstr "Odgovorni uporabnik" #. module: event #: code:addons/event/event.py:100 @@ -667,28 +667,28 @@ msgstr "" #. module: event #: selection:report.event.registration,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: event #: field:event.event,zip:0 msgid "zip" -msgstr "" +msgstr "poštna številka" #. module: event #: field:res.partner,event_ids:0 #: field:res.partner,event_registration_ids:0 msgid "unknown" -msgstr "" +msgstr "neznano" #. module: event #: field:event.event,street2:0 msgid "Street2" -msgstr "" +msgstr "Ulica 2" #. module: event #: selection:report.event.registration,month:0 msgid "June" -msgstr "" +msgstr "Junij" #. module: event #: help:event.type,default_reply_to:0 @@ -702,12 +702,12 @@ msgstr "" #: help:event.event,message_ids:0 #: help:event.registration,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Sporočila in zgodovina sporočil" #. module: event #: field:event.registration,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: event #: model:email.template,body_html:event.confirmation_event @@ -727,13 +727,13 @@ msgstr "" #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je sledilec" #. module: event #: field:event.registration,user_id:0 #: model:res.groups,name:event.group_event_user msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: event #: view:event.confirm:0 @@ -755,22 +755,22 @@ msgstr "" #. module: event #: selection:report.event.registration,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: event #: view:report.event.registration:0 msgid "Extended Filters..." -msgstr "" +msgstr "Razširjeni filtri..." #. module: event #: selection:report.event.registration,month:0 msgid "October" -msgstr "" +msgstr "Oktober" #. module: event #: selection:report.event.registration,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: event #: view:event.event:0 @@ -795,12 +795,12 @@ msgstr "" #. module: event #: view:res.partner:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: event #: view:event.event:0 msgid "Email Configuration" -msgstr "" +msgstr "Konfiguracija E-pošte" #. module: event #: field:event.type,default_registration_min:0 @@ -810,7 +810,7 @@ msgstr "" #. module: event #: field:event.event,address_id:0 msgid "Location Address" -msgstr "" +msgstr "Naslov lokacije" #. module: event #: model:ir.actions.act_window,name:event.action_event_type @@ -884,18 +884,18 @@ msgstr "" #: view:event.event:0 #: field:event.event,is_subscribed:0 msgid "Subscribed" -msgstr "" +msgstr "Naročen" #. module: event #: view:event.event:0 msgid "Unsubscribe" -msgstr "" +msgstr "Odjavi se" #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "Responsible" -msgstr "" +msgstr "Odgovoren" #. module: event #: view:report.event.registration:0 @@ -928,7 +928,7 @@ msgstr "" #. module: event #: field:event.event,note:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: event #: field:report.event.registration,confirm_state:0 @@ -943,7 +943,7 @@ msgstr "" #. module: event #: selection:report.event.registration,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: event #: view:res.partner:0 @@ -966,17 +966,17 @@ msgstr "Najvceč registracij" #: selection:event.event,state:0 #: selection:event.registration,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nepotrjeno" #. module: event #: field:event.event,date_end:0 msgid "End Date" -msgstr "" +msgstr "Končni datum" #. module: event #: selection:report.event.registration,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: event #: view:board.board:0 @@ -993,7 +993,7 @@ msgstr "Ime" #. module: event #: field:event.event,country_id:0 msgid "Country" -msgstr "" +msgstr "Država" #. module: event #: view:res.partner:0 @@ -1003,12 +1003,12 @@ msgstr "" #. module: event #: field:event.registration,origin:0 msgid "Source Document" -msgstr "" +msgstr "Izvorni dokument" #. module: event #: selection:report.event.registration,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: event #: help:event.type,default_email_event:0 @@ -1035,12 +1035,12 @@ msgstr "Vrsta dogodka" #: field:event.event,message_summary:0 #: field:event.registration,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Povzetek" #. module: event #: field:event.registration,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: event #: field:event.type,default_reply_to:0 @@ -1095,17 +1095,17 @@ msgstr "" #: view:event.event:0 #: model:ir.actions.act_window,name:event.act_register_event_partner msgid "Subscribe" -msgstr "" +msgstr "Naroči se" #. module: event #: model:res.groups,name:event.group_event_manager msgid "Manager" -msgstr "" +msgstr "Vodja" #. module: event #: field:event.event,street:0 msgid "Street" -msgstr "" +msgstr "Ulica" #. module: event #: view:event.confirm:0 @@ -1118,7 +1118,7 @@ msgstr "" #: view:report.event.registration:0 #: field:report.event.registration,year:0 msgid "Year" -msgstr "" +msgstr "Leto" #. module: event #: field:event.event,speaker_confirmed:0 diff --git a/addons/event_moodle/i18n/sl.po b/addons/event_moodle/i18n/sl.po new file mode 100644 index 00000000000..da3fc79413f --- /dev/null +++ b/addons/event_moodle/i18n/sl.po @@ -0,0 +1,185 @@ +# Slovenian 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-01-26 12:21+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with username and password" +msgstr "" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_moodle_config_wiz +msgid "event.moodle.config.wiz" +msgstr "event.moodle.config.wiz" + +#. module: event_moodle +#: help:event.moodle.config.wiz,server_moodle:0 +msgid "" +"URL where you have your moodle server. For exemple: 'http://127.0.0.1' or " +"'http://localhost'" +msgstr "" + +#. module: event_moodle +#: field:event.registration,moodle_user_password:0 +msgid "Password for Moodle User" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_password:0 +msgid "Moodle Password" +msgstr "" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Your email '%s' is wrong." +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with a Token" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"The easiest way to connect OpenERP with a moodle server is to create a " +"'token' in Moodle. It will be used to authenticate OpenERP as a trustable " +"application." +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,url:0 +msgid "URL to Moodle Server" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,url:0 +msgid "The url that will be used for the connection with moodle in xml-rpc" +msgstr "" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_registration +msgid "Event Registration" +msgstr "Registracija dogodka" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"Another approach is to create a user for OpenERP in Moodle. If you do so, " +"make sure that this user has appropriate access rights." +msgstr "" + +#. module: event_moodle +#: field:event.registration,moodle_uid:0 +msgid "Moodle User ID" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,server_moodle:0 +msgid "Moodle Server" +msgstr "" + +#. module: event_moodle +#: field:event.event,moodle_id:0 +msgid "Moodle ID" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Server" +msgstr "Strežnik" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#: code:addons/event_moodle/event_moodle.py:105 +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Error!" +msgstr "Napaka!" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:105 +#, python-format +msgid "You must configure your moodle connection." +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_username:0 +#: field:event.registration,moodle_username:0 +msgid "Moodle Username" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +#: model:ir.actions.act_window,name:event_moodle.configure_moodle +msgid "Configure Moodle" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_token:0 +msgid "Moodle Token" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_username:0 +msgid "" +"You can also connect with your username that you define when you create a " +"token" +msgstr "" + +#. module: event_moodle +#: help:event.event,moodle_id:0 +msgid "The identifier of this event in Moodle" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_token:0 +msgid "Put your token that you created in your moodle server" +msgstr "" + +#. module: event_moodle +#: model:ir.ui.menu,name:event_moodle.wizard_moodle +msgid "Moodle Configuration" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "or" +msgstr "ali" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#, python-format +msgid "First configure your moodle connection." +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Apply" +msgstr "Uporabi" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_event +msgid "Event" +msgstr "Dogodek" diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 57514f8142b..da2a612a8ea 100644 --- a/addons/fetchmail/i18n/sl.po +++ b/addons/fetchmail/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 21:57+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:42+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -25,7 +25,7 @@ msgstr "Potrjeno" #. module: fetchmail #: field:fetchmail.server,server:0 msgid "Server Name" -msgstr "" +msgstr "Ime strežnika" #. module: fetchmail #: view:fetchmail.server:0 @@ -52,7 +52,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,is_ssl:0 msgid "SSL/TLS" -msgstr "" +msgstr "SSL/TLS" #. module: fetchmail #: help:fetchmail.server,original:0 @@ -91,12 +91,12 @@ msgstr "POP/IMAP Strežniki" #. module: fetchmail #: selection:fetchmail.server,type:0 msgid "Local Server" -msgstr "" +msgstr "Lokalni strežnik" #. module: fetchmail #: field:fetchmail.server,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_server @@ -116,7 +116,7 @@ msgstr "SSL" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_config_settings msgid "fetchmail.config.settings" -msgstr "" +msgstr "fetchmail.config.settings" #. module: fetchmail #: field:fetchmail.server,date:0 @@ -138,23 +138,23 @@ msgstr "# od emalov" #. module: fetchmail #: field:fetchmail.server,original:0 msgid "Keep Original" -msgstr "" +msgstr "Ohrani izvirnik" #. module: fetchmail #: view:fetchmail.server:0 msgid "Advanced Options" -msgstr "" +msgstr "Napredne možnosti" #. module: fetchmail #: view:fetchmail.server:0 #: field:fetchmail.server,configuration:0 msgid "Configuration" -msgstr "" +msgstr "Nastavitve" #. module: fetchmail #: field:fetchmail.server,script:0 msgid "Script" -msgstr "" +msgstr "Skript" #. module: fetchmail #: view:fetchmail.server:0 @@ -165,12 +165,12 @@ msgstr "" #: code:addons/fetchmail/fetchmail.py:155 #, python-format msgid "Connection test failed!" -msgstr "" +msgstr "Povezava ni uspela!" #. module: fetchmail #: field:fetchmail.server,user:0 msgid "Username" -msgstr "" +msgstr "Uporabniško ime" #. module: fetchmail #: help:fetchmail.server,server:0 @@ -198,7 +198,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,action_id:0 msgid "Server Action" -msgstr "" +msgstr "Strežniška akcija" #. module: fetchmail #: field:mail.mail,fetchmail_server_id:0 @@ -231,7 +231,7 @@ msgstr "" #. module: fetchmail #: model:ir.model,name:fetchmail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Odhajajoča sporočila" #. module: fetchmail #: field:fetchmail.server,priority:0 @@ -286,7 +286,7 @@ msgstr "" #. module: fetchmail #: view:fetchmail.server:0 msgid "Advanced" -msgstr "" +msgstr "Napredeno" #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index 1d3bca8c4f9..5fc159bc3b6 100644 --- a/addons/fleet/i18n/hr.po +++ b/addons/fleet/i18n/hr.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 10:46+0000\n" +"Last-Translator: Davor Bojkić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Hybrid" -msgstr "Hibrid" +msgstr "Hibridno" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_compact @@ -30,7 +30,7 @@ msgstr "Kompaktno" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_1 msgid "A/C Compressor Replacement" -msgstr "" +msgstr "Zamjnea kompresora od klime" #. module: fleet #: help:fleet.vehicle,vin_sn:0 @@ -58,7 +58,7 @@ msgstr "Nepoznato" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_20 msgid "Engine/Drive Belt(s) Replacement" -msgstr "" +msgstr "Zamjena remena" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -79,7 +79,7 @@ msgstr "Registarska oznaka: od '%s' do '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 msgid "Resurface Rotors" -msgstr "" +msgstr "Reparacija rotora" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -90,7 +90,7 @@ msgstr "Grupiraj po..." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_32 msgid "Oil Pump Replacement" -msgstr "" +msgstr "Zamjena pumpe goriva" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_18 @@ -122,17 +122,17 @@ msgstr "Dobavljač" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_35 msgid "Power Steering Hose Replacement" -msgstr "" +msgstr "Zamjena serva" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Odometer details" -msgstr "" +msgstr "Podaci o kilometraži" #. module: fleet #: view:fleet.vehicle:0 msgid "Has Alert(s)" -msgstr "" +msgstr "Ima alarm" #. module: fleet #: field:fleet.vehicle.log.fuel,liter:0 @@ -142,7 +142,7 @@ msgstr "Litra" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu msgid "Open Fleet Menu" -msgstr "" +msgstr "Otvori izbornik vozila" #. module: fleet #: view:board.board:0 @@ -152,7 +152,7 @@ msgstr "Troškovi goriva" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_9 msgid "Battery Inspection" -msgstr "" +msgstr "Pregled akumulatora" #. module: fleet #: field:fleet.vehicle,company_id:0 @@ -167,38 +167,38 @@ msgstr "Datum računa" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Refueling Details" -msgstr "" +msgstr "Podaci o točenju goriva" #. module: fleet #: code:addons/fleet/fleet.py:659 #, python-format msgid "%s contract(s) need(s) to be renewed and/or closed!" -msgstr "" +msgstr "%s ugovor(i) treba(ju) biti obnovljeni ili zatvoreni!" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Indicative Costs" -msgstr "" +msgstr "Indikativni troškovi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_16 msgid "Charging System Diagnosis" -msgstr "" +msgstr "Dijagnostika sustava napajanja" #. module: fleet #: help:fleet.vehicle,car_value:0 msgid "Value of the bought vehicle" -msgstr "" +msgstr "Vrijednost kupljenog vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_44 msgid "Tie Rod End Replacement" -msgstr "" +msgstr "Zamjena svjećica" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_24 msgid "Head Gasket(s) Replacement" -msgstr "" +msgstr "Zamjena brtve glave" #. module: fleet #: view:fleet.vehicle:0 @@ -211,18 +211,18 @@ msgstr "Servisi" #: help:fleet.vehicle.cost,odometer:0 #: help:fleet.vehicle.cost,odometer_id:0 msgid "Odometer measure of the vehicle at the moment of this log" -msgstr "" +msgstr "Stanje kilometarsata u trenutku ovog upisa" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,notes:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Odredbe i uvjeti" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_kanban msgid "Vehicles with alerts" -msgstr "" +msgstr "Vozila sa upozorenjima" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_costs_act @@ -245,22 +245,22 @@ msgstr "Oboje" #: field:fleet.vehicle.log.fuel,cost_id:0 #: field:fleet.vehicle.log.services,cost_id:0 msgid "Automatically created field to link to parent fleet.vehicle.cost" -msgstr "" +msgstr "Automatski kreirano polje da poveže na roditelja fleet.vehicle.cost" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Terminate Contract" -msgstr "" +msgstr "Zatvori ugovor" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 msgid "Parent cost to this current cost" -msgstr "" +msgstr "Nadređeni trošak ovome trenutnom" #. module: fleet #: help:fleet.vehicle.log.contract,cost_frequency:0 msgid "Frequency of the recuring cost" -msgstr "" +msgstr "Učestalost ponavljajućeg troška" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_1 @@ -272,7 +272,7 @@ msgstr "" msgid "" "Date when the coverage of the contract expirates (by default, one year after " "begin date)" -msgstr "" +msgstr "Datum kad ističe ugovor (zadano: 1 godina nakon datuma početka)" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -286,7 +286,7 @@ msgstr "Bilješke" #: code:addons/fleet/fleet.py:47 #, python-format msgid "Operation not allowed!" -msgstr "" +msgstr "Radnja nije dozvoljena" #. module: fleet #: field:fleet.vehicle,message_ids:0 @@ -296,12 +296,12 @@ msgstr "Poruke" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "Korisnik" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 msgid "Vehicle concerned by this log" -msgstr "" +msgstr "Vozila upisana u ovom dnevniku" #. module: fleet #: field:fleet.vehicle.log.contract,cost_amount:0 @@ -318,7 +318,7 @@ msgstr "Nepročitane poruke" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_6 msgid "Air Filter Replacement" -msgstr "" +msgstr "Zamjena filtera zraka" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_tag @@ -328,12 +328,12 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "show the services logs for this vehicle" -msgstr "" +msgstr "Prikaži povijest servisa za ovo vozilo" #. module: fleet #: field:fleet.vehicle,contract_renewal_name:0 msgid "Name of contract to renew soon" -msgstr "" +msgstr "Naziv ugovora za skoro obnavljanje" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior @@ -343,7 +343,7 @@ msgstr "Stariji" #. module: fleet #: help:fleet.vehicle.log.contract,state:0 msgid "Choose wheter the contract is still valid or not" -msgstr "" +msgstr "Odaberite da li je ugovor još uvijek valjan ili ne" #. module: fleet #: selection:fleet.vehicle,transmission:0 @@ -353,13 +353,13 @@ msgstr "Automatski mjenjač" #. module: fleet #: help:fleet.vehicle,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: fleet #: code:addons/fleet/fleet.py:414 #, python-format msgid "Driver: from '%s' to '%s'" -msgstr "" +msgstr "Vozač : od '%s' do '%s'" #. module: fleet #: view:fleet.vehicle:0 @@ -374,7 +374,7 @@ msgstr "Fotografija srednje veličine" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_34 msgid "Oxygen Sensor Replacement" -msgstr "" +msgstr "Zamjena lambda sonde" #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -384,7 +384,7 @@ msgstr "Tip usluge" #. module: fleet #: help:fleet.vehicle,transmission:0 msgid "Transmission Used by the vehicle" -msgstr "" +msgstr "Vrsta prijenosa u vozilu" #. module: fleet #: code:addons/fleet/fleet.py:730 @@ -397,32 +397,32 @@ msgstr "Obnovi ugovor" #. module: fleet #: view:fleet.vehicle:0 msgid "show the odometer logs for this vehicle" -msgstr "" +msgstr "prikaži povijest kilometraže za ovo vozilo" #. module: fleet #: help:fleet.vehicle,odometer_unit:0 msgid "Unit of the odometer " -msgstr "" +msgstr "Jedinice na brojaču kilometara " #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Costs Per Month" -msgstr "" +msgstr "Mjesečni troškovi održavanja" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Effective Costs" -msgstr "" +msgstr "Efektivni troškovi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_8 msgid "Repair and maintenance" -msgstr "" +msgstr "Popravak i održavanje" #. module: fleet #: help:fleet.vehicle.log.contract,purchaser_id:0 msgid "Person to which the contract is signed for" -msgstr "" +msgstr "Osoba na koju glasi ugovor" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_contract_act @@ -440,34 +440,47 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Kliknite za stvaranje novog ugovora\n" +"

\n" +" Upravljanje vašim ugovorima(leasing, osiguranje, isl.) " +"uključivo \n" +" sa troškovima servisa i održavanja. OpenERP će Vas automatski " +"upozoriti kad bude vrijeme za obnavljanje ugovora.\n" +"

\n" +" Svaki ugovor (npr.: leasing) može uključivati različite usluge " +"\n" +" (popravci, servisi, osiguranje).\n" +"

\n" +" " #. module: fleet #: model:ir.model,name:fleet.model_fleet_service_type msgid "Type of services available on a vehicle" -msgstr "" +msgstr "Vrste servisa dostupnih za vozilo" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_service_types_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_service_types_menu msgid "Service Types" -msgstr "" +msgstr "Tipovi servisa" #. module: fleet #: view:board.board:0 msgid "Contracts Costs" -msgstr "" +msgstr "Troškovi ugovora" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_services_menu msgid "Vehicles Services Logs" -msgstr "" +msgstr "Evidencija servisa vozila" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "" +msgstr "Evidencija potrošnje goriva" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -479,7 +492,7 @@ msgstr "" #. module: fleet #: view:board.board:0 msgid "Vehicles With Alerts" -msgstr "" +msgstr "Vozila sa upozorenjima" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_costs_act @@ -493,11 +506,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za stvaranje novog troška.\n" +"

\n" +" OpenERP olakšava upravljanje troškovima za različita \n" +" vozila. Troškovi se generiraju automatski iz servisnih " +"troškova,\n" +" ugovora (fiksnih ili ponavljajućih) i dnevnika potrošnje " +"goriva.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 msgid "show the fuel logs for this vehicle" -msgstr "" +msgstr "prikaži dnevnik potrošnje goriva za ovo vozilo" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 @@ -507,53 +530,53 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,license_plate:0 msgid "License Plate" -msgstr "" +msgstr "Registracija" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "To Close" -msgstr "" +msgstr "Za zatvoriti" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 msgid "Recurring Cost Frequency" -msgstr "" +msgstr "Učestalost ponavljajućih troškova" #. module: fleet #: field:fleet.vehicle.log.fuel,inv_ref:0 #: field:fleet.vehicle.log.services,inv_ref:0 msgid "Invoice Reference" -msgstr "" +msgstr "Vezna oznaka računa" #. module: fleet #: field:fleet.vehicle,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: fleet #: field:fleet.vehicle,location:0 msgid "Location" -msgstr "" +msgstr "Lokacija" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Costs Per Month" -msgstr "" +msgstr "Mjesečni troškovi" #. module: fleet #: field:fleet.contract.state,name:0 msgid "Contract Status" -msgstr "" +msgstr "Status ugovora" #. module: fleet #: field:fleet.vehicle,contract_renewal_total:0 msgid "Total of contracts due or overdue minus one" -msgstr "" +msgstr "Ukupno ugovori sa dospjelim ili premašenim valutama plaćanja" #. module: fleet #: field:fleet.vehicle.cost,cost_subtype_id:0 msgid "Type" -msgstr "" +msgstr "Tip" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 @@ -563,32 +586,32 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.cost,amount:0 msgid "Total Price" -msgstr "" +msgstr "Ukupni iznos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 msgid "Heater Core Replacement" -msgstr "" +msgstr "Zamjena grijača" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_14 msgid "Car Wash" -msgstr "" +msgstr "Pranje vozila" #. module: fleet #: help:fleet.vehicle,driver_id:0 msgid "Driver of the vehicle" -msgstr "" +msgstr "Vozač ovog vozila" #. module: fleet #: view:fleet.vehicle:0 msgid "other(s)" -msgstr "" +msgstr "ostali" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_refueling msgid "Refueling" -msgstr "" +msgstr "Točenje goriva" #. module: fleet #: help:fleet.vehicle,message_summary:0 @@ -596,46 +619,48 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 msgid "A/C Recharge" -msgstr "" +msgstr "Punjenje akumulatora" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel msgid "Fuel log for vehicles" -msgstr "" +msgstr "Evidencija potrošnje za vozila" #. module: fleet #: view:fleet.vehicle:0 msgid "Engine Options" -msgstr "" +msgstr "Opcije motora" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Costs Per Month" -msgstr "" +msgstr "Mjesečni troškovi goriva" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan msgid "Sedan" -msgstr "" +msgstr "Sedan" #. module: fleet #: field:fleet.vehicle,seats:0 msgid "Seats Number" -msgstr "" +msgstr "Broj sjedala" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible msgid "Convertible" -msgstr "" +msgstr "Kabriolet" #. module: fleet #: model:ir.ui.menu,name:fleet.fleet_configuration msgid "Configuration" -msgstr "" +msgstr "Postavke" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -651,7 +676,7 @@ msgstr "" #. module: fleet #: help:fleet.vehicle,model_id:0 msgid "Model of the vehicle" -msgstr "" +msgstr "Model vozila" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_state_act @@ -665,13 +690,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliknite za stvaranje statusa vozila.\n" +"

\n" +"Možete prilagoditi statuse vozila kako bi pratili razvoj stanja sa vozilima " +"\n" +"(npr: Aktivan, na popravku, prodan) \n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 #: field:fleet.vehicle,log_fuel:0 #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Logs" -msgstr "" +msgstr "Dnevnik potrošnje goriva" #. module: fleet #: code:addons/fleet/fleet.py:409 @@ -680,7 +713,7 @@ msgstr "" #: code:addons/fleet/fleet.py:420 #, python-format msgid "None" -msgstr "" +msgstr "Ništa" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs_non_effective @@ -691,22 +724,22 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_12 msgid "Brake Inspection" -msgstr "" +msgstr "Pregled kočnica" #. module: fleet #: help:fleet.vehicle,state_id:0 msgid "Current state of the vehicle" -msgstr "" +msgstr "Trenutno stanje vozila" #. module: fleet #: selection:fleet.vehicle,transmission:0 msgid "Manual" -msgstr "" +msgstr "Ručni mjenjač" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_52 msgid "Wheel Bearing Replacement" -msgstr "" +msgstr "Zamjena ležaja na kotačima" #. module: fleet #: help:fleet.vehicle.cost,cost_subtype_id:0 @@ -716,7 +749,7 @@ msgstr "" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Gasoline" -msgstr "" +msgstr "Benzin" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_brand_act @@ -726,11 +759,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliknite za stvaranje nove marke vozila\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 msgid "Contract Start Date" -msgstr "" +msgstr "Početni datum ugovora" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 @@ -740,33 +777,33 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_30 msgid "Intake Manifold Gasket Replacement" -msgstr "" +msgstr "Zamjnea brtve na usisnoj grani" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Daily" -msgstr "" +msgstr "Dnevno" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_6 msgid "Snow tires" -msgstr "" +msgstr "Zimske gume" #. module: fleet #: help:fleet.vehicle.cost,date:0 msgid "Date when the cost has been executed" -msgstr "" +msgstr "Datum stvaranja troška" #. module: fleet #: view:fleet.vehicle.cost:0 #: view:fleet.vehicle.model:0 msgid "Vehicles costs" -msgstr "" +msgstr "Troškovi vozila" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_services msgid "Services for vehicles" -msgstr "" +msgstr "Servisi za vozila" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -776,7 +813,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_26 msgid "Heater Control Valve Replacement" -msgstr "" +msgstr "Zamjena termostata grijanja" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -784,43 +821,45 @@ msgid "" "Create a new contract automatically with all the same informations except " "for the date that will start at the end of current contract" msgstr "" +"Stvori novi ugovor sa svim istim vrijednostima izuzev datuma početka, za " +"kojeg se uzima datum završetka tekućeg ugovora." #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "Terminated" -msgstr "" +msgstr "Završen" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_cost msgid "Cost related to a vehicle" -msgstr "" +msgstr "Trošak vezan uz vozilo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_33 msgid "Other Maintenance" -msgstr "" +msgstr "Ostalo održavanje" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,parent_id:0 msgid "Parent" -msgstr "Nadređeni" +msgstr "Roditelj" #. module: fleet #: field:fleet.vehicle,state_id:0 #: view:fleet.vehicle.state:0 msgid "State" -msgstr "" +msgstr "Stanje" #. module: fleet #: field:fleet.vehicle.log.contract,cost_generated:0 msgid "Recurring Cost Amount" -msgstr "" +msgstr "Iznos ponavljajućeg troška" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_49 msgid "Transmission Replacement" -msgstr "" +msgstr "Zamjena mjenjača" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_fuel_act @@ -839,64 +878,64 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_11 msgid "Brake Caliper Replacement" -msgstr "" +msgstr "Zamjnea kočionih čeljusti" #. module: fleet #: field:fleet.vehicle,odometer:0 msgid "Last Odometer" -msgstr "" +msgstr "Zadnje stanje kilometara" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_menu msgid "Vehicle Model" -msgstr "" +msgstr "Model vozila" #. module: fleet #: field:fleet.vehicle,doors:0 msgid "Doors Number" -msgstr "" +msgstr "Broj vrata" #. module: fleet #: help:fleet.vehicle,acquisition_date:0 msgid "Date when the vehicle has been bought" -msgstr "" +msgstr "Datum nabave vozila" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Models" -msgstr "" +msgstr "Modeli" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "amount" -msgstr "" +msgstr "iznos" #. module: fleet #: help:fleet.vehicle,fuel_type:0 msgid "Fuel Used by the vehicle" -msgstr "" +msgstr "Gorivo koje se koristi u vozilu" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Set Contract In Progress" -msgstr "" +msgstr "Ugovor u tijeku" #. module: fleet #: field:fleet.vehicle.cost,odometer_unit:0 #: field:fleet.vehicle.odometer,unit:0 msgid "Unit" -msgstr "" +msgstr "Jedinica" #. module: fleet #: field:fleet.vehicle,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Pratitelj" #. module: fleet #: field:fleet.vehicle,horsepower:0 msgid "Horsepower" -msgstr "" +msgstr "Konjska snaga" #. module: fleet #: field:fleet.vehicle,image:0 @@ -907,38 +946,38 @@ msgstr "" #: field:fleet.vehicle.model,image_small:0 #: field:fleet.vehicle.model.brand,image:0 msgid "Logo" -msgstr "" +msgstr "Znak" #. module: fleet #: field:fleet.vehicle,horsepower_tax:0 msgid "Horsepower Taxation" -msgstr "" +msgstr "Porez na snagu vozila" #. module: fleet #: field:fleet.vehicle,log_services:0 #: view:fleet.vehicle.log.services:0 msgid "Services Logs" -msgstr "" +msgstr "Evidencija servisa" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "Marka" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 msgid "Thermostat Replacement" -msgstr "" +msgstr "Zamjena termostata" #. module: fleet #: field:fleet.service.type,category:0 msgid "Category" -msgstr "" +msgstr "Grupa" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_fuel_graph msgid "Fuel Costs by Month" -msgstr "" +msgstr "Troškovi goriva po mjesecima" #. module: fleet #: help:fleet.vehicle.model.brand,image:0 @@ -946,6 +985,8 @@ msgid "" "This field holds the image used as logo for the brand, limited to " "1024x1024px." msgstr "" +"Ovo polje sadrži sliku koju koristimo kao logo Marke vozila, ograničeno na " +"1024x1024 piksela" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_11 @@ -955,38 +996,38 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "All vehicles" -msgstr "" +msgstr "Sva vozila" #. module: fleet #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Additional Details" -msgstr "" +msgstr "Dodatni podaci" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_services_graph msgid "Services Costs by Month" -msgstr "" +msgstr "Troškovi servisa po mjesecima" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_9 msgid "Assistance" -msgstr "" +msgstr "Pomoć" #. module: fleet #: field:fleet.vehicle.log.fuel,price_per_liter:0 msgid "Price Per Liter" -msgstr "" +msgstr "Cijena po litri" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_17 msgid "Door Window Motor/Regulator Replacement" -msgstr "" +msgstr "Zamjena motora od vrata ili prozora" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_46 msgid "Tire Service" -msgstr "" +msgstr "Zamjena guma" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_8 @@ -996,23 +1037,23 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,fuel_type:0 msgid "Fuel Type" -msgstr "" +msgstr "Vrsta goriva" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_22 msgid "Fuel Injector Replacement" -msgstr "" +msgstr "Zamjnea injektora goriva" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu msgid "Vehicle Status" -msgstr "" +msgstr "Status vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 msgid "Water Pump Replacement" -msgstr "" +msgstr "Zamjena vodene pumpe" #. module: fleet #: help:fleet.vehicle,location:0 @@ -1027,54 +1068,54 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_40 msgid "Rotor Replacement" -msgstr "" +msgstr "Zamjnea rotora" #. module: fleet #: help:fleet.vehicle.model,brand_id:0 msgid "Brand of the vehicle" -msgstr "" +msgstr "Marka vozila" #. module: fleet #: help:fleet.vehicle.log.contract,start_date:0 msgid "Date when the coverage of the contract begins" -msgstr "" +msgstr "Datum od kad vrijedi pokriće ugovorom" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Electric" -msgstr "" +msgstr "Električni" #. module: fleet #: field:fleet.vehicle,tag_ids:0 msgid "Tags" -msgstr "" +msgstr "Oznake" #. module: fleet #: view:fleet.vehicle:0 #: field:fleet.vehicle,log_contracts:0 msgid "Contracts" -msgstr "" +msgstr "Ugovori" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_13 msgid "Brake Pad(s) Replacement" -msgstr "" +msgstr "Zamjena kočionih pločica" #. module: fleet #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Odometer Details" -msgstr "" +msgstr "Podaci sa kilimetarsata" #. module: fleet #: field:fleet.vehicle,driver_id:0 msgid "Driver" -msgstr "" +msgstr "Vozač" #. module: fleet #: help:fleet.vehicle.model.brand,image_small:0 @@ -1083,16 +1124,19 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Mala slika marke vozila. Automatski je promijenjena veličina na 64x64 " +"pixela, sa zadržanim proporcijama. Koristite ovo polje gdje god je potrebna " +"mala slika." #. module: fleet #: view:board.board:0 msgid "Fleet Dashboard" -msgstr "" +msgstr "Pregled vozila" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_break msgid "Break" -msgstr "" +msgstr "Kočnice" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_omnium @@ -1112,17 +1156,17 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_7 msgid "Alternator Replacement" -msgstr "" +msgstr "Zamjena alternatora" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_3 msgid "A/C Diagnosis" -msgstr "" +msgstr "Dijagnostika klime" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_23 msgid "Fuel Pump Replacement" -msgstr "" +msgstr "Zamjena pumpe goriva" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -1132,22 +1176,22 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Type" -msgstr "" +msgstr "Vrsta troška" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_4 msgid "A/C Evaporator Replacement" -msgstr "" +msgstr "Zamjena isparivača na klimi" #. module: fleet #: view:fleet.vehicle:0 msgid "show all the costs for this vehicle" -msgstr "" +msgstr "pokaži sve troškove ovog vozila" #. module: fleet #: view:fleet.vehicle.odometer:0 msgid "Odometer Values Per Month" -msgstr "" +msgstr "Vrijednosti kilometraže po mjesecima" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act @@ -1160,6 +1204,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Kliknite za stvaranje novog modela.\n" +"

\n" +"Možete definirati više modela ( A3, A4) za svaku marku (Audi).\n" +"

\n" +" " #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_act @@ -1178,6 +1228,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje novog vozila..\n" +"

\n" +" Biti ćete u mogućnosti upravljati svojom flotom vozila, " +"prateći\n" +" ugovore, servise, fiksne i varijabilne troškove " +"kilometražu\n" +" i dnevnike potrošnje za svako vozilo.\n" +"

\n" +" OpenERP će vas upozoriti kad je vrijeme za servis ili " +"registraciju.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 @@ -1187,12 +1250,12 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,expiration_date:0 msgid "Contract Expiration Date" -msgstr "" +msgstr "Datum isteka ugovora" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Subtype" -msgstr "" +msgstr "Podvrsta troška" #. module: fleet #: model:ir.actions.act_window,help:fleet.open_board_fleet @@ -1216,54 +1279,54 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 msgid "Rent (Excluding VAT)" -msgstr "" +msgstr "Najam vozila (bez poreza)" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 msgid "Kilometers" -msgstr "" +msgstr "Kilometri" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Vehicle Details" -msgstr "" +msgstr "Detalji vozila" #. module: fleet #: selection:fleet.service.type,category:0 #: field:fleet.vehicle.cost,contract_id:0 #: selection:fleet.vehicle.cost,cost_type:0 msgid "Contract" -msgstr "" +msgstr "Ugovor" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "" +msgstr "Model vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 msgid "Battery Replacement" -msgstr "" +msgstr "Zamjnea akumulatora" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,date:0 #: field:fleet.vehicle.odometer,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_menu #: model:ir.ui.menu,name:fleet.fleet_vehicles msgid "Vehicles" -msgstr "" +msgstr "Vozila" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 msgid "Miles" -msgstr "" +msgstr "Milja" #. module: fleet #: help:fleet.vehicle.log.contract,cost_generated:0 @@ -1271,16 +1334,19 @@ msgid "" "Costs paid at regular intervals, depending on the cost frequency. If the " "cost frequency is set to unique, the cost will be logged at the start date" msgstr "" +"Trošak koji se plaća u redovnm intervalima, zavisno od frekvencije troška. " +"Ukoliko je frekvencija troška postavljena na jedinstveno, trošak se vodi od " +"početnog datuma." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_17 msgid "Emissions" -msgstr "" +msgstr "Emisije plinova" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model msgid "Model of a vehicle" -msgstr "" +msgstr "Model vozila" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs @@ -1302,7 +1368,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,car_value:0 msgid "Car Value" -msgstr "" +msgstr "Vrijednost vozila" #. module: fleet #: model:ir.actions.act_window,name:fleet.open_board_fleet @@ -1311,33 +1377,33 @@ msgstr "" #: model:ir.ui.menu,name:fleet.menu_fleet_reporting #: model:ir.ui.menu,name:fleet.menu_root msgid "Fleet" -msgstr "" +msgstr "Prevoz" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_14 msgid "Total expenses (Excluding VAT)" -msgstr "" +msgstr "Ukupni troškovi (bez PDV)" #. module: fleet #: field:fleet.vehicle.cost,odometer_id:0 msgid "Odometer" -msgstr "" +msgstr "Kilometarsat" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_45 msgid "Tire Replacement" -msgstr "" +msgstr "Zamjena guma" #. module: fleet #: view:fleet.service.type:0 msgid "Service types" -msgstr "" +msgstr "Vrste servisa" #. module: fleet #: field:fleet.vehicle.log.fuel,purchaser_id:0 #: field:fleet.vehicle.log.services,purchaser_id:0 msgid "Purchaser" -msgstr "" +msgstr "Kupac" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_3 @@ -1348,12 +1414,12 @@ msgstr "" #: view:fleet.vehicle.model:0 #: field:fleet.vehicle.model,vendors:0 msgid "Vendors" -msgstr "" +msgstr "Dobavljači" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_leasing msgid "Leasing" -msgstr "" +msgstr "Lizing" #. module: fleet #: help:fleet.vehicle.model.brand,image_medium:0 @@ -1366,64 +1432,64 @@ msgstr "" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Weekly" -msgstr "" +msgstr "Tjedno" #. module: fleet #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "" +msgstr "Dnevnici kilometraže" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 msgid "Acquisition Date" -msgstr "" +msgstr "Datum nabave" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "" +msgstr "Dnevnik kilometraže za vozilo" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 msgid "Category of the cost" -msgstr "" +msgstr "Grupa troškova" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_5 #: model:fleet.service.type,name:fleet.type_service_service_7 msgid "Summer tires" -msgstr "" +msgstr "Ljetne gume" #. module: fleet #: field:fleet.vehicle,contract_renewal_due_soon:0 msgid "Has Contracts to renew" -msgstr "" +msgstr "Ima ugovor za obnoviti" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_31 msgid "Oil Change" -msgstr "" +msgstr "Zamjena ulja" #. module: fleet #: field:fleet.vehicle.model.brand,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Mala slika" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model_brand msgid "Brand model of the vehicle" -msgstr "" +msgstr "Model vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_51 msgid "Wheel Alignment" -msgstr "" +msgstr "Optika kotača" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_purchased msgid "Purchased" -msgstr "" +msgstr "Kupljen" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act @@ -1436,135 +1502,143 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Ovdje možete dodati različite unose za stanje " +"kilometraže za sva vozila.\n" +" Možete također prikazati vrijednost " +"kilometraže za pojedino vozilo \n" +" koristeći polje pretrage\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.model,brand_id:0 #: view:fleet.vehicle.model.brand:0 msgid "Model Brand" -msgstr "" +msgstr "Marka vozila" #. module: fleet #: view:fleet.vehicle:0 msgid "General Properties" -msgstr "" +msgstr "Osnovna svojstva" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_21 msgid "Exhaust Manifold Replacement" -msgstr "" +msgstr "Zamjena brtve ispuha" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_47 msgid "Transmission Filter Replacement" -msgstr "" +msgstr "Zamjena filtera na prijenosu" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_10 msgid "Replacement Vehicle" -msgstr "" +msgstr "Zamjensko vozilo" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "In Progress" -msgstr "" +msgstr "U tijeku" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Yearly" -msgstr "" +msgstr "Godišnje" #. module: fleet #: field:fleet.vehicle.model,modelname:0 msgid "Model name" -msgstr "" +msgstr "Model" #. module: fleet #: view:board.board:0 #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_costs_graph msgid "Costs by Month" -msgstr "" +msgstr "Troškovi po mjesecima" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_18 msgid "Touring Assistance" -msgstr "" +msgstr "Putni pomoćnik" #. module: fleet #: field:fleet.vehicle,power:0 msgid "Power (kW)" -msgstr "" +msgstr "Snaga (kW)" #. module: fleet #: code:addons/fleet/fleet.py:418 #, python-format msgid "State: from '%s' to '%s'" -msgstr "" +msgstr "Stanje: od '%s' do '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_2 msgid "A/C Condenser Replacement" -msgstr "" +msgstr "Zamjena isparivača klime" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_19 msgid "Engine Coolant Replacement" -msgstr "" +msgstr "Zamjena antifriza" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Details" -msgstr "" +msgstr "Pojedinosti troška" #. module: fleet #: code:addons/fleet/fleet.py:410 #, python-format msgid "Model: from '%s' to '%s'" -msgstr "" +msgstr "Model: od '%s' do '%s'" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 msgid "Other" -msgstr "" +msgstr "Ostalo" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract details" -msgstr "" +msgstr "Pojedinosti ugovora" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_leasing msgid "Employee Car" -msgstr "" +msgstr "Vozilo od zaposlenika" #. module: fleet #: field:fleet.vehicle.cost,auto_generated:0 msgid "Automatically Generated" -msgstr "" +msgstr "Automatski generirano" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 msgid "Fuel" -msgstr "" +msgstr "Gorivo" #. module: fleet #: sql_constraint:fleet.vehicle.state:0 msgid "State name already exists" -msgstr "" +msgstr "Naziv stanja već postoji" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_37 msgid "Radiator Repair" -msgstr "" +msgstr "Popravak hladnjaka" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_contract msgid "Contract information on a vehicle" -msgstr "" +msgstr "Pojedinosti ugovora za vozilo" #. module: fleet #: field:fleet.vehicle.log.contract,days_left:0 msgid "Warning Date" -msgstr "" +msgstr "Datum upozorenja" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_19 @@ -1574,62 +1648,62 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "Additional Properties" -msgstr "" +msgstr "Dodatna svojstva" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state msgid "fleet.vehicle.state" -msgstr "" +msgstr "fleet.vehicle.state" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract Costs Per Month" -msgstr "" +msgstr "Mjesečni troškovi ugovora" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_contract_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_contract_menu msgid "Vehicles Contracts" -msgstr "" +msgstr "Ugovori za vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_48 msgid "Transmission Fluid Replacement" -msgstr "" +msgstr "Zamjena ulja u mjenjaču" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 msgid "Brand Name" -msgstr "" +msgstr "Naziv marke vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "" +msgstr "Zamjena serva volana" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 msgid "Contract attached to this cost" -msgstr "" +msgstr "Kontakt pridružen ovom trošku" #. module: fleet #: code:addons/fleet/fleet.py:397 #, python-format msgid "Vehicle %s has been added to the fleet!" -msgstr "" +msgstr "Vozilo %s je dodano u flotu" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Price" -msgstr "" +msgstr "Cijena" #. module: fleet #: field:fleet.vehicle.cost,odometer:0 #: field:fleet.vehicle.odometer,value:0 msgid "Odometer Value" -msgstr "" +msgstr "Stanje kilometraže" #. module: fleet #: view:fleet.vehicle:0 @@ -1637,14 +1711,14 @@ msgstr "" #: field:fleet.vehicle.cost,vehicle_id:0 #: field:fleet.vehicle.odometer,vehicle_id:0 msgid "Vehicle" -msgstr "" +msgstr "Vozilo" #. module: fleet #: field:fleet.vehicle.cost,cost_ids:0 #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.services:0 msgid "Included Services" -msgstr "" +msgstr "Uključene usluge" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_vehicle_kanban @@ -1656,53 +1730,58 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Ovdje su prikazana vozila za koje jedan ili više ugovora treba " +"obnovivti. Ukoliko vidite ovu poruku, nema ugovora koje treba obnavljati.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_15 msgid "Catalytic Converter Replacement" -msgstr "" +msgstr "Zamjena katalizatora" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_25 msgid "Heater Blower Motor Replacement" -msgstr "" +msgstr "Zamjena ventilatora za grijanje" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu msgid "Vehicles Odometer" -msgstr "" +msgstr "Kilometarsat vozila" #. module: fleet #: help:fleet.vehicle.log.contract,notes:0 msgid "Write here all supplementary informations relative to this contract" -msgstr "" +msgstr "Ovdje upišite sve dodatne informacije vezane za ovaj ugovor" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_29 msgid "Ignition Coil Replacement" -msgstr "" +msgstr "Zamjena svjećica" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_16 msgid "Options" -msgstr "" +msgstr "Opcije" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_repairing msgid "Repairing" -msgstr "" +msgstr "Popravljanje" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_costs msgid "Costs Analysis" -msgstr "" +msgstr "Analiza troškova" #. module: fleet #: field:fleet.vehicle.log.contract,ins_ref:0 msgid "Contract Reference" -msgstr "" +msgstr "Referenca ugovora" #. module: fleet #: field:fleet.service.type,name:0 @@ -1714,27 +1793,27 @@ msgstr "" #: field:fleet.vehicle.state,name:0 #: field:fleet.vehicle.tag,name:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: fleet #: help:fleet.vehicle,doors:0 msgid "Number of doors of the vehicle" -msgstr "" +msgstr "Broj vrata vozila" #. module: fleet #: field:fleet.vehicle,transmission:0 msgid "Transmission" -msgstr "" +msgstr "Prijenos" #. module: fleet #: field:fleet.vehicle,vin_sn:0 msgid "Chassis Number" -msgstr "" +msgstr "Broj šasije" #. module: fleet #: help:fleet.vehicle,color:0 msgid "Color of the vehicle" -msgstr "" +msgstr "Boja vozila" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_services_act @@ -1752,74 +1831,74 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,co2:0 msgid "CO2 Emissions" -msgstr "" +msgstr "Emisija CO2" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract logs" -msgstr "" +msgstr "Evidencija ugovora" #. module: fleet #: view:fleet.vehicle:0 msgid "Costs" -msgstr "" +msgstr "Troškovi" #. module: fleet #: field:fleet.vehicle,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph msgid "Contracts Costs by Month" -msgstr "" +msgstr "Troškovi ugovora po mjesecima" #. module: fleet #: field:fleet.vehicle,model_id:0 #: view:fleet.vehicle.model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_41 msgid "Spark Plug Replacement" -msgstr "" +msgstr "Zamjena svjećica" #. module: fleet #: help:fleet.vehicle,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle msgid "Information on a vehicle" -msgstr "" +msgstr "Informacije o vozilu" #. module: fleet #: help:fleet.vehicle,co2:0 msgid "CO2 emissions of the vehicle" -msgstr "" +msgstr "CO2 emisija vozila" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_53 msgid "Windshield Wiper(s) Replacement" -msgstr "" +msgstr "Zamjena brisača" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,generated_cost_ids:0 msgid "Generated Costs" -msgstr "" +msgstr "Generirani troškovi" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sekvenca" #. module: fleet #: field:fleet.vehicle,color:0 msgid "Color" -msgstr "" +msgstr "Boja" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_service_types_act @@ -1836,64 +1915,64 @@ msgstr "" #. module: fleet #: view:board.board:0 msgid "Services Costs" -msgstr "" +msgstr "Troškovi servisa" #. module: fleet #: code:addons/fleet/fleet.py:47 #, python-format msgid "Emptying the odometer value of a vehicle is not allowed." -msgstr "" +msgstr "Brisanje vrijednosti kilometraže nije dozvoljeno." #. module: fleet #: help:fleet.vehicle,seats:0 msgid "Number of seats of the vehicle" -msgstr "" +msgstr "Broj sjedala u vozilu" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "Voditelj" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Cost" -msgstr "" +msgstr "Trošak" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_39 msgid "Rotate Tires" -msgstr "" +msgstr "Rotacija guma (zamjnea sezonskih)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_42 msgid "Starter Replacement" -msgstr "" +msgstr "Zamjena startera" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,year:0 msgid "Year" -msgstr "" +msgstr "Godina" #. module: fleet #: help:fleet.vehicle,license_plate:0 msgid "License plate number of the vehicle (ie: plate number for a car)" -msgstr "" +msgstr "Registracija oznaka vozila" #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state msgid "Contains the different possible status of a leasing contract" -msgstr "" +msgstr "Sadrži drugi mogući status leasing ugovora" #. module: fleet #: view:fleet.vehicle:0 msgid "show the contract for this vehicle" -msgstr "" +msgstr "prikaži ugovore za ovo vozilo" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Total" -msgstr "" +msgstr "Ukupno" #. module: fleet #: help:fleet.service.type,category:0 @@ -1904,7 +1983,7 @@ msgstr "" #. module: fleet #: help:fleet.vehicle.cost,cost_type:0 msgid "For internal purpose only" -msgstr "" +msgstr "Samo za internu upotrebu" #. module: fleet #: help:fleet.vehicle.state,sequence:0 diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index df804e7c0db..b51446e0597 100644 --- a/addons/fleet/i18n/pt_BR.po +++ b/addons/fleet/i18n/pt_BR.po @@ -8,14 +8,14 @@ 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-24 19:34+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 08:01+0000\n" +"Last-Translator: Danimar Ribeiro \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -35,14 +35,14 @@ msgstr "Substituição do Compressor do A/C" #. module: fleet #: help:fleet.vehicle,vin_sn:0 msgid "Unique number written on the vehicle motor (VIN/SN number)" -msgstr "Número do Chassi" +msgstr "Numero de série do motor" #. module: fleet #: selection:fleet.service.type,category:0 #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.services:0 msgid "Service" -msgstr "Serviços" +msgstr "Manutenção" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -74,12 +74,12 @@ msgstr "Diesel" #: code:addons/fleet/fleet.py:421 #, python-format msgid "License Plate: from '%s' to '%s'" -msgstr "" +msgstr "Placas: de '%s' até '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 msgid "Resurface Rotors" -msgstr "" +msgstr "Subistituir lonas do freio" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -122,7 +122,7 @@ msgstr "Fornecedor" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_35 msgid "Power Steering Hose Replacement" -msgstr "" +msgstr "Substituição da mangueira da direção hidráulica" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -178,27 +178,27 @@ msgstr "%s contrato(s) precisa(m) ser renovado ou fechado!" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Indicative Costs" -msgstr "" +msgstr "Custos indicativos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_16 msgid "Charging System Diagnosis" -msgstr "" +msgstr "Verificação do sistema de carga da bateria" #. module: fleet #: help:fleet.vehicle,car_value:0 msgid "Value of the bought vehicle" -msgstr "" +msgstr "Valor de compra do veiculo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_44 msgid "Tie Rod End Replacement" -msgstr "" +msgstr "Substituição do terminal de direção" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_24 msgid "Head Gasket(s) Replacement" -msgstr "" +msgstr "Substituição da junta do cabeçote" #. module: fleet #: view:fleet.vehicle:0 @@ -211,7 +211,7 @@ msgstr "Serviços" #: help:fleet.vehicle.cost,odometer:0 #: help:fleet.vehicle.cost,odometer_id:0 msgid "Odometer measure of the vehicle at the moment of this log" -msgstr "" +msgstr "Valor do odometro no momento deste registro" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -228,7 +228,7 @@ msgstr "Veículos com alertas" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_costs_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_costs_menu msgid "Vehicle Costs" -msgstr "" +msgstr "Gastos com veiculo" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -245,7 +245,7 @@ msgstr "Ambos" #: field:fleet.vehicle.log.fuel,cost_id:0 #: field:fleet.vehicle.log.services,cost_id:0 msgid "Automatically created field to link to parent fleet.vehicle.cost" -msgstr "" +msgstr "Campo criado automaticamente para vincular com fleet.vehicle.cost" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -255,17 +255,17 @@ msgstr "Terminar Contrato" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 msgid "Parent cost to this current cost" -msgstr "" +msgstr "Custo-pai para custo atual" #. module: fleet #: help:fleet.vehicle.log.contract,cost_frequency:0 msgid "Frequency of the recuring cost" -msgstr "" +msgstr "Frequência de ocorrência do gasto" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_1 msgid "Calculation Benefit In Kind" -msgstr "" +msgstr "Cálculo de beneficio em espécie" #. module: fleet #: help:fleet.vehicle.log.contract,expiration_date:0 @@ -273,6 +273,8 @@ msgid "" "Date when the coverage of the contract expirates (by default, one year after " "begin date)" msgstr "" +"Data quando a cobertura do contrato expira (por padrão, um ano após a data " +"de inicio)" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -286,105 +288,105 @@ msgstr "Observações" #: code:addons/fleet/fleet.py:47 #, python-format msgid "Operation not allowed!" -msgstr "" +msgstr "Operação não permitida!" #. module: fleet #: field:fleet.vehicle,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "Usuário" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 msgid "Vehicle concerned by this log" -msgstr "" +msgstr "Veículo referente a este registro" #. module: fleet #: field:fleet.vehicle.log.contract,cost_amount:0 #: field:fleet.vehicle.log.fuel,cost_amount:0 #: field:fleet.vehicle.log.services,cost_amount:0 msgid "Amount" -msgstr "" +msgstr "Valor" #. module: fleet #: field:fleet.vehicle,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens não lidas" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_6 msgid "Air Filter Replacement" -msgstr "" +msgstr "Troca do filtro de ar" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_tag msgid "fleet.vehicle.tag" -msgstr "" +msgstr "fleet.vehicle.tag" #. module: fleet #: view:fleet.vehicle:0 msgid "show the services logs for this vehicle" -msgstr "" +msgstr "Mostrar os logs de serviço para este veículo" #. module: fleet #: field:fleet.vehicle,contract_renewal_name:0 msgid "Name of contract to renew soon" -msgstr "" +msgstr "Nome do contrato para renovar em breve" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior msgid "Senior" -msgstr "" +msgstr "Sênior" #. module: fleet #: help:fleet.vehicle.log.contract,state:0 msgid "Choose wheter the contract is still valid or not" -msgstr "" +msgstr "Escolha se o contrato é ainda válido ou não" #. module: fleet #: selection:fleet.vehicle,transmission:0 msgid "Automatic" -msgstr "" +msgstr "Automático" #. module: fleet #: help:fleet.vehicle,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: fleet #: code:addons/fleet/fleet.py:414 #, python-format msgid "Driver: from '%s' to '%s'" -msgstr "" +msgstr "Condutor: de '%s' até '%s'" #. module: fleet #: view:fleet.vehicle:0 msgid "and" -msgstr "" +msgstr "e" #. module: fleet #: field:fleet.vehicle.model.brand,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Foto de tamanho médio" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_34 msgid "Oxygen Sensor Replacement" -msgstr "" +msgstr "Substituição da sonda Lambda" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Service Type" -msgstr "" +msgstr "Tipo de serviço" #. module: fleet #: help:fleet.vehicle,transmission:0 msgid "Transmission Used by the vehicle" -msgstr "" +msgstr "Cambio utilizado pelo veículo" #. module: fleet #: code:addons/fleet/fleet.py:730 @@ -392,37 +394,37 @@ msgstr "" #: model:ir.actions.act_window,name:fleet.act_renew_contract #, python-format msgid "Renew Contract" -msgstr "" +msgstr "Renovação de Contrato" #. module: fleet #: view:fleet.vehicle:0 msgid "show the odometer logs for this vehicle" -msgstr "" +msgstr "Mostrar o registro do odometro para este veículo" #. module: fleet #: help:fleet.vehicle,odometer_unit:0 msgid "Unit of the odometer " -msgstr "" +msgstr "Unidade de medida do odometro " #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Costs Per Month" -msgstr "" +msgstr "Valor da manutenção por mês" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Effective Costs" -msgstr "" +msgstr "Custo efetivo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_8 msgid "Repair and maintenance" -msgstr "" +msgstr "Reparo e manutenção" #. module: fleet #: help:fleet.vehicle.log.contract,purchaser_id:0 msgid "Person to which the contract is signed for" -msgstr "" +msgstr "Pessoa para quem o contrato é assinado" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_contract_act @@ -440,34 +442,46 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo contrato\n" +"

\n" +" Gerencie todos os seus contratos(leasing, seguros, etc) com\n" +" seus custos relativos e serviços. O OpenERP irá te avisar " +"automaticamente\n" +" quando algum contrato necessitá renovação.\n" +"

\n" +" Cada contrato (ex: leasing) pode incluir vários serviços\n" +" (reparação, seguros, manutenção periódica).\n" +"

\n" +" " #. module: fleet #: model:ir.model,name:fleet.model_fleet_service_type msgid "Type of services available on a vehicle" -msgstr "" +msgstr "Tipos de serviços disponíveis para o veículo" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_service_types_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_service_types_menu msgid "Service Types" -msgstr "" +msgstr "Tipos de Serviços" #. module: fleet #: view:board.board:0 msgid "Contracts Costs" -msgstr "" +msgstr "Custos de Contrato" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_services_menu msgid "Vehicles Services Logs" -msgstr "" +msgstr "Registro dos Serviços do Veículo" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "" +msgstr "Registros de combustivel do veículo" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -475,11 +489,13 @@ msgid "" "$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " "$(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " +"$(this).addClass('oe_employee_picture_wide') } });" #. module: fleet #: view:board.board:0 msgid "Vehicles With Alerts" -msgstr "" +msgstr "Veículos com alertas" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_costs_act @@ -493,102 +509,111 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo custo.\n" +"

\n" +" O OpenERP ajuda você a gerenciar os custos de diferentes \n" +" veículos. Custos são criados automaticamente oriundos dos " +"serviços,\n" +" contratos (fixos ou variáveis) e registros de combustíveis.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 msgid "show the fuel logs for this vehicle" -msgstr "" +msgstr "mostrar os registros de combustivel para este veículo" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "" +msgstr "Contratante" #. module: fleet #: field:fleet.vehicle,license_plate:0 msgid "License Plate" -msgstr "" +msgstr "Placa" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "To Close" -msgstr "" +msgstr "Para Fechar" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 msgid "Recurring Cost Frequency" -msgstr "" +msgstr "Frequência dos custos recorrentes" #. module: fleet #: field:fleet.vehicle.log.fuel,inv_ref:0 #: field:fleet.vehicle.log.services,inv_ref:0 msgid "Invoice Reference" -msgstr "" +msgstr "Referência da Fatura" #. module: fleet #: field:fleet.vehicle,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: fleet #: field:fleet.vehicle,location:0 msgid "Location" -msgstr "" +msgstr "Localização" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Costs Per Month" -msgstr "" +msgstr "Custos por Mês" #. module: fleet #: field:fleet.contract.state,name:0 msgid "Contract Status" -msgstr "" +msgstr "Situação do Contrato" #. module: fleet #: field:fleet.vehicle,contract_renewal_total:0 msgid "Total of contracts due or overdue minus one" -msgstr "" +msgstr "Total de contratos vencidos ou a vencer menos um" #. module: fleet #: field:fleet.vehicle.cost,cost_subtype_id:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 msgid "Has Contracts Overdued" -msgstr "" +msgstr "Tem contratos vencidos" #. module: fleet #: field:fleet.vehicle.cost,amount:0 msgid "Total Price" -msgstr "" +msgstr "Preço Total" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 msgid "Heater Core Replacement" -msgstr "" +msgstr "Substituição do aquecedor principal" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_14 msgid "Car Wash" -msgstr "" +msgstr "Lavagem de carro" #. module: fleet #: help:fleet.vehicle,driver_id:0 msgid "Driver of the vehicle" -msgstr "" +msgstr "Motorista do veículo" #. module: fleet #: view:fleet.vehicle:0 msgid "other(s)" -msgstr "" +msgstr "outro(s)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_refueling msgid "Refueling" -msgstr "" +msgstr "Abastecimento" #. module: fleet #: help:fleet.vehicle,message_summary:0 @@ -596,62 +621,65 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contém o resumo da conversação (número de mensagens, ...). Este resumo é " +"gerado diretamente em formato HTML para que possa ser inserido nas visões " +"kanban." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 msgid "A/C Recharge" -msgstr "" +msgstr "A/C Recarga" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel msgid "Fuel log for vehicles" -msgstr "" +msgstr "Registro de combustível dos veículos" #. module: fleet #: view:fleet.vehicle:0 msgid "Engine Options" -msgstr "" +msgstr "Opções de motor" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Costs Per Month" -msgstr "" +msgstr "Custos mensal em combustível" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan msgid "Sedan" -msgstr "" +msgstr "Sedan" #. module: fleet #: field:fleet.vehicle,seats:0 msgid "Seats Number" -msgstr "" +msgstr "Número de assentos" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible msgid "Convertible" -msgstr "" +msgstr "Conversível" #. module: fleet #: model:ir.ui.menu,name:fleet.fleet_configuration msgid "Configuration" -msgstr "" +msgstr "Configuração" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,sum_cost:0 msgid "Indicative Costs Total" -msgstr "" +msgstr "Custos indicativos totais" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_junior msgid "Junior" -msgstr "" +msgstr "Junior" #. module: fleet #: help:fleet.vehicle,model_id:0 msgid "Model of the vehicle" -msgstr "" +msgstr "Modelo do veículo" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_state_act @@ -665,13 +693,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma nova Situação para o Veículo\n" +"

\n" +" Você pode customizar as situações disponíveis para " +"acompanhar a evolução de\n" +" cada veículo. Exemplo: Ativo, em Reparo, Vendido.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 #: field:fleet.vehicle,log_fuel:0 #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Logs" -msgstr "" +msgstr "Registros de combustível" #. module: fleet #: code:addons/fleet/fleet.py:409 @@ -680,43 +716,43 @@ msgstr "" #: code:addons/fleet/fleet.py:420 #, python-format msgid "None" -msgstr "" +msgstr "Nenhum" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs_non_effective #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_indicative_costs msgid "Indicative Costs Analysis" -msgstr "" +msgstr "Análise de custos indicativos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_12 msgid "Brake Inspection" -msgstr "" +msgstr "Inspeção de freio" #. module: fleet #: help:fleet.vehicle,state_id:0 msgid "Current state of the vehicle" -msgstr "" +msgstr "Estado atual do veículo" #. module: fleet #: selection:fleet.vehicle,transmission:0 msgid "Manual" -msgstr "" +msgstr "Manual" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_52 msgid "Wheel Bearing Replacement" -msgstr "" +msgstr "Substituição de rolamentos de roda" #. module: fleet #: help:fleet.vehicle.cost,cost_subtype_id:0 msgid "Cost type purchased with this cost" -msgstr "" +msgstr "Tipo de custo adquirido com este custo" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Gasoline" -msgstr "" +msgstr "Gasolina" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_brand_act @@ -726,57 +762,61 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma nova marca\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 msgid "Contract Start Date" -msgstr "" +msgstr "Data inicio do contrato" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 msgid "Odometer Unit" -msgstr "" +msgstr "Unidade do odometro" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_30 msgid "Intake Manifold Gasket Replacement" -msgstr "" +msgstr "Substituição da Junta coletor de admissão" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Daily" -msgstr "" +msgstr "Diariamente" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_6 msgid "Snow tires" -msgstr "" +msgstr "Pneus" #. module: fleet #: help:fleet.vehicle.cost,date:0 msgid "Date when the cost has been executed" -msgstr "" +msgstr "Data quando o custo foi feito" #. module: fleet #: view:fleet.vehicle.cost:0 #: view:fleet.vehicle.model:0 msgid "Vehicles costs" -msgstr "" +msgstr "Custos dos veiculos" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_services msgid "Services for vehicles" -msgstr "" +msgstr "Serviços para veículos" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Indicative Cost" -msgstr "" +msgstr "Custo indicativo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_26 msgid "Heater Control Valve Replacement" -msgstr "" +msgstr "Substituição da válvula de controle do aquecedor" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -784,43 +824,45 @@ msgid "" "Create a new contract automatically with all the same informations except " "for the date that will start at the end of current contract" msgstr "" +"Criar um novo contrato automaticamente com as mesmas informações excepto a " +"data de inicio que será o fim do contrato atual." #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "Terminated" -msgstr "" +msgstr "Finalizado" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_cost msgid "Cost related to a vehicle" -msgstr "" +msgstr "Custos relacionados ao veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_33 msgid "Other Maintenance" -msgstr "" +msgstr "Outras manutenções" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Superior" #. module: fleet #: field:fleet.vehicle,state_id:0 #: view:fleet.vehicle.state:0 msgid "State" -msgstr "" +msgstr "Estado" #. module: fleet #: field:fleet.vehicle.log.contract,cost_generated:0 msgid "Recurring Cost Amount" -msgstr "" +msgstr "Quantidade de custos recorrentes" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_49 msgid "Transmission Replacement" -msgstr "" +msgstr "Substituição da transmissão" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_fuel_act @@ -835,68 +877,77 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo registro de combustível. \n" +"

\n" +" Aqui você pode adicionar registros de abastecimento para " +"todos os veículos. Você pode\n" +" também filtrar registros para um veículo em particular " +"usando o campo de busca. \n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_11 msgid "Brake Caliper Replacement" -msgstr "" +msgstr "Substituição da pinça de freio" #. module: fleet #: field:fleet.vehicle,odometer:0 msgid "Last Odometer" -msgstr "" +msgstr "Último odometro" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_menu msgid "Vehicle Model" -msgstr "" +msgstr "Modelo do Veículo" #. module: fleet #: field:fleet.vehicle,doors:0 msgid "Doors Number" -msgstr "" +msgstr "Número de portas" #. module: fleet #: help:fleet.vehicle,acquisition_date:0 msgid "Date when the vehicle has been bought" -msgstr "" +msgstr "Data de compra do veículo" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Models" -msgstr "" +msgstr "Modelos" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "amount" -msgstr "" +msgstr "valor" #. module: fleet #: help:fleet.vehicle,fuel_type:0 msgid "Fuel Used by the vehicle" -msgstr "" +msgstr "Combustivel usado pelo veículo" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Set Contract In Progress" -msgstr "" +msgstr "Colocar contrato em andamento" #. module: fleet #: field:fleet.vehicle.cost,odometer_unit:0 #: field:fleet.vehicle.odometer,unit:0 msgid "Unit" -msgstr "" +msgstr "Unidade" #. module: fleet #: field:fleet.vehicle,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um Seguidor" #. module: fleet #: field:fleet.vehicle,horsepower:0 msgid "Horsepower" -msgstr "" +msgstr "Cavalos de potência" #. module: fleet #: field:fleet.vehicle,image:0 @@ -907,38 +958,38 @@ msgstr "" #: field:fleet.vehicle.model,image_small:0 #: field:fleet.vehicle.model.brand,image:0 msgid "Logo" -msgstr "" +msgstr "Logotipo" #. module: fleet #: field:fleet.vehicle,horsepower_tax:0 msgid "Horsepower Taxation" -msgstr "" +msgstr "Tributação por potência" #. module: fleet #: field:fleet.vehicle,log_services:0 #: view:fleet.vehicle.log.services:0 msgid "Services Logs" -msgstr "" +msgstr "Registros de serviço" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 msgid "Thermostat Replacement" -msgstr "" +msgstr "Substituição do termostato" #. module: fleet #: field:fleet.service.type,category:0 msgid "Category" -msgstr "" +msgstr "Categoria" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_fuel_graph msgid "Fuel Costs by Month" -msgstr "" +msgstr "Custos mensal em Combustível" #. module: fleet #: help:fleet.vehicle.model.brand,image:0 @@ -946,135 +997,137 @@ msgid "" "This field holds the image used as logo for the brand, limited to " "1024x1024px." msgstr "" +"Este campo mantém a imagem usada como logo para as marcas, limitado a " +"1024x1024 pixels." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_11 msgid "Management Fee" -msgstr "" +msgstr "Taxa de manutenção." #. module: fleet #: view:fleet.vehicle:0 msgid "All vehicles" -msgstr "" +msgstr "Todos os veículos" #. module: fleet #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Additional Details" -msgstr "" +msgstr "Detalhes adicionais" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_services_graph msgid "Services Costs by Month" -msgstr "" +msgstr "Custos mensais em serviços" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_9 msgid "Assistance" -msgstr "" +msgstr "Assistência" #. module: fleet #: field:fleet.vehicle.log.fuel,price_per_liter:0 msgid "Price Per Liter" -msgstr "" +msgstr "Preço/Litro" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_17 msgid "Door Window Motor/Regulator Replacement" -msgstr "" +msgstr "Motor do vidro da porta/Regulagem/Substituição" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_46 msgid "Tire Service" -msgstr "" +msgstr "Serviços de pneus" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_8 msgid "Ball Joint Replacement" -msgstr "" +msgstr "Substituição de junta" #. module: fleet #: field:fleet.vehicle,fuel_type:0 msgid "Fuel Type" -msgstr "" +msgstr "Tipo de combustível" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_22 msgid "Fuel Injector Replacement" -msgstr "" +msgstr "Substituição do injetor de combustível" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu msgid "Vehicle Status" -msgstr "" +msgstr "Situação do Veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 msgid "Water Pump Replacement" -msgstr "" +msgstr "Substituição da bomba de água" #. module: fleet #: help:fleet.vehicle,location:0 msgid "Location of the vehicle (garage, ...)" -msgstr "" +msgstr "Localização do veículo(garagem, ..)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_28 msgid "Heater Hose Replacement" -msgstr "" +msgstr "Substituição Mangueira de aquecedor" #. module: fleet #: field:fleet.vehicle.log.contract,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_40 msgid "Rotor Replacement" -msgstr "" +msgstr "Substituição do rotor" #. module: fleet #: help:fleet.vehicle.model,brand_id:0 msgid "Brand of the vehicle" -msgstr "" +msgstr "Marca do veículo" #. module: fleet #: help:fleet.vehicle.log.contract,start_date:0 msgid "Date when the coverage of the contract begins" -msgstr "" +msgstr "Data de inicio da cobertura do contrato" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Electric" -msgstr "" +msgstr "Elétrico" #. module: fleet #: field:fleet.vehicle,tag_ids:0 msgid "Tags" -msgstr "" +msgstr "Marcadores" #. module: fleet #: view:fleet.vehicle:0 #: field:fleet.vehicle,log_contracts:0 msgid "Contracts" -msgstr "" +msgstr "Contratos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_13 msgid "Brake Pad(s) Replacement" -msgstr "" +msgstr "Substituição das Pastilhas de freio" #. module: fleet #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Odometer Details" -msgstr "" +msgstr "Detalhes de odometro" #. module: fleet #: field:fleet.vehicle,driver_id:0 msgid "Driver" -msgstr "" +msgstr "Motorista" #. module: fleet #: help:fleet.vehicle.model.brand,image_small:0 @@ -1083,71 +1136,74 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Foto pequena da marca. É automaticamente redimensionada para 64x64px, com a " +"proporção preservada. Use este campo em qualquer lugar que uma imagem " +"pequena é necessária." #. module: fleet #: view:board.board:0 msgid "Fleet Dashboard" -msgstr "" +msgstr "Painel de Frota" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_break msgid "Break" -msgstr "" +msgstr "Freio" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_omnium msgid "Omnium" -msgstr "" +msgstr "Omnium" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Details" -msgstr "" +msgstr "Detalhes dos Serviços" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_15 msgid "Residual value (Excluding VAT)" -msgstr "" +msgstr "Valor residual(excluindo VAT)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_7 msgid "Alternator Replacement" -msgstr "" +msgstr "Substituição do alternador" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_3 msgid "A/C Diagnosis" -msgstr "" +msgstr "A/C diagnósticos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_23 msgid "Fuel Pump Replacement" -msgstr "" +msgstr "Substituição bomba de combustível" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Activation Cost" -msgstr "" +msgstr "Custo de ativação" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Type" -msgstr "" +msgstr "Tipo de Custo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_4 msgid "A/C Evaporator Replacement" -msgstr "" +msgstr "Substituição do evaporador A/C" #. module: fleet #: view:fleet.vehicle:0 msgid "show all the costs for this vehicle" -msgstr "" +msgstr "mostrar todos os custo para este veículo" #. module: fleet #: view:fleet.vehicle.odometer:0 msgid "Odometer Values Per Month" -msgstr "" +msgstr "Valores do odômetro mensais" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act @@ -1160,6 +1216,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo modelo\n" +"

\n" +" Você pode definir vários modelos (ex: A3, A4) para cada " +"marca (Audi).\n" +"

\n" +" " #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_act @@ -1178,21 +1241,35 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo veículo\n" +"

\n" +" Você poderá gerencia sua frota de veículos e manter registro " +"dos\n" +" contratos, serviços, custos fixos e recorrentes, odômetros " +"e\n" +" registro de combustível associado a cada veiculo.\n" +"

\n" +" OpenERP irá lhe avisar quando serviços ou contratos tem de " +"ser \n" +" renovados.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 msgid "Entry into service tax" -msgstr "" +msgstr "Entrada para taxa de serviço" #. module: fleet #: field:fleet.vehicle.log.contract,expiration_date:0 msgid "Contract Expiration Date" -msgstr "" +msgstr "Data de Vencimento do Contrato" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Subtype" -msgstr "" +msgstr "Subtipo custo" #. module: fleet #: model:ir.actions.act_window,help:fleet.open_board_fleet @@ -1212,58 +1289,74 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Painel de frota está vázio\n" +"

\n" +" Para adicionar seu primeiro relatório neste painel, vá " +"para qualquer\n" +" menu, mude para Lista, ou Visualizaçao gráfica e clique " +"'Adicionar ao\n" +" Painel' no opções de busca extendidas.\n" +"

\n" +" Você pode filtrar e agrupar dados antes de inserir no " +"painel\n" +" usando as opções de busca.\n" +"

\n" +"
\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 msgid "Rent (Excluding VAT)" -msgstr "" +msgstr "Aluguel (Excluindo Imposto)" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 msgid "Kilometers" -msgstr "" +msgstr "Quilômetros" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Vehicle Details" -msgstr "" +msgstr "Detalhes do Veículo" #. module: fleet #: selection:fleet.service.type,category:0 #: field:fleet.vehicle.cost,contract_id:0 #: selection:fleet.vehicle.cost,cost_type:0 msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "" +msgstr "Modelo do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 msgid "Battery Replacement" -msgstr "" +msgstr "Substituição da bateria" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,date:0 #: field:fleet.vehicle.odometer,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_menu #: model:ir.ui.menu,name:fleet.fleet_vehicles msgid "Vehicles" -msgstr "" +msgstr "Veículos" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 msgid "Miles" -msgstr "" +msgstr "Milhas" #. module: fleet #: help:fleet.vehicle.log.contract,cost_generated:0 @@ -1271,16 +1364,19 @@ msgid "" "Costs paid at regular intervals, depending on the cost frequency. If the " "cost frequency is set to unique, the cost will be logged at the start date" msgstr "" +"Custos pagos em intervalos regulares, dependendo na frequência do custo. Se " +"a frequência do custo é unica, o custo será registrado apenas na data " +"inicial." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_17 msgid "Emissions" -msgstr "" +msgstr "Emissões" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model msgid "Model of a vehicle" -msgstr "" +msgstr "Modelo do veículo" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs @@ -1298,11 +1394,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" OpenERP ajuda você a gerenciar os custos para seus diferentes " +"veículos.\n" +" Custos são geralmente criados de serviços e contratos, e são " +"mostrados aqui.\n" +"

\n" +"

\n" +" Graças aos diferentes filtros, OpenERP pode apenas imprimir o " +"custo efetivo,\n" +" ordene então por tipo e veículo\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle,car_value:0 msgid "Car Value" -msgstr "" +msgstr "Valor do Carro" #. module: fleet #: model:ir.actions.act_window,name:fleet.open_board_fleet @@ -1311,49 +1419,49 @@ msgstr "" #: model:ir.ui.menu,name:fleet.menu_fleet_reporting #: model:ir.ui.menu,name:fleet.menu_root msgid "Fleet" -msgstr "" +msgstr "Frota" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_14 msgid "Total expenses (Excluding VAT)" -msgstr "" +msgstr "Despesas Totais (Excluindo impostos)" #. module: fleet #: field:fleet.vehicle.cost,odometer_id:0 msgid "Odometer" -msgstr "" +msgstr "Odômetro" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_45 msgid "Tire Replacement" -msgstr "" +msgstr "Troca de Pneus" #. module: fleet #: view:fleet.service.type:0 msgid "Service types" -msgstr "" +msgstr "Tipos de serviço" #. module: fleet #: field:fleet.vehicle.log.fuel,purchaser_id:0 #: field:fleet.vehicle.log.services,purchaser_id:0 msgid "Purchaser" -msgstr "" +msgstr "Comprador" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_3 msgid "Tax roll" -msgstr "" +msgstr "Impostos" #. module: fleet #: view:fleet.vehicle.model:0 #: field:fleet.vehicle.model,vendors:0 msgid "Vendors" -msgstr "" +msgstr "Fornecedores" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_leasing msgid "Leasing" -msgstr "" +msgstr "Leasing" #. module: fleet #: help:fleet.vehicle.model.brand,image_medium:0 @@ -1362,68 +1470,71 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Logo de tamanho médio. É automaticamente redimensionada para 128x128px, " +"preservando as proporções. Use este campo nos formulários e em algumas " +"visualizações kanban." #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Weekly" -msgstr "" +msgstr "Semanalmente" #. module: fleet #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "" +msgstr "Registros no Odômetro" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 msgid "Acquisition Date" -msgstr "" +msgstr "Data de Aquisição" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "" +msgstr "Registros de odômetro do veículo" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 msgid "Category of the cost" -msgstr "" +msgstr "Categoria de custos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_5 #: model:fleet.service.type,name:fleet.type_service_service_7 msgid "Summer tires" -msgstr "" +msgstr "Pneus de verão" #. module: fleet #: field:fleet.vehicle,contract_renewal_due_soon:0 msgid "Has Contracts to renew" -msgstr "" +msgstr "Tem contratos para renovar" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_31 msgid "Oil Change" -msgstr "" +msgstr "Troca de óleo" #. module: fleet #: field:fleet.vehicle.model.brand,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Foto pequena" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model_brand msgid "Brand model of the vehicle" -msgstr "" +msgstr "Marca modelo do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_51 msgid "Wheel Alignment" -msgstr "" +msgstr "Alinhamento de rodas" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_purchased msgid "Purchased" -msgstr "" +msgstr "Comprado" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act @@ -1436,200 +1547,208 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui você pode adicionar vários odômetros para todos os " +"veículos.\n" +" Você também pode mostrar valores do odômetro para um veículo " +"utilizando \n" +" os campos de busca.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.model,brand_id:0 #: view:fleet.vehicle.model.brand:0 msgid "Model Brand" -msgstr "" +msgstr "Marca do modelo" #. module: fleet #: view:fleet.vehicle:0 msgid "General Properties" -msgstr "" +msgstr "Propriedades Gerais" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_21 msgid "Exhaust Manifold Replacement" -msgstr "" +msgstr "Substituição do coletor do escape" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_47 msgid "Transmission Filter Replacement" -msgstr "" +msgstr "Substituição do filtro de transmissão" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_10 msgid "Replacement Vehicle" -msgstr "" +msgstr "Troca de Veículos" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "In Progress" -msgstr "" +msgstr "Em Andamento" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Yearly" -msgstr "" +msgstr "Anualmente" #. module: fleet #: field:fleet.vehicle.model,modelname:0 msgid "Model name" -msgstr "" +msgstr "Nome do modelo" #. module: fleet #: view:board.board:0 #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_costs_graph msgid "Costs by Month" -msgstr "" +msgstr "Custos mensais" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_18 msgid "Touring Assistance" -msgstr "" +msgstr "Assistência em turismo" #. module: fleet #: field:fleet.vehicle,power:0 msgid "Power (kW)" -msgstr "" +msgstr "Potência (kW)" #. module: fleet #: code:addons/fleet/fleet.py:418 #, python-format msgid "State: from '%s' to '%s'" -msgstr "" +msgstr "Situação: de '%s' até '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_2 msgid "A/C Condenser Replacement" -msgstr "" +msgstr "Substituição do condensador A/C" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_19 msgid "Engine Coolant Replacement" -msgstr "" +msgstr "Substituição do resfriador do motor" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Details" -msgstr "" +msgstr "Detalhes de Custo" #. module: fleet #: code:addons/fleet/fleet.py:410 #, python-format msgid "Model: from '%s' to '%s'" -msgstr "" +msgstr "Modelo: de '%s' até '%s'" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 msgid "Other" -msgstr "" +msgstr "Outros" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract details" -msgstr "" +msgstr "Detalhes do contrato" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_leasing msgid "Employee Car" -msgstr "" +msgstr "Carro de Funcionário" #. module: fleet #: field:fleet.vehicle.cost,auto_generated:0 msgid "Automatically Generated" -msgstr "" +msgstr "Gerado automaticamente" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 msgid "Fuel" -msgstr "" +msgstr "Combustível" #. module: fleet #: sql_constraint:fleet.vehicle.state:0 msgid "State name already exists" -msgstr "" +msgstr "Nome do Estado já existe" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_37 msgid "Radiator Repair" -msgstr "" +msgstr "Reparo de radiador" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_contract msgid "Contract information on a vehicle" -msgstr "" +msgstr "Informação de contratos do veículo" #. module: fleet #: field:fleet.vehicle.log.contract,days_left:0 msgid "Warning Date" -msgstr "" +msgstr "Data de aviso" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_19 msgid "Residual value in %" -msgstr "" +msgstr "Valor residual em %" #. module: fleet #: view:fleet.vehicle:0 msgid "Additional Properties" -msgstr "" +msgstr "Propriedades adicionais" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state msgid "fleet.vehicle.state" -msgstr "" +msgstr "fleet.vehicle.state" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract Costs Per Month" -msgstr "" +msgstr "Custos mensais em contratos" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_contract_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_contract_menu msgid "Vehicles Contracts" -msgstr "" +msgstr "Contratos de veículos" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_48 msgid "Transmission Fluid Replacement" -msgstr "" +msgstr "Substituição do fluido de transmissão" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 msgid "Brand Name" -msgstr "" +msgstr "Nome da Marca" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "" +msgstr "Substituição da Direção Hidáulica" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 msgid "Contract attached to this cost" -msgstr "" +msgstr "Contratos relacionados a este custo" #. module: fleet #: code:addons/fleet/fleet.py:397 #, python-format msgid "Vehicle %s has been added to the fleet!" -msgstr "" +msgstr "Veículo %s foi adicionado a frota" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Price" -msgstr "" +msgstr "Preço" #. module: fleet #: field:fleet.vehicle.cost,odometer:0 #: field:fleet.vehicle.odometer,value:0 msgid "Odometer Value" -msgstr "" +msgstr "Valor Odômetro" #. module: fleet #: view:fleet.vehicle:0 @@ -1637,14 +1756,14 @@ msgstr "" #: field:fleet.vehicle.cost,vehicle_id:0 #: field:fleet.vehicle.odometer,vehicle_id:0 msgid "Vehicle" -msgstr "" +msgstr "Veículo" #. module: fleet #: field:fleet.vehicle.cost,cost_ids:0 #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.services:0 msgid "Included Services" -msgstr "" +msgstr "Serviços inclusos" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_vehicle_kanban @@ -1656,53 +1775,60 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aqui são mostrados os veículo que precisam que um ou mais " +"contratos sejam renovados. Se você ver esta mensagem então nenhum contrato " +"precisa ser renovado.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_15 msgid "Catalytic Converter Replacement" -msgstr "" +msgstr "Substituição do catalisador" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_25 msgid "Heater Blower Motor Replacement" -msgstr "" +msgstr "Substituição da ventoinha de aquecimento do motor" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu msgid "Vehicles Odometer" -msgstr "" +msgstr "Odômetro do Veículo" #. module: fleet #: help:fleet.vehicle.log.contract,notes:0 msgid "Write here all supplementary informations relative to this contract" msgstr "" +"Escreva aqui todas as informações adicionais referentes a este contrato" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_29 msgid "Ignition Coil Replacement" -msgstr "" +msgstr "Substituição da bobina de ignição" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_16 msgid "Options" -msgstr "" +msgstr "Opções" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_repairing msgid "Repairing" -msgstr "" +msgstr "Reparando" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_costs msgid "Costs Analysis" -msgstr "" +msgstr "Análise de custo" #. module: fleet #: field:fleet.vehicle.log.contract,ins_ref:0 msgid "Contract Reference" -msgstr "" +msgstr "Referência do Contrato" #. module: fleet #: field:fleet.service.type,name:0 @@ -1714,27 +1840,27 @@ msgstr "" #: field:fleet.vehicle.state,name:0 #: field:fleet.vehicle.tag,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: fleet #: help:fleet.vehicle,doors:0 msgid "Number of doors of the vehicle" -msgstr "" +msgstr "Número de portas do veículo" #. module: fleet #: field:fleet.vehicle,transmission:0 msgid "Transmission" -msgstr "" +msgstr "Transmissão" #. module: fleet #: field:fleet.vehicle,vin_sn:0 msgid "Chassis Number" -msgstr "" +msgstr "Número do chassis" #. module: fleet #: help:fleet.vehicle,color:0 msgid "Color of the vehicle" -msgstr "" +msgstr "Cor do veículo" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_services_act @@ -1748,78 +1874,88 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique aqui para criar um novo registro de Serviço\n" +"

\n" +" OpenERP ajuda você a manter registro de todos os serviços " +"feitos\n" +" em seu veículo. Serviços podem ser de vários tipos: " +"ocasionais\n" +" reparos, manutenções periódicas, etc.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle,co2:0 msgid "CO2 Emissions" -msgstr "" +msgstr "Emissões de CO2" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract logs" -msgstr "" +msgstr "Registro de custos" #. module: fleet #: view:fleet.vehicle:0 msgid "Costs" -msgstr "" +msgstr "Custos" #. module: fleet #: field:fleet.vehicle,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph msgid "Contracts Costs by Month" -msgstr "" +msgstr "Custos mensais com contrato" #. module: fleet #: field:fleet.vehicle,model_id:0 #: view:fleet.vehicle.model:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_41 msgid "Spark Plug Replacement" -msgstr "" +msgstr "Substituição de vela de ignição" #. module: fleet #: help:fleet.vehicle,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle msgid "Information on a vehicle" -msgstr "" +msgstr "Informações do veículo" #. module: fleet #: help:fleet.vehicle,co2:0 msgid "CO2 emissions of the vehicle" -msgstr "" +msgstr "Emissões de CO2 do veículo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_53 msgid "Windshield Wiper(s) Replacement" -msgstr "" +msgstr "Substituição do limpador de para-brisa" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,generated_cost_ids:0 msgid "Generated Costs" -msgstr "" +msgstr "Custos Gerados" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seqüência" #. module: fleet #: field:fleet.vehicle,color:0 msgid "Color" -msgstr "" +msgstr "Cor" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_service_types_act @@ -1832,81 +1968,90 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um novo tipo de Serviço\n" +"

\n" +" Cada tipo de serviço pode ser usado em contratos, ou apenas " +"serviços ou ambos.\n" +"

\n" +" " #. module: fleet #: view:board.board:0 msgid "Services Costs" -msgstr "" +msgstr "Custos em Serviços" #. module: fleet #: code:addons/fleet/fleet.py:47 #, python-format msgid "Emptying the odometer value of a vehicle is not allowed." -msgstr "" +msgstr "Zerar o valor do odômetro de um veículo não é permitido." #. module: fleet #: help:fleet.vehicle,seats:0 msgid "Number of seats of the vehicle" -msgstr "" +msgstr "Numero de assentos do veículo" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "Administrador" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Cost" -msgstr "" +msgstr "Custo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_39 msgid "Rotate Tires" -msgstr "" +msgstr "Rodizio de pneus" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_42 msgid "Starter Replacement" -msgstr "" +msgstr "Substituição de motor de partida" #. module: fleet #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,year:0 msgid "Year" -msgstr "" +msgstr "Ano" #. module: fleet #: help:fleet.vehicle,license_plate:0 msgid "License plate number of the vehicle (ie: plate number for a car)" -msgstr "" +msgstr "Número da placa do veículo" #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state msgid "Contains the different possible status of a leasing contract" -msgstr "" +msgstr "Contém os possíveis valores de um contrato leasing" #. module: fleet #: view:fleet.vehicle:0 msgid "show the contract for this vehicle" -msgstr "" +msgstr "mostra os contratos para este veículo" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: fleet #: help:fleet.service.type,category:0 msgid "" "Choose wheter the service refer to contracts, vehicle services or both" msgstr "" +"Escolha se os serviços referem-se aos contratos, serviços de veículos, ou " +"ambos." #. module: fleet #: help:fleet.vehicle.cost,cost_type:0 msgid "For internal purpose only" -msgstr "" +msgstr "Para propósitos internos apenas" #. module: fleet #: help:fleet.vehicle.state,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Usado para ordenar os estágios das notas" diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index d6b89bb967c..d2f0a00828d 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_account/i18n/sl.po @@ -8,19 +8,19 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 12:16+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: google_base_account #: field:res.users,gmail_user:0 msgid "Username" -msgstr "" +msgstr "Uporabniško ime" #. module: google_base_account #: model:ir.actions.act_window,name:google_base_account.act_google_login_form @@ -36,12 +36,12 @@ msgstr "" #. module: google_base_account #: model:ir.model,name:google_base_account.model_res_users msgid "Users" -msgstr "" +msgstr "Uporabniki" #. module: google_base_account #: view:google.login:0 msgid "or" -msgstr "" +msgstr "ali" #. module: google_base_account #: view:google.login:0 @@ -57,17 +57,17 @@ msgstr "" #: code:addons/google_base_account/wizard/google_login.py:77 #, python-format msgid "Error!" -msgstr "" +msgstr "Napaka!" #. module: google_base_account #: view:res.users:0 msgid "Google Account" -msgstr "" +msgstr "Google Račun" #. module: google_base_account #: view:res.users:0 msgid "Synchronization" -msgstr "" +msgstr "Usklajevanje" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:77 @@ -91,7 +91,7 @@ msgstr "" #. module: google_base_account #: view:google.login:0 msgid "Cancel" -msgstr "" +msgstr "Prekliči" #. module: google_base_account #: field:google.login,user:0 @@ -101,9 +101,9 @@ msgstr "" #. module: google_base_account #: field:res.users,gmail_password:0 msgid "Password" -msgstr "" +msgstr "Geslo" #. module: google_base_account #: view:google.login:0 msgid "_Login" -msgstr "" +msgstr "_Prijava" diff --git a/addons/google_docs/i18n/ro.po b/addons/google_docs/i18n/ro.po new file mode 100644 index 00000000000..88f18c66bf1 --- /dev/null +++ b/addons/google_docs/i18n/ro.po @@ -0,0 +1,226 @@ +# Romanian 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-01-27 09:37+0000\n" +"Last-Translator: Fekete Mihai \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:139 +#, python-format +msgid "Key Error!" +msgstr "Eroare Cheie!" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`" +msgstr "" +"pentru un document de prezentare (slide show) cu url-ul " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, ID-ul este `prezentare:123456789`" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`" +msgstr "" +"pentru un document text cu url-ul " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, ID-ul " +"este `document:123456789`" + +#. module: google_docs +#: field:google.docs.config,gdocs_resource_id:0 +msgid "Google Resource ID to Use as Template" +msgstr "ID Resurse Google pentru a fi folosite ca Sablon" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`" +msgstr "" +"pentru un document desen cu url-ul " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, ID-ul " +"este`desene:123456789`" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/xml/gdocs.xml:6 +#, python-format +msgid "Add Google Doc..." +msgstr "Adauga Document Google..." + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL:" +msgstr "" +"Acesta este id-ul documentului sablon, pe partea google. Il puteti gasi cu " +"ajutorul URL-ului:" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_google_docs_config +msgid "Google Docs templates config" +msgstr "configurarea sabloanelor documentelor Google" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:25 +#, python-format +msgid "" +"The user google credentials are not set yet. Contact your administrator for " +"help." +msgstr "" +"Acreditarile utilizatorului google nu sunt inca configurate. Contactati " +"administratorul pentru ajutor." + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`" +msgstr "" +"pentru un document cu tabele cu url-ul: " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"ID-ul este `tabele:123456789`" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:101 +#, python-format +msgid "" +"Your resource id is not correct. You can find the id in the google docs URL." +msgstr "" +"Id-ul resursei dumneavoastra nu este corect. Puteti gasi id-ul in URL " +"documente google." + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:125 +#, python-format +msgid "Creating google docs may only be done by one at a time." +msgstr "Crearea de documente google poate fi facuta numai pe rand." + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:56 +#: code:addons/google_docs/google_docs.py:101 +#: code:addons/google_docs/google_docs.py:125 +#, python-format +msgid "Google Docs Error!" +msgstr "Eroare Documente Google!" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:56 +#, python-format +msgid "Check your google configuration in Users/Users/Synchronization tab." +msgstr "" +"Verificati configurarea google in tabul Utilizatori/Utilizatori/Sincronizare." + +#. module: google_docs +#: model:ir.ui.menu,name:google_docs.menu_gdocs_config +msgid "Google Docs configuration" +msgstr "Configurarea Documentelor Google" + +#. module: google_docs +#: model:ir.actions.act_window,name:google_docs.action_google_docs_users_config +#: model:ir.ui.menu,name:google_docs.menu_gdocs_model_config +msgid "Models configuration" +msgstr "Configurare modele" + +#. module: google_docs +#: field:google.docs.config,model_id:0 +msgid "Model" +msgstr "Model" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:28 +#, python-format +msgid "User Google credentials are not yet set." +msgstr "Acreditarile utilizatorului Google nu sunt inca configurate." + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:139 +#, python-format +msgid "Your Google Doc Name Pattern's key does not found in object." +msgstr "" +"Cheia modelului numelui documentului Google nu a fost gasita in obiect." + +#. module: google_docs +#: help:google.docs.config,name_template:0 +msgid "" +"Choose how the new google docs will be named, on google side. Eg. " +"gdoc_%(field_name)s" +msgstr "" +"Alegeti modul in care vor fi numite documentele google, pe partea google. De " +"exemplu gdoc_%(nume_camp)s" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "Google Docs Configuration" +msgstr "Configurarea Documentelor Google" + +#. module: google_docs +#: help:google.docs.config,gdocs_resource_id:0 +msgid "" +"\n" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL: \n" +"*for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`\n" +"*for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`\n" +"*for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`\n" +"*for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`\n" +"...\n" +msgstr "" +"\n" +"Acesta este id-ul documentului tipar, pe partea google. Il puteti gasi cu " +"ajutorul URL-ului: \n" +"*pentru un document text cu url-ul " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, ID-ul " +"este `document:123456789`\n" +"*pentru un document cu tabele cu url-ul " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"ID-ul este `spreadsheet:123456789`\n" +"*pentru un document prezentare (slide show) cu url-ul " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, ID-ul este `presentation:123456789`\n" +"*pentru un document cu desene cu url-ul " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, ID-ul " +"este `drawings:123456789`\n" +"...\n" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment (ir.atasament)" + +#. module: google_docs +#: field:google.docs.config,name_template:0 +msgid "Google Doc Name Pattern" +msgstr "Tiparul Numelui Documentului Google" diff --git a/addons/google_docs/i18n/sl.po b/addons/google_docs/i18n/sl.po new file mode 100644 index 00000000000..67f5549a066 --- /dev/null +++ b/addons/google_docs/i18n/sl.po @@ -0,0 +1,188 @@ +# Slovenian 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-01-26 12:19+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:139 +#, python-format +msgid "Key Error!" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`" +msgstr "" + +#. module: google_docs +#: field:google.docs.config,gdocs_resource_id:0 +msgid "Google Resource ID to Use as Template" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`" +msgstr "" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/xml/gdocs.xml:6 +#, python-format +msgid "Add Google Doc..." +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL:" +msgstr "" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_google_docs_config +msgid "Google Docs templates config" +msgstr "" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:25 +#, python-format +msgid "" +"The user google credentials are not set yet. Contact your administrator for " +"help." +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`" +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:101 +#, python-format +msgid "" +"Your resource id is not correct. You can find the id in the google docs URL." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:125 +#, python-format +msgid "Creating google docs may only be done by one at a time." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:56 +#: code:addons/google_docs/google_docs.py:101 +#: code:addons/google_docs/google_docs.py:125 +#, python-format +msgid "Google Docs Error!" +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:56 +#, python-format +msgid "Check your google configuration in Users/Users/Synchronization tab." +msgstr "" + +#. module: google_docs +#: model:ir.ui.menu,name:google_docs.menu_gdocs_config +msgid "Google Docs configuration" +msgstr "" + +#. module: google_docs +#: model:ir.actions.act_window,name:google_docs.action_google_docs_users_config +#: model:ir.ui.menu,name:google_docs.menu_gdocs_model_config +msgid "Models configuration" +msgstr "" + +#. module: google_docs +#: field:google.docs.config,model_id:0 +msgid "Model" +msgstr "Model" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:28 +#, python-format +msgid "User Google credentials are not yet set." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:139 +#, python-format +msgid "Your Google Doc Name Pattern's key does not found in object." +msgstr "" + +#. module: google_docs +#: help:google.docs.config,name_template:0 +msgid "" +"Choose how the new google docs will be named, on google side. Eg. " +"gdoc_%(field_name)s" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "Google Docs Configuration" +msgstr "" + +#. module: google_docs +#: help:google.docs.config,gdocs_resource_id:0 +msgid "" +"\n" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL: \n" +"*for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`\n" +"*for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`\n" +"*for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`\n" +"*for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`\n" +"...\n" +msgstr "" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: google_docs +#: field:google.docs.config,name_template:0 +msgid "Google Doc Name Pattern" +msgstr "" diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index a046fc76a56..90ebd74ec48 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.po @@ -8,15 +8,14 @@ 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-01-06 20:46+0000\n" -"Last-Translator: Thorsten Vocks (OpenBig.org) \n" +"PO-Revision-Date: 2013-01-28 17:40+0000\n" +"Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -103,7 +102,7 @@ msgstr "Abteilung" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "Betriebliche Email" +msgstr "E-Mail, geschäftlich" #. module: hr #: help:hr.employee,image:0 @@ -249,7 +248,7 @@ msgstr "Foto mittlerer Größe" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "Identifiaktionsnr." +msgstr "Personalnummer" #. module: hr #: selection:hr.employee,gender:0 @@ -264,7 +263,7 @@ msgstr "Anwesenheit" #. module: hr #: field:hr.employee,work_phone:0 msgid "Work Phone" -msgstr "Telefon Firma" +msgstr "Telefon (geschäftlich)" #. module: hr #: field:hr.employee.category,child_ids:0 @@ -501,7 +500,7 @@ msgstr "Bei Aktivierung installieren Sie hr_contract." #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "Benutzerbezug" +msgstr "Verknüpfter Benutzer" #. module: hr #: view:hr.config.settings:0 @@ -613,7 +612,7 @@ msgstr "Installieren Sie die Personalabrechnung für Ihr Land" #. module: hr #: field:hr.employee,bank_account_id:0 msgid "Bank Account Number" -msgstr "Bankkontonummer" +msgstr "Bankverbindung" #. module: hr #: view:hr.department:0 @@ -676,7 +675,7 @@ msgstr "Fehler ! Sie können keine rekursiven Abteilungen anlegen." #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" -msgstr "Arbeitgeberanschrift" +msgstr "Arbeitgeber" #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index 8504e881243..00b08190bcc 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-01 18:11+0000\n" +"PO-Revision-Date: 2013-01-24 21:41+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -430,6 +430,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuwe vacature aan te maken..\n" +"

\n" +" Vacatures worden gebruikt om functies te definiëren met hun " +"functie-eisen.\n" +" U kunt bijhouden hoeveel werknemers u heeft per baan\n" +" en hoeveel u er in de toekomst verwacht. \n" +"

\n" +" U kunt ook een enquête koppelen aan een baan die in het \n" +" wervingsproces wordt gebruikt om de kandidaten voor deze\n" +" baan te evalueren.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -633,6 +646,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuwe werknemer aan te maken.\n" +"

\n" +" Met slechts een snelle blik op het OpenERP werknemer " +"formulier kunt\n" +"                 u eenvoudig alle informatie vinden die u nodig hebt voor " +"elke persoon;\n" +"                 contactgegevens, functie, beschikbaarheid, enz.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -697,6 +720,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een afdeling aan te maken.\n" +"

\n" +" OpenERP's afdelingsstructuur wordt gebruikt om alle " +"documenten\n" +" te beheren die gerelateerd zijn aan werknemers per afdeling: " +"\n" +" declaraties en urenstaten, verlof, werving etc.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 @@ -722,6 +755,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een afdeling aan te maken.\n" +"

\n" +" OpenERP's afdelingsstructuur wordt gebruikt om alle " +"documenten\n" +" te beheren die gerelateerd zijn aan werknemers per afdeling: " +"\n" +" declaraties en urenstaten, verlof, werving etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -799,7 +842,7 @@ msgstr "Dit installeert de module hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "Vastleggen van contracten per werknemer" #. module: hr #: view:hr.department:0 @@ -941,6 +984,22 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Personeelsbeheer dashboard is leeg.\n" +"

\n" +" Om uw erste rapport toe te voegen in dit dashboard, " +"kunt u gaan naar elk\n" +"                     menu en overschakelen naar de lijst of grafiek " +"weergeven en klik op 'Toevoegen aan\n" +"                     Dashboard ' in het uitgebreide zoekopties.\n" +"                   \n" +"                     U kunt filteren en groeperen van gegevens voordat u " +"deze in de\n" +"                     dashboard invoegt met behulp van de zoekopties.\n" +"

\n" +"
\n" +" " #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index 4c9a82de279..c382ef982ff 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 13:30+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:43+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -25,7 +25,7 @@ msgstr "Utilizator OpenERP" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "Permite validarea fiselor de pontaj de catre manageri" #. module: hr #: field:hr.job,requirements:0 @@ -59,11 +59,14 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Fotografie de dimensiuni medii a angajatului. Este redimensionata automat ca " +"o imagine 128x128px, cu raportul aspect pastrat. Folositi acest camp in " +"vizualizarile formularelor sau in unele vizualizari kanban." #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Tineti evidenta orelor" #. module: hr #: view:hr.employee:0 @@ -79,12 +82,12 @@ msgstr "Creati-va Departamentele" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "Numarul de angajati care ocupa in prezent aceasta functie." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "Organizeaza evaluarea periodica a angajatilor" #. module: hr #: view:hr.department:0 @@ -107,11 +110,13 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Acest camp contine imaginea folosita drept fotografie a angajatului, " +"limitata la dimensiunea de 1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Acesta instaleaza modulul hr_concedii." #. module: hr #: view:hr.job:0 @@ -126,7 +131,7 @@ msgstr "In recrutare" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: hr #: field:hr.department,company_id:0 @@ -144,33 +149,33 @@ msgstr "Asteptat in recrutare" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "Referitor la angajati" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Eroare! Nu puteti crea Categorii recursive." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Acesta instaleaza modulul hr_recrutari." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Data nasterii" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Etichete Angajat" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "Lanseaza Recrutarea" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 @@ -195,22 +200,22 @@ msgstr "Casatorit(a)" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Managementul Talentelor" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Acesta instaleaza modulul hr_fisa_de_pontaj." #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "Mobil:" #. module: hr #: view:hr.employee:0 @@ -220,7 +225,7 @@ msgstr "Poziție" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: hr #: field:hr.employee,color:0 @@ -239,7 +244,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Fotografie de dimensiune medie" #. module: hr #: field:hr.employee,identification_id:0 @@ -280,7 +285,7 @@ msgstr "Locatia biroului" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: hr #: view:hr.employee:0 @@ -301,6 +306,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Fotografie de dimnesiune mica a angajatului. Este redimensionata automat " +"drept o imagine de 64x64px, cu raportul aspectului pastrat. Folositi acest " +"camp oriunde este nevoie de o imagine mica." #. module: hr #: field:hr.employee,birthday:0 @@ -310,12 +318,12 @@ msgstr "Data nasterii" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Numarul angajatilor noi pe care planuiti sa ii recrutati." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Deschide Meniul HR" #. module: hr #: help:hr.job,message_summary:0 @@ -323,6 +331,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -330,6 +340,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"Acesta instaleaza modulul cont_analitic_analiza, care va instala si " +"managementul vanzarilor." #. module: hr #: view:board.board:0 @@ -346,7 +358,7 @@ msgstr "Loc de munca" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Numarul Actual de Angajati" #. module: hr #: field:hr.department,member_ids:0 @@ -366,12 +378,12 @@ msgstr "Formular si structura angajati" #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "Gestioneaza cheltuielile angajatilor" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "Tel:" #. module: hr #: selection:hr.employee,marital:0 @@ -417,6 +429,22 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a defini o noua functie.\n" +"

\n" +" Functiile sunt folosite pentru a defini posturile si " +"cerintele lor.\n" +" Puteti tine evidenta numarului de angajati oe care ii aveti " +"pentru fiecare functie\n" +" si sa urmariti evolutia in functie de ceea ce ati planuit\n" +" pentru viitor.\n" +"

\n" +" Puteti atasa un sondaj la o functie. Va fi folosit in\n" +" procesul de recrutare pentru a evalua candidatii pentru " +"acest\n" +" post.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -429,26 +457,28 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Acesta instaleaza modulul hr_evaluare." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Eroare! Nu puteti crea o ierarhie recursiva a Angajatilor." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "Acesta instaleaza modulul hr_prezenta." #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Fotografie de dimensiuni mici" #. module: hr #: view:hr.employee.category:0 @@ -459,12 +489,12 @@ msgstr "Categorie aAgajat" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Etichete" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "Acesta instaleaza modulul hr_contact." #. module: hr #: view:hr.employee:0 @@ -474,7 +504,7 @@ msgstr "Utilizator asociat" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr #: field:hr.employee.category,name:0 @@ -484,12 +514,12 @@ msgstr "Categorie" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "Opreste Recrutarea" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Instaleaza caracteristica prezentelor" #. module: hr #: help:hr.employee,bank_account_id:0 @@ -514,7 +544,7 @@ msgstr "Informatii de contact" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Gestioneaza concediile, liberele si cererile de alocatie" #. module: hr #: field:hr.department,child_ids:0 @@ -541,12 +571,12 @@ msgstr "Contract angajat" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "Contracte" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: hr #: field:hr.employee,ssnid:0 @@ -556,12 +586,12 @@ msgstr "CNP" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "Gestioneaza procesul de recrutare" #. module: hr #: view:hr.employee:0 @@ -571,12 +601,12 @@ msgstr "Activ(a)" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "Managementul Resurselor Umane" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "Instaleaza salarizarea pentru tara dumneavoastra" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -591,7 +621,7 @@ msgstr "Companii" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -616,21 +646,31 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a adauga un angajat nou.\n" +"

\n" +" Cu doar o privire rapida la ecranul angajatului OpenERP, " +"puteti\n" +" sa gasiti cu usurinta toate informatiile de care aveti " +"nevoie pentru fiecare persoana;\n" +" date de contact, functia ocupata, disponibilitate, etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "Setari HR" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Cetatenie & Alte Informatii" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "Eroare! Nu puteti crea departamente recursive." #. module: hr #: field:hr.employee,address_id:0 @@ -640,7 +680,7 @@ msgstr "Adresa de la serviciu" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Informatii Publice" #. module: hr #: field:hr.employee,marital:0 @@ -655,7 +695,7 @@ msgstr "ir.actiuni.act_fereastra" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "Cea mai recenta Conexiune" #. module: hr #: field:hr.employee,image:0 @@ -665,7 +705,7 @@ msgstr "Poza" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Anuleaza" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -680,17 +720,27 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea un departament.\n" +"

\n" +" Structura departamentelor OpenERP este folosita pentru a " +"gestiona toate documentele\n" +" legate de angajati pe departamente: cheltuieli, fise de " +"pontaj,\n" +" libere si concedii, recrutari, etc.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Acesta instaleaza modulul hr_fisa_de_pontaj." #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." -msgstr "" +msgstr "Numarul prevazut de angajati pentru acest post dupa noua recrutare." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -705,6 +755,16 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a defini un departament nou.\n" +"

\n" +" Structura departamentelor dumneaovastra este folosita pentru " +"a gestiona toate documentele\n" +" legate de angajati pe departamente: cheltuieli si foi de " +"prezenta,\n" +" zile libere si concedii, recrutari, etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -729,13 +789,15 @@ msgstr "Mobil serviciu" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Recrutare in Desfasurare" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" +"Permite facturarea pe baza fiselor de pontaj (va fi instalata aplicatia " +"vanzari)" #. module: hr #: view:hr.employee.category:0 @@ -750,7 +812,7 @@ msgstr "Adresa de acasa" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "" +msgstr "Gestioneaza fisele de pontaj" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules @@ -775,12 +837,12 @@ msgstr "In pozitie" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "Acesta instaleaza modulul hr_salarizare." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "Inregistrati contractele pentru fiecare angajat" #. module: hr #: view:hr.department:0 @@ -795,7 +857,7 @@ msgstr "Nationalitate" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "Caracterisitici suplimentare" #. module: hr #: field:hr.employee,notes:0 @@ -805,7 +867,7 @@ msgstr "Note" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Ierarhie subordonata" #. module: hr #: field:hr.employee,resource_id:0 @@ -848,23 +910,23 @@ msgstr "Nume departament" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "Rapoarte" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "Gestioneaza salarizarea" #. module: hr #: view:hr.config.settings:0 #: model:ir.actions.act_window,name:hr.action_human_resources_configuration msgid "Configure Human Resources" -msgstr "" +msgstr "Configureaza Resursele Umane" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "Nici o Recrutare" #. module: hr #: help:hr.employee,ssnid:0 @@ -884,7 +946,7 @@ msgstr "Autentificare" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Total Angajati Estimati" #. module: hr #: help:hr.job,state:0 @@ -892,11 +954,13 @@ msgid "" "By default 'In position', set it to 'In Recruitment' if recruitment process " "is going on for this job position." msgstr "" +"'In pozitie' implicit, setati pe 'In Recrutare' daca procesul de recrutare " +"continua pentru acest post." #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "Utilizatori" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job @@ -922,6 +986,22 @@ msgid "" " \n" " " msgstr "" +"\n" +"

\n" +" Tabloul de bord Resurse Umane este gol.\n" +"

\n" +" Pentru a adauga primul raport in acest tablou de bord, " +"mergeti in orice\n" +" meniu, schimbati pe vizualizare lista sau grafic, si " +"faceti click pe 'Adauga in\n" +" Tabloul de bord' in optiunile de cautare extinse.\n" +"

\n" +" Puteti filtra si grupa datele inainte de a le introduce " +"in\n" +" tabloul de bord folosind optiunile de cautare.\n" +"

\n" +" \n" +" " #. module: hr #: view:hr.employee:0 @@ -937,12 +1017,12 @@ msgstr "Numele functiei trebuie sa fie unic per companie!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Acesta instaleaza modulul hr_cheltuieli." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.setari" #. module: hr #: field:hr.department,manager_id:0 @@ -964,4 +1044,4 @@ msgstr "Subordonati" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Aplica" diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index 8f6a40433f4..e70d2b63cb4 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 18:09+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -30,7 +30,7 @@ msgstr "Cautare Prezenta RU" #. module: hr_attendance #: field:hr.employee,last_sign:0 msgid "Last Sign" -msgstr "" +msgstr "Ultima Inregistrare" #. module: hr_attendance #: view:hr.attendance:0 @@ -44,12 +44,14 @@ msgstr "Prezenta" #: code:addons/hr_attendance/static/src/js/attendance.js:34 #, python-format msgid "Last sign in: %s,
%s.
Click to sign out." -msgstr "" +msgstr "Ultima inregistrare: %s,
%s.
Click pentru iesire." #. module: hr_attendance #: constraint:hr.attendance:0 msgid "Error ! Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" msgstr "" +"Eroare ! Semnarea la intrare (resp. Semnarea la iesire) trebuie sa urmeze " +"Semnarea la iesire (resp. Semnarea la intrare)" #. module: hr_attendance #: help:hr.action.reason,name:0 @@ -73,7 +75,7 @@ msgstr "Tipariti Raportul Lunar de Prezenta" #: code:addons/hr_attendance/report/timesheet.py:120 #, python-format msgid "Attendances by Week" -msgstr "" +msgstr "Prezenta pe Saptamani" #. module: hr_attendance #: selection:hr.action.reason,action_type:0 @@ -98,7 +100,7 @@ msgstr "Octombrie" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "Acces Prezenta" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 @@ -112,7 +114,7 @@ msgstr "Iesire" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No records are found for your selection!" -msgstr "" +msgstr "Nu au fost gasite inregistrari pentru selectia dumneavoastra!" #. module: hr_attendance #: view:hr.attendance.error:0 @@ -178,7 +180,7 @@ msgstr "Atentionare" #. module: hr_attendance #: help:hr.config.settings,group_hr_attendance:0 msgid "Allocates attendance group to all users." -msgstr "" +msgstr "Aloca grupuri de prezenta tuturor utilizatorilor." #. module: hr_attendance #: view:hr.attendance:0 @@ -194,7 +196,7 @@ msgstr "Iunie" #: code:addons/hr_attendance/report/attendance_by_month.py:190 #, python-format msgid "Attendances by Month" -msgstr "" +msgstr "Prezenta pe Luni" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.action_hr_attendance_week @@ -251,7 +253,7 @@ msgstr "Data" #. module: hr_attendance #: field:hr.config.settings,group_hr_attendance:0 msgid "Track attendances for all employees" -msgstr "" +msgstr "Urmareste prezenta pentru toti angajatii" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -335,7 +337,7 @@ msgstr "Ianuarie" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No Data Available !" -msgstr "" +msgstr "Nu exista Date Disponibile !" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -409,14 +411,14 @@ msgstr "Tipariti Raportul Saptamanal de Prezenta" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "ru.config.setari" #. module: hr_attendance #. openerp-web #: code:addons/hr_attendance/static/src/js/attendance.js:36 #, python-format msgid "Click to Sign In at %s." -msgstr "" +msgstr "Faceti click pentru a Semna de intrare la %s." #. module: hr_attendance #: field:hr.action.reason,action_type:0 @@ -435,6 +437,8 @@ msgid "" "You tried to %s with a date anterior to another event !\n" "Try to contact the HR Manager to correct attendances." msgstr "" +"Ati incercat sa %s cu o data anterioara unui alt eveniment !\n" +"Incercati sa contactati Managerul Resurse Umane pentru a corecta prezenta." #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -466,7 +470,7 @@ msgstr "" #: view:hr.attendance.month:0 #: view:hr.attendance.week:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr_attendance #: help:hr.attendance,action_desc:0 diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index eb28e4c7114..8121b55fd6d 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/i18n/nl.po @@ -8,14 +8,14 @@ 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: 2012-12-25 20:52+0000\n" +"PO-Revision-Date: 2013-01-24 21:48+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -98,7 +98,7 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Beoordelingen" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -402,6 +402,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuw beoordelingsplan aan te maken.\n" +"

\n" +" Het is mogelijk om beoordelingsplannen te definieren (bijv.: " +"eerste gesprek\n" +" na 6 maanden, daarna ieder jaar). Vervolgens kan iedere " +"werknemer worden\n" +" gekoppeld aan een beoordelingsplan, zo dat OpenERP " +"automatisch\n" +" gespreksaanvragen kan genereren naar managers en/of " +"ondergeschikten.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -675,7 +688,7 @@ msgstr "Uiterste datum" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Dit is de waardering waarop de evaluatie samengevat." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -805,6 +818,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuwe beoordeling aan te maken.\n" +"

\n" +" Iedere werknemer kan worden toegewezen aan een " +"beoordelingsplan.\n" +" Een beoordelingsplan plan definieert de frequentie en de " +"manier waarop\n" +" u de periodieke werknemerbeoordelingen beheerd. Het is " +"mogelijk om\n" +" stappen te maken en gesprekkente koppelen aan iedere stap. " +"OpenERP\n" +" beheert meerdere soorten van beoordelingen. bottom-up, top-" +"down, \n" +" zelfbeoordeling en eindbeoordelingen door een manager.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -860,6 +889,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"U kunt de status niet wijzigen, omdat sommige Beoordeling (en) op antwoord " +"wachten of zich in de concept fase bevinden." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -886,6 +917,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuw gesprekaanvraag, gerelateerd aan de " +"persoonlijke evaluatie aan te maken. \n" +"

\n" +" Gesprek aanvragen worden automatisch gegenereerd door " +"OpenERP\n" +" op basis van een werknemer beoordelingsplan. Elke gebruiker " +"ontvangt\n" +" automatische e-mails en verzoeken om regelmatig hun " +"collega's\n" +" te beoordelen.\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index 09755c19173..2142417e05d 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 13:48+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -83,7 +83,7 @@ msgstr "Etapele Evaluarii" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Request" -msgstr "" +msgstr "Trimite Solicitarea" #. module: hr_evaluation #: help:hr_evaluation.plan,month_first:0 @@ -98,7 +98,7 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Evaluari" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -109,7 +109,7 @@ msgstr "(nume_eval)s: Numele Evaluarii" #: field:hr.evaluation.interview,message_ids:0 #: field:hr_evaluation.evaluation,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -149,7 +149,7 @@ msgstr "Apreciere" #: help:hr.evaluation.interview,message_unread:0 #: help:hr_evaluation.evaluation,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -222,6 +222,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -238,7 +240,7 @@ msgstr "Termen limita" #: code:addons/hr_evaluation/hr_evaluation.py:320 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertizare!" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -258,7 +260,7 @@ msgstr "(data)s: Data curenta" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview msgid "Interviews" -msgstr "" +msgstr "Interviuri" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:83 @@ -270,13 +272,13 @@ msgstr "Referitor la " #: field:hr.evaluation.interview,message_follower_ids:0 #: field:hr_evaluation.evaluation,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: hr_evaluation #: field:hr.evaluation.interview,message_unread:0 #: field:hr_evaluation.evaluation,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -377,7 +379,7 @@ msgstr "Iulie" #: view:hr_evaluation.evaluation:0 #: field:hr_evaluation.evaluation,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer @@ -399,6 +401,18 @@ msgid "" "

\n" " " msgstr "" +"\n" +" FAceti click pentru a defini un nou plan de evaluare.\n" +"

\n" +" Puteti defini planuri de evaluare (de exemplu: primul " +"interviu dupa 6\n" +" luni, apoi in fiecare an). Apoi, fiecare angajat poate fi " +"asociat unui\n" +" plan de evaluare astfel incat OpenERP poate sa genereze " +"automat\n" +" cereri pentru interviuri managerilor si/sau subordonatilor.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -446,7 +460,7 @@ msgstr "Toate raspunsurile" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Answer Survey" -msgstr "" +msgstr "Raspunde la Sondaj" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -559,7 +573,7 @@ msgstr " (nume_angajat)s: Nume partener" #: field:hr.evaluation.interview,message_is_follower:0 #: field:hr_evaluation.evaluation,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -608,7 +622,7 @@ msgstr "Interviuri de evaluare" #: field:hr.evaluation.interview,message_summary:0 #: field:hr_evaluation.evaluation,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -672,7 +686,7 @@ msgstr "Data termenului limita" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Aceasta este aprecierea in care este rezumata evaluarea." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -802,6 +816,21 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea o evaluare noua.\n" +"

\n" +" Fiecarui angajat i se poate atribui un Plan de Evaluare. Un " +"asemenea plan\n" +" defineste frecventa si modul in care va gestionati " +"evaluarile\n" +" periodice ale personalului. Veti putea sa definiti pasi si\n" +" sa atasati interviuri fiecarui pas. OpenERP gestioneaza tot " +"tipul de\n" +" evaluari: de jos in sus, de sus in jos, autoevaluari si " +"evaluarea\n" +" finala de catre manager.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -857,6 +886,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Nu puteti modifica starea, deoarece unele evaluari sunt in asteptarea " +"raspunsului sau in starea ciorna." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -883,12 +914,23 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea o noua cerere pentru interviu, in " +"legatura cu o evaluare a personalului. \n" +"

\n" +" Cererile pentru interviu sunt de obicei generate automat de\n" +" OpenERP in functie de planul de evaluare al angajatului. " +"Fiecare utilizator\n" +" primeste email-uri si cereri automate pentru a-si evalua\n" +" colegii periodic.\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 #: help:hr_evaluation.evaluation,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: hr_evaluation #: view:hr.evaluation.interview:0 diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index 489a351c529..ad97d207ab8 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:15+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -36,7 +36,7 @@ msgstr "O contabilista reembolsa as despesas" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Despesa aprovada" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -159,7 +159,7 @@ msgstr "Erro!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Despesa recusada" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -292,7 +292,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 @@ -712,7 +712,7 @@ msgstr "Re-Faturar" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Data da despesa" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 @@ -824,7 +824,7 @@ msgstr "Pode ser Despesa" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Despesa confirmada, aguardando confirmação" #. module: hr_expense #: report:hr.expense:0 @@ -925,7 +925,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidade" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index 77a56a954b4..912c9061a9d 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 16:51+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:44+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -36,7 +36,7 @@ msgstr "Contabilul ramburseaza cheltuielile" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Cheltuieli aprobate" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -77,7 +77,7 @@ msgstr "Cheltuiali noi" #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unitatea de Masura" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -87,7 +87,7 @@ msgstr "Martie" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: hr_expense #: field:hr.expense.expense,company_id:0 @@ -113,6 +113,8 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"Nu a fost gasit nici un registru de cheltuieli. Asigurati-va ca aveti un " +"registru cu tipul 'achizitii' configurat." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -122,7 +124,7 @@ msgstr "Statistica cheltuieli" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Open Receipt" -msgstr "" +msgstr "Deschide Chitanta" #. module: hr_expense #: view:hr.expense.report:0 @@ -147,7 +149,7 @@ msgstr "Note" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -155,12 +157,12 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:197 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Cheltuieli refuzate" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -188,7 +190,7 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -219,6 +221,12 @@ msgid "" "If the admin accepts it, the status is 'Accepted'.\n" " If a receipt is made for the expense request, the status is 'Done'." msgstr "" +"Atunci cand este creata cererea pentru cheltuieli, starea este 'Ciorna'.\n" +" Este confirmata de catre utilizator si cererea este trimisa " +"administratorului, starea este 'In asteptarea Confirmarii'. \n" +"Daca administratorul o accepta, starea este 'Acceptat'.\n" +" Daca o chitanta este emisa pentru cererea de cheltuieli, starea este " +"'Efectuat'." #. module: hr_expense #: help:hr.expense.expense,date_confirm:0 @@ -241,12 +249,14 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:302 #, python-format msgid "Warning" -msgstr "" +msgstr "Avertisment" #. module: hr_expense #: report:hr.expense:0 @@ -295,7 +305,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 @@ -317,7 +327,7 @@ msgstr "In asteptare" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: hr_expense #: report:hr.expense:0 @@ -354,7 +364,7 @@ msgstr "Anumite costuri ar putea fi refacturate clientului" #: code:addons/hr_expense/hr_expense.py:197 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "Angajatul trebuie sa aiba o adresa de acasa." #. module: hr_expense #: view:board.board:0 @@ -409,7 +419,7 @@ msgstr "Dupa crearea facturii, rambursati cheltuielile" #: code:addons/hr_expense/hr_expense.py:116 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertisment!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 @@ -426,7 +436,7 @@ msgstr "Data validarii" #: code:addons/hr_expense/hr_expense.py:227 #, python-format msgid "Expense Receipt" -msgstr "" +msgstr "Chitanta cu Cheltuielile" #. module: hr_expense #: view:hr.expense.report:0 @@ -481,7 +491,7 @@ msgstr "Moneda" #. module: hr_expense #: field:hr.expense.expense,voucher_id:0 msgid "Employee's Receipt" -msgstr "" +msgstr "Chitanta Angajatului" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -500,11 +510,13 @@ msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure" msgstr "" +"Unitatea de Masura selectata nu apartine aceleiasi categorii ca si Unitatea " +"de Masura a produsului" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 msgid "The journal used when the expense is done." -msgstr "" +msgstr "Registrul folosit cand cheltuielile sunt efectuate." #. module: hr_expense #: field:hr.expense.expense,note:0 @@ -528,6 +540,8 @@ msgid "" "Please configure Default Expense account for Product purchase: " "`property_account_expense_categ`." msgstr "" +"Va rugam sa configurati Contul implicit pentru Cheltuieli pentru Achizitia " +"produsului: `proprietate_cont_cheltuieli_categ`." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 @@ -562,7 +576,7 @@ msgstr "Ciorna cheltuieli" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.product_normal_form_view_installer @@ -594,7 +608,7 @@ msgstr "Utilizator" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Categorii de Cheltuieli" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -616,11 +630,22 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a inregistra cheltuieli noi. \n" +"

\n" +" OpenERP se va asigura ca intregul proces este urmat; foaia\n" +" de cheltuieli este validata de manageri, angajatul este " +"rambursat\n" +" din cheltuielile sale, unele cheltuieli trebuie re-" +"facturate\n" +" clientilor.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "Genereaza Inregistrari Contabile" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -635,7 +660,7 @@ msgstr "Cheltuieli Resurse Umane" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: hr_expense #: model:product.template,name:hr_expense.car_travel_product_template @@ -650,7 +675,7 @@ msgstr "Trimiteti Directorului" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "Cheltuieli Efectuate" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 @@ -676,7 +701,7 @@ msgstr "Foaia de cheltuieli" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 msgid "Receipt" -msgstr "" +msgstr "Chitanta" #. module: hr_expense #: view:hr.expense.report:0 @@ -694,7 +719,7 @@ msgstr "Pret unitar" #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" -msgstr "" +msgstr "Efectuat" #. module: hr_expense #: model:process.transition.action,name:hr_expense.process_transition_action_supplierinvoice0 @@ -715,12 +740,12 @@ msgstr "Refacturati" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Data Cheltuielii" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Validare de catre" #. module: hr_expense #: view:hr.expense.expense:0 @@ -828,7 +853,7 @@ msgstr "Poate fi cheltuit" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Cheltuieli confirmate, in asteptarea confirmarii" #. module: hr_expense #: report:hr.expense:0 @@ -865,7 +890,7 @@ msgstr "Nume" #: code:addons/hr_expense/hr_expense.py:116 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "Puteti sterge doar cheltuielile in starea ciorna!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 @@ -900,7 +925,7 @@ msgstr "Aprobati" #. module: hr_expense #: help:hr.expense.expense,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: hr_expense #: field:hr.expense.line,sequence:0 @@ -925,11 +950,12 @@ msgstr "Cheltuieli" #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." msgstr "" +"Specifica daca produsul poate fi selectat intr-o linie de cheltuieli HR." #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "Contabilitate" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 09d60443edb..e0a0e836a25 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/i18n/nl.po @@ -8,14 +8,14 @@ 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: 2012-12-25 20:58+0000\n" +"PO-Revision-Date: 2013-01-28 12:15+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -39,6 +39,8 @@ msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"U kunt een verlofaanvraag niet wijzigen, welke reeds is goedgekeurd. Neem " +"contact op met personeelsbeheer." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -58,7 +60,7 @@ msgstr "Groepeer op..." #. module: hr_holidays #: field:hr.holidays,holiday_type:0 msgid "Allocation Mode" -msgstr "Reserveringsmode" +msgstr "Toewijs mode" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 @@ -75,7 +77,7 @@ msgstr "Afdeling" #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Goedkeuren verloftoewijzingen" #. module: hr_holidays #: help:hr.holidays,category_id:0 @@ -108,6 +110,8 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"De standaard duur interval tussen de begindatum en de einddatum is 8 uur. U " +"bent vrij om dit aan te passen aan uw wensen." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused @@ -229,8 +233,8 @@ msgid "" "available for someone" msgstr "" "Kies 'Verlofaanvraag' als iemand een dag verlof neemt. \n" -"Kies 'Reserveringsaanvraag' om het aantal beschikbare verlofdagen voor " -"iemand te verhogen." +"Kies 'Verlof toewijzen' om het aantal beschikbare verlofdagen voor iemand te " +"verhogen." #. module: hr_holidays #: view:hr.holidays.status:0 @@ -294,7 +298,7 @@ msgstr "Magenta" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Verlof afspraken" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl @@ -393,7 +397,7 @@ msgstr "Tarwe" #: code:addons/hr_holidays/hr_holidays.py:469 #, python-format msgid "Allocation for %s" -msgstr "Reservering voor %s" +msgstr "Verloftoewijzing voor %s" #. module: hr_holidays #: help:hr.holidays,state:0 @@ -431,9 +435,9 @@ msgstr "" "is dubbelzinnig, omdat we niet kunnen bepalen op welke verlofsoort de update " "gedaan moet worden.\n" "U kunt ervoor kiezen om gebruik te van de klassieke menu's 'Verlofaanvragen' " -"en 'Reserveringsaanvragen' in 'Personeelszaken\\Verloven' om de verlofdagen " -"van het personeel te beheren, indien de configuratie het onmogelijk maakt om " -"dit veld te gebruiken." +"en 'Verlof toewijzen' in 'Personeelszaken\\Verloven' om de verlofdagen van " +"het personeel te beheren, indien de configuratie het onmogelijk maakt om dit " +"veld te gebruiken." #. module: hr_holidays #: view:hr.holidays.status:0 @@ -479,12 +483,14 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Wanneer de verlofaanvraag is goedgekeurd, zal OpenERP de bijbehorende agenda " +"afpraak maken." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." -msgstr "" +msgstr "U dient tenminste één afdeling te selecteren en opnieuw te proberen." #. module: hr_holidays #: field:hr.holidays,parent_id:0 @@ -531,6 +537,8 @@ msgid "" "There are not enough %s allocated for employee %s; please create an " "allocation request for this leave type." msgstr "" +"Er zijn niet voldoende %s toegewezen voor werknemer %s. Maak een verlof " +"toewijzing aan voor deze verlofsoort." #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -551,11 +559,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik om een nieuwe verlofaanvraag te doen\n" +"

\n" +" Zodra u, uw verlofaanvraag heeft ingevoerd, wordt deze " +"verzonden\n" +"                 naar een manager voor goedkeuring. Zorg ervoor dat u de " +"juiste verlofssort\n" +"                 ingeeft (wettelijke dagen, wettelijke feestdagen, ziekte) " +"en de exacte\n" +"                 aantal open dagen met betrekking tot uw verlof.\n" +"

\n" +" " #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The employee or employee category of this request is missing." -msgstr "" +msgstr "De werknemer of werknemer categorie van deze aanvraag ontbreekt." #. module: hr_holidays #: view:hr.holidays:0 @@ -625,6 +645,8 @@ msgid "" "This color will be used in the leaves summary located in Reporting\\Leaves " "by Department." msgstr "" +"Deze kleur wordt gebruikt in de verlofsamenvatting, weergegeven bij " +"Rapportages\\Verlof per afdeling" #. module: hr_holidays #: view:hr.holidays:0 @@ -640,7 +662,7 @@ msgstr "Ivoor" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_employee msgid "HR Leaves Summary Report By Employee" -msgstr "" +msgstr "Personeel verlof samenvatting per werknemer" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays @@ -723,7 +745,7 @@ msgstr "Mijn afdelingsverloven" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed msgid "Request confirmed, waiting confirmation" -msgstr "" +msgstr "Aanvraag bevestigd, wachten voor bevestiging" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -786,7 +808,7 @@ msgstr "U kunt geen verlof verwijderen vele zich in de %s status bevind." #: view:hr.holidays:0 #: selection:hr.holidays,type:0 msgid "Allocation Request" -msgstr "Reserveringsaanvraag" +msgstr "Verlof toewijzen" #. module: hr_holidays #: help:hr.holidays,holiday_type:0 @@ -930,7 +952,7 @@ msgstr "Modus" #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Beide bevestigd en goedgekeurd" #. module: hr_holidays #: view:hr.holidays:0 @@ -948,7 +970,7 @@ msgstr "Berichten en communicatie historie" #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." -msgstr "" +msgstr "De begindatum moet voor de einddatum liggen." #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays @@ -969,7 +991,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.open_allocation_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_allocation_holidays msgid "Allocation Requests" -msgstr "Reserveringsaanvragen" +msgstr "Verlof toewijzingen" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -1002,7 +1024,7 @@ msgstr "Manager" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept msgid "HR Leaves Summary Report By Department" -msgstr "" +msgstr "Personeel verlof samenvatting per afdeling" #. module: hr_holidays #: view:hr.holidays:0 diff --git a/addons/hr_holidays/i18n/pt.po b/addons/hr_holidays/i18n/pt.po index 672e8b7808d..53f7b46be46 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:18+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -112,7 +112,7 @@ msgstr "" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Pedido recusado" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 @@ -172,7 +172,7 @@ msgstr "Recusar" #: code:addons/hr_holidays/hr_holidays.py:433 #, python-format msgid "Request approved, waiting second validation." -msgstr "" +msgstr "Pedido aprovado, aguardando segunda validação." #. module: hr_holidays #: view:hr.employee:0 @@ -715,7 +715,7 @@ msgstr "Ausências do Departamento" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed msgid "Request confirmed, waiting confirmation" -msgstr "" +msgstr "Pedido confirmado, aguardando confirmação" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -1013,7 +1013,7 @@ msgstr "Para aprovar" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Pedido aprovado" #. module: hr_holidays #: field:hr.holidays,notes:0 diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index 83202aed249..a41875d804c 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 19:24+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:45+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -39,6 +39,8 @@ msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"Nu puteti modifica o cerere de concediu care a fost aprobata. Contactati un " +"manager de la departamentul de resurse umane." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -63,7 +65,7 @@ msgstr "Mod Alocare" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "De la data de" #. module: hr_holidays #: view:hr.holidays:0 @@ -75,7 +77,7 @@ msgstr "Departament" #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Cereri de Alocare de Aprobat" #. module: hr_holidays #: help:hr.holidays,category_id:0 @@ -108,16 +110,18 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"Durata intervalului implicit dintre data de inceput si data de sfarsit este " +"de 8 ore. Aveti libertarea de a o adapta nevoilor dumneavoastra." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Cerere refuzata" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "Alocare" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -132,7 +136,7 @@ msgstr "Cyan deschis" #. module: hr_holidays #: constraint:hr.holidays:0 msgid "You can not have 2 leaves that overlaps on same day!" -msgstr "" +msgstr "Nu puteti avea 2 concedii care se suprapun in aceeasi zi!" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -147,7 +151,7 @@ msgstr "Tipul Concediului actual" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "Valideaza" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -172,7 +176,7 @@ msgstr "Respingeti" #: code:addons/hr_holidays/hr_holidays.py:433 #, python-format msgid "Request approved, waiting second validation." -msgstr "" +msgstr "Cererea aprobata, in asteptarea celei de-a doua validari." #. module: hr_holidays #: view:hr.employee:0 @@ -184,7 +188,7 @@ msgstr "Concedii" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesaje" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -195,7 +199,7 @@ msgstr "Analiza de la" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays @@ -240,7 +244,7 @@ msgstr "Validare" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: hr_holidays #: field:hr.holidays.status,color_name:0 @@ -271,6 +275,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:238 @@ -291,12 +297,12 @@ msgstr "Magenta" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Intalniri Concedii" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl msgid "Legal Leaves 2012" -msgstr "" +msgstr "Concedii legale 2012" #. module: hr_holidays #: selection:hr.holidays.summary.dept,holiday_type:0 @@ -330,7 +336,7 @@ msgstr "Sumă" #: view:hr.holidays.status:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status msgid "Leave Types" -msgstr "" +msgstr "Tipuri de Concedii" #. module: hr_holidays #: field:hr.holidays.status,remaining_leaves:0 @@ -340,7 +346,7 @@ msgstr "Concedii ramase" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -403,6 +409,14 @@ msgid "" " \n" "The status is 'Approved', when holiday request is approved by manager." msgstr "" +"Starea este setata pe 'De Predat', atunci cand o cerere de concediu este " +"creata. \n" +"Starea este 'De Aprobat', atunci cand o cerere de concediu este confirmata " +"de catre utilizator. \n" +"Starea este 'Refuzat', atunci cand cererea de concediu este refuzata de " +"manager. \n" +"Starea este 'Aprobata', atunci cand cererea de concediu este aprobata de " +"manager." #. module: hr_holidays #: view:hr.holidays:0 @@ -445,7 +459,7 @@ msgstr "Asteapta aprobare" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "Eticheta Angajat" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 @@ -458,6 +472,8 @@ msgid "" "Filters only on allocations and requests that belong to an holiday type that " "is 'active' (active field is True)" msgstr "" +"Filtre numai pentru alocari si cereri care apartin unui tip de concediu care " +"este 'activ' (campul activ este Adevarat)" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.hr_holidays_leaves_assign_legal @@ -469,6 +485,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Puteti atribui Concedii Legale ramase pentru fiecare angajat, " +"OpenERP\n" +" va crea si va valida automat cereri de alocare.\n" +"

\n" +" " #. module: hr_holidays #: help:hr.holidays.status,categ_id:0 @@ -476,12 +498,14 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Odata ce un concediu este validat, OpenERP va crea o intalnire " +"corespunzatoare de acest tip in calendar." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." -msgstr "" +msgstr "Trebuie sa selectati cel putin un Departament. Si incercati din nou." #. module: hr_holidays #: field:hr.holidays,parent_id:0 @@ -501,7 +525,7 @@ msgstr "Luna" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: hr_holidays #: view:hr.holidays:0 @@ -528,12 +552,14 @@ msgid "" "There are not enough %s allocated for employee %s; please create an " "allocation request for this leave type." msgstr "" +"Nu exista suficiente %s alocate pentru angajatul %s; va rugam sa creati o " +"cerere de alocare pentru acest tip de concediu." #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -548,11 +574,23 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Faceti click pentru a crea o cerere noua de concediu.\n" +"

\n" +" Odata ce v-ati inregistrat cererea de concediu, ea va fi " +"trimisa\n" +" unui manager pentru validare. Asigurati-va ca ati setat " +"tipul corect\n" +" de concediu (de recuperare, sarbatori legale, medical) si " +"numarul\n" +" exact de zile referitoare la concediul dumneavoastra.\n" +"

\n" +" " #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The employee or employee category of this request is missing." -msgstr "" +msgstr "Lipseste angajatul sau categoria angajatului acestei cereri." #. module: hr_holidays #: view:hr.holidays:0 @@ -575,16 +613,20 @@ msgid "" "leaves than the available ones for this type and take them into account for " "the \"Remaining Legal Leaves\" defined on the employee form." msgstr "" +"Daca selectati aceasta casuta, sistemul le permite angajatilor sa isi ia mai " +"multe concedii decat cele care sunt disponibile pentru acest tip si le va " +"lua in considerare pentru \"Concedii Legale Ramase\" definite in formularul " +"angajatului." #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "Reseteaza ca Nou" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "" +msgstr "Numarul de zile trebuie sa fie mai mare de 0." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -594,7 +636,7 @@ msgstr "Coral deschis" #. module: hr_holidays #: field:hr.employee,leave_date_to:0 msgid "To Date" -msgstr "" +msgstr "La zi" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -609,7 +651,7 @@ msgstr "Alocati Concedii pentru Angajati" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Leaves Types" -msgstr "" +msgstr "Tipuri de Concediu" #. module: hr_holidays #: field:hr.holidays,meeting_id:0 @@ -622,12 +664,14 @@ msgid "" "This color will be used in the leaves summary located in Reporting\\Leaves " "by Department." msgstr "" +"Aceasta culoare va fi folosita in continutul concediilor aflat in Raportare\\" +"Concedii pe Departamente." #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -637,12 +681,12 @@ msgstr "Fildes" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_employee msgid "HR Leaves Summary Report By Employee" -msgstr "" +msgstr "Raport Continut Concedii HR pe Angajati" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "Cereri de Aprobat" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -652,7 +696,7 @@ msgstr "Concedii luate deja" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este un adept" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -679,7 +723,7 @@ msgstr "Prima aprobare" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid @@ -700,7 +744,7 @@ msgstr "Rezumat concedii" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "Trimiteti Directorului" #. module: hr_holidays #: view:hr.employee:0 @@ -720,7 +764,7 @@ msgstr "Concediile din Departamentul meu" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed msgid "Request confirmed, waiting confirmation" -msgstr "" +msgstr "Cerere confirmata, in asteptarea confirmarii" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -777,7 +821,7 @@ msgstr "Validat(a)" #: code:addons/hr_holidays/hr_holidays.py:238 #, python-format msgid "You cannot delete a leave which is in %s state." -msgstr "" +msgstr "Nu puteti sterge un concediu care este in starea %s." #. module: hr_holidays #: view:hr.holidays:0 @@ -791,6 +835,8 @@ msgid "" "By Employee: Allocation/Request for individual Employee, By Employee Tag: " "Allocation/Request for group of employees in category" msgstr "" +"Dupa Angajat: Alocare/Cerere pentru un singur Angajat, Dupa Eticheta " +"Angajatului: Alocare/Cerere pentru un grup de angajati in categoria" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves @@ -807,7 +853,7 @@ msgstr "Aplicati Validarea Dubla" #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "zile" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -835,7 +881,7 @@ msgstr "Departament(e)" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "De Depus" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:336 @@ -855,7 +901,7 @@ msgstr "Descriere" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "Dupa Eticheta Angajatului" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -867,7 +913,7 @@ msgstr "Respins" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "Tipul Intalnirii" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -877,7 +923,7 @@ msgstr "Concedii ramase" #. module: hr_holidays #: view:hr.holidays:0 msgid "Allocated Days" -msgstr "" +msgstr "Zile Alocate" #. module: hr_holidays #: view:hr.holidays:0 @@ -927,7 +973,7 @@ msgstr "Mod" #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Atat Aprobat cat si Confirmat" #. module: hr_holidays #: view:hr.holidays:0 @@ -937,7 +983,7 @@ msgstr "Aprobati" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:249 @@ -945,7 +991,7 @@ msgstr "" #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." -msgstr "" +msgstr "Data de inceput trebuie sa fie anterioara datei de sfarsit." #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays @@ -958,6 +1004,8 @@ msgid "" "When selected, the Allocation/Leave Requests for this type require a second " "validation to be approved." msgstr "" +"Atunci cand este selectat, Alocarea/Cererea de Concediu pentru acest tip " +"necesita o a doua validare care sa fie aprobata." #. module: hr_holidays #: view:hr.holidays:0 @@ -978,6 +1026,9 @@ msgid "" "to create allocation/leave request. Total based on all the leave types " "without overriding limit." msgstr "" +"Numarul total de concedii legale alocate acestui angajat, modifica aceasta " +"valoare pentru a crea alocarea/cererea de concediu. Totalul se bazeaza pe " +"toate tipurile de concediu fara limita prioritara." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -987,7 +1038,7 @@ msgstr "Roz deschis" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "leaves." -msgstr "" +msgstr "concedii." #. module: hr_holidays #: view:hr.holidays:0 @@ -997,7 +1048,7 @@ msgstr "Director" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept msgid "HR Leaves Summary Report By Department" -msgstr "" +msgstr "Raport Continut COncedii HR Dupa Departament" #. module: hr_holidays #: view:hr.holidays:0 @@ -1007,7 +1058,7 @@ msgstr "An" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "Durata" #. module: hr_holidays #: view:hr.holidays:0 @@ -1019,7 +1070,7 @@ msgstr "De aprobat" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Cerere aprobata" #. module: hr_holidays #: field:hr.holidays,notes:0 @@ -1029,4 +1080,4 @@ msgstr "Motive" #. module: hr_holidays #: field:hr.holidays.summary.employee,holiday_type:0 msgid "Select Leave Type" -msgstr "" +msgstr "Selecteaza Tipul Concediului" diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index 6c425544f72..1a47d73004b 100644 --- a/addons/hr_payroll/i18n/pt.po +++ b/addons/hr_payroll/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:21+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -211,7 +211,7 @@ msgstr "Notas" #: code:addons/hr_payroll/hr_payroll.py:900 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -440,7 +440,7 @@ msgstr "Percentagem baseada em" #: code:addons/hr_payroll/hr_payroll.py:85 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (cópia)" #. module: hr_payroll #: help:hr.config.settings,module_hr_payroll_account:0 @@ -520,7 +520,7 @@ msgstr "Montante fixo" #: code:addons/hr_payroll/hr_payroll.py:365 #, python-format msgid "Warning!" -msgstr "" +msgstr "Atenção!" #. module: hr_payroll #: help:hr.payslip.line,active:0 @@ -536,7 +536,7 @@ msgstr "" #: field:hr.payslip,state:0 #: field:hr.payslip.run,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: hr_payroll #: view:hr.payslip:0 @@ -926,7 +926,7 @@ msgstr "Sequência" #. module: hr_payroll #: view:hr.payslip:0 msgid "Period" -msgstr "" +msgstr "Período" #. module: hr_payroll #: view:hr.payslip.run:0 @@ -1018,7 +1018,7 @@ msgstr "Recibos de Vencimento do Funcionário" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1272,7 +1272,7 @@ msgstr "Nome do Recibo de Vencimento" #. module: hr_payroll #: view:hr.payslip:0 msgid "Accounting" -msgstr "" +msgstr "Contabilidade" #. module: hr_payroll #: field:hr.payslip.line,condition_range:0 diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index f1aad96e840..987046388b6 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 16:08+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -125,7 +125,7 @@ msgstr "ru.regula.salarizare" #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "to" -msgstr "" +msgstr "catre" #. module: hr_payroll #: field:hr.payslip,payslip_run_id:0 @@ -154,7 +154,7 @@ msgstr "Cantitate/Rata" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Children Definition" -msgstr "" +msgstr "Definitie conturi subordonate" #. module: hr_payroll #: field:hr.payslip.input,payslip_id:0 @@ -212,7 +212,7 @@ msgstr "Note" #: code:addons/hr_payroll/hr_payroll.py:900 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -238,7 +238,7 @@ msgstr "Alte informatii" #. module: hr_payroll #: field:hr.config.settings,module_hr_payroll_account:0 msgid "Link your payroll to accounting system" -msgstr "" +msgstr "Conectati salarizarea cu sistemul contabil" #. module: hr_payroll #: help:hr.payslip.line,amount_select:0 @@ -307,7 +307,7 @@ msgstr "Structura" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partener" #. module: hr_payroll #: view:hr.payslip:0 @@ -353,6 +353,16 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a adauga un nou registru de contributii.\n" +"

\n" +" Un registru de contributii este o parte terta implicata in " +"plata\n" +" salariilor angajatilor. Poate fi securitatea sociala,\n" +" statul sau oricine colecteaza sau introduce bani pe " +"fluturasii de salariu.\n" +"

\n" +" " #. module: hr_payroll #: help:hr.payslip.line,condition_range_max:0 @@ -441,12 +451,12 @@ msgstr "Procent bazat pe" #: code:addons/hr_payroll/hr_payroll.py:85 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copie)" #. module: hr_payroll #: help:hr.config.settings,module_hr_payroll_account:0 msgid "Create journal entries from payslips" -msgstr "" +msgstr "Creeaza inregistrari in registru din fluturasii de salariu" #. module: hr_payroll #: field:hr.payslip,paid:0 @@ -469,7 +479,7 @@ msgstr "Linii Fluturas de salariu" #. module: hr_payroll #: view:hr.payslip:0 msgid "Miscellaneous" -msgstr "" +msgstr "Diverse" #. module: hr_payroll #: selection:hr.payslip,state:0 @@ -521,7 +531,7 @@ msgstr "Suma fixa" #: code:addons/hr_payroll/hr_payroll.py:365 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertisment!" #. module: hr_payroll #: help:hr.payslip.line,active:0 @@ -537,7 +547,7 @@ msgstr "" #: field:hr.payslip,state:0 #: field:hr.payslip.run,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: hr_payroll #: view:hr.payslip:0 @@ -630,7 +640,7 @@ msgstr "Detalii Calcul Fluturas de salariu" #: help:hr.payslip.line,appears_on_payslip:0 #: help:hr.salary.rule,appears_on_payslip:0 msgid "Used to display the salary rule on payslip." -msgstr "" +msgstr "Folosit pentru a afisa regula salariala in fluturasul de salariu." #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_input @@ -659,7 +669,7 @@ msgstr "Calcul" #: code:addons/hr_payroll/hr_payroll.py:894 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." -msgstr "" +msgstr "Conditie gresita a limitei definita pentru regula salariala %s (%s)." #. module: hr_payroll #: help:hr.payslip.input,amount:0 @@ -705,6 +715,8 @@ msgstr "" #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" +"Baza procentuala sau cantitate gresita definita pentru regula salariala %s " +"(%s)." #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_list_form @@ -762,7 +774,7 @@ msgstr "Procentaj (%)" #: code:addons/hr_payroll/hr_payroll.py:866 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "Cantitate gresita definita pentru regula salariala %s (%s)." #. module: hr_payroll #: view:hr.payslip:0 @@ -848,6 +860,7 @@ msgstr "Contract" #, python-format msgid "You must select employee(s) to generate payslip(s)." msgstr "" +"Trebuie sa selectati angajatii pentru a genera fluturasii de salariu." #. module: hr_payroll #: report:paylip.details:0 @@ -926,12 +939,12 @@ msgstr "Secventa" #. module: hr_payroll #: view:hr.payslip:0 msgid "Period" -msgstr "" +msgstr "Perioada" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Period from" -msgstr "" +msgstr "Perioada de la" #. module: hr_payroll #: view:hr.salary.rule:0 @@ -1018,7 +1031,7 @@ msgstr "Fluturasi de salariu angajat" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.setari" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1100,6 +1113,7 @@ msgstr "Linii Fluturas de salariu dupa Registrul Contributiei" #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" +"Nu puteti sterge un fluturas de salariu care nu este ciorna sau anulat!" #. module: hr_payroll #: report:paylip.details:0 @@ -1171,6 +1185,14 @@ msgid "" "* If the payslip is confirmed then status is set to 'Done'. \n" "* When user cancel payslip the status is 'Rejected'." msgstr "" +"* Atunci cand fluturasul de salariu este creat, starea este 'Ciorna'. " +" \n" +"* Daca fluturasul de salariu este in curs de verificare, starea este 'In " +"asteptare'. \n" +"* Daca fluturasul de salariu este confirmat, atunci starea este setata pe " +"'Efectuat'. \n" +"* Atunci cand utilizatorul anuleaza fluturasul de salariu, starea este " +"'Respins'." #. module: hr_payroll #: help:hr.payslip.line,condition_range:0 @@ -1198,7 +1220,7 @@ msgstr "Introducere Fluturas de salariu" #. module: hr_payroll #: view:hr.payslip:0 msgid "Other Inputs" -msgstr "" +msgstr "Alte Intrari" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category_tree_view @@ -1210,7 +1232,7 @@ msgstr "Ierarhie Categorii Regula Salariala" #: code:addons/hr_payroll/hr_payroll.py:877 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." -msgstr "" +msgstr "Cod python gresit definit pentru regula salariala %s (%s)." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -1241,7 +1263,7 @@ msgstr "Codul care poate fi utilizat in regulile salariale" #: code:addons/hr_payroll/hr_payroll.py:900 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." -msgstr "" +msgstr "Conditie python gresita definita pentru regula salariala %s (%s)." #. module: hr_payroll #: view:hr.payslip.run:0 @@ -1273,7 +1295,7 @@ msgstr "Numele Fluturasului de salariu" #. module: hr_payroll #: view:hr.payslip:0 msgid "Accounting" -msgstr "" +msgstr "Contabilitate" #. module: hr_payroll #: field:hr.payslip.line,condition_range:0 diff --git a/addons/hr_payroll_account/i18n/sl.po b/addons/hr_payroll_account/i18n/sl.po new file mode 100644 index 00000000000..97815b18cb7 --- /dev/null +++ b/addons/hr_payroll_account/i18n/sl.po @@ -0,0 +1,126 @@ +# Slovenian 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-01-27 22:26+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_credit:0 +msgid "Credit Account" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#, python-format +msgid "Payslip of %s" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#, python-format +msgid "" +"The Expense Journal \"%s\" has not properly configured the Credit Account!" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payslip,move_id:0 +msgid "Accounting Entry" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#, python-format +msgid "" +"The Expense Journal \"%s\" has not properly configured the Debit Account!" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_tax_id:0 +msgid "Tax Code" +msgstr "Davčna skupina" + +#. module: hr_payroll_account +#: field:hr.payslip,period_id:0 +msgid "Force Period" +msgstr "Vsili obdobje" + +#. module: hr_payroll_account +#: help:hr.payslip,period_id:0 +msgid "Keep empty to use the period of the validation(Payslip) date." +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_contract +msgid "Contract" +msgstr "Pogodba" + +#. module: hr_payroll_account +#: field:hr.contract,analytic_account_id:0 +#: field:hr.salary.rule,analytic_account_id:0 +msgid "Analytic Account" +msgstr "Analitični konto" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_debit:0 +msgid "Debit Account" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_run +msgid "Payslip Batches" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees +msgid "Generate payslips for all selected employees" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#, python-format +msgid "Configuration Error!" +msgstr "Napaka v nastavitvah" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_salary_rule +msgid "hr.salary.rule" +msgstr "hr.salary.rule" + +#. module: hr_payroll_account +#: view:hr.contract:0 +#: view:hr.salary.rule:0 +msgid "Accounting" +msgstr "Računovodstvo" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip +msgid "Pay Slip" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:158 +#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#, python-format +msgid "Adjustment Entry" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contract,journal_id:0 +#: field:hr.payslip,journal_id:0 +#: field:hr.payslip.run,journal_id:0 +msgid "Salary Journal" +msgstr "" diff --git a/addons/hr_recruitment/i18n/ro.po b/addons/hr_recruitment/i18n/ro.po index 18a54be6fc2..30c9fb06925 100644 --- a/addons/hr_recruitment/i18n/ro.po +++ b/addons/hr_recruitment/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 17:31+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:46+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -35,17 +35,17 @@ msgstr "Cerinte" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Application Summary" -msgstr "" +msgstr "Continut Aplicatie" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Start Interview" -msgstr "" +msgstr "Incepe Interviul" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Mobile:" -msgstr "" +msgstr "Mobil:" #. module: hr_recruitment #: help:hr.recruitment.stage,fold:0 @@ -53,6 +53,8 @@ msgid "" "This stage is not visible, for example in status bar or kanban view, when " "there are no records in that stage to display." msgstr "" +"Aceasta etapa nu este vizibila, de exemplu in bara status sau in " +"vizualizarea kanban, atunci cand nu exista inregistrari de afisat." #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate @@ -101,7 +103,7 @@ msgstr "Locuri de munca in asteptare" #: view:hr.applicant:0 #: field:hr.applicant,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mesaje Necitite" #. module: hr_recruitment #: field:hr.applicant,company_id:0 @@ -154,12 +156,30 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a adauga un nou candidat pentru locul de " +"munca.\n" +"

\n" +" OpenERP va ajuta sa tineti evidenta candidatilor in procesul " +"de\n" +" recrutare si sa urmariti toate operatiunile: intalniri, " +"interviuri, etc.\n" +"

\n" +" Daca configurati email gateway, candidatii si CV-ul lor\n" +" atasat sunt creati automat atunci cand un email este trimis\n" +" la jobs@yourcompany.com. Daca instalati modulele de " +"management\n" +" al documentelor, toate CV-urile sunt indexate automat, " +"astfel ca puteti\n" +" cauta cu usurinta prin continutul lor.\n" +"

\n" +" " #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job #: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job msgid "Applications" -msgstr "" +msgstr "Cereri" #. module: hr_recruitment #: field:hr.applicant,day_open:0 @@ -169,12 +189,12 @@ msgstr "Zile pana la deschidere" #. module: hr_recruitment #: field:hr.applicant,emp_id:0 msgid "employee" -msgstr "" +msgstr "angajat" #. module: hr_recruitment #: field:hr.config.settings,fetchmail_applicants:0 msgid "Create applicants from an incoming email account" -msgstr "" +msgstr "Creeaza candidati dintr-un cont de email-uri primite" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -186,7 +206,7 @@ msgstr "Zi" #: view:hr.recruitment.partner.create:0 #: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create msgid "Create Contact" -msgstr "" +msgstr "Creeaza Contact" #. module: hr_recruitment #: view:hr.applicant:0 @@ -218,7 +238,7 @@ msgstr "Actiunile urmatoare" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 @@ -237,11 +257,14 @@ msgid "" "Stages of the recruitment process may be different per department. If this " "stage is common to all departments, keep this field empty." msgstr "" +"Etapele din procesul de recrutare pot fi diferite pentru fiecare " +"departament. Daca aceasta etapa este comuna tuturor departamentelor, lasati " +"acest camp necompletat." #. module: hr_recruitment #: help:hr.applicant,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #. module: hr_recruitment #: field:hr.applicant,color:0 @@ -251,7 +274,7 @@ msgstr "Index culori" #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.act_hr_applicant_to_meeting msgid "Meetings" -msgstr "" +msgstr "Intalniri" #. module: hr_recruitment #: view:hr.applicant:0 @@ -290,6 +313,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 "" +"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " +"in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:435 @@ -344,7 +369,7 @@ msgstr "Statistica Recrutari" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Print interview report" -msgstr "" +msgstr "Tipareste raportul interviului" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -365,7 +390,7 @@ msgstr "Sursa" #. module: hr_recruitment #: field:hr.applicant,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Persoane interesate" #. module: hr_recruitment #: model:hr.recruitment.source,name:hr_recruitment.source_monster @@ -375,7 +400,7 @@ msgstr "Monstru" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired msgid "Applicant Hired" -msgstr "" +msgstr "Candidat Angajat" #. module: hr_recruitment #: field:hr.applicant,email_from:0 @@ -395,6 +420,16 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a adauga o etapa noua in procesul de " +"recrutare.\n" +"

\n" +" Definiti aici etapele din procesul de recrutare, de exemplu:\n" +" apel de calificare, primul interviu, al doilea interviu, " +"respins,\n" +" angajat.\n" +"

\n" +" " #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -412,6 +447,8 @@ msgid "" "Email alias for this job position. New emails will automatically create new " "applicants for this job position." msgstr "" +"Email alias pentru acest post. Email-urile noi vor crea automat candidati " +"noi pentru acest post." #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -534,6 +571,10 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"Starea este setata pe 'Ciorna', atunci cand este creat un caz. Atunci cand " +"cazul este in desfasurare, starea este setata pe 'Deschis'. Cand cazul este " +"finalizat, starea este setata pe 'Efectuat'. Atunci cand cazul trebuie " +"verificat, starea este setata pe 'In asteptare'." #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -565,12 +606,12 @@ msgstr "In desfasurare" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Hire & Create Employee" -msgstr "" +msgstr "Angajeaza & Creeaza Angajat" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired msgid "Applicant hired" -msgstr "" +msgstr "Candidat angajat" #. module: hr_recruitment #: view:hr.applicant:0 @@ -601,17 +642,17 @@ msgstr "Decembrie" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:39 #, python-format msgid "A contact is already defined on this job request." -msgstr "" +msgstr "Un contact este deja definit pentru aceasta cerere de loc de munca." #. module: hr_recruitment #: field:hr.applicant,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etichete" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant_category msgid "Category of applicant" -msgstr "" +msgstr "Categoria aplicantului" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -622,7 +663,7 @@ msgstr "Luna" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Answer related job question" -msgstr "" +msgstr "Raspunde la intrebarea referitoare la locul de munca" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 @@ -649,12 +690,12 @@ msgstr "Subiect" #: view:hired.employee:0 #: view:hr.recruitment.partner.create:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused msgid "Applicant Refused" -msgstr "" +msgstr "Candidat Respins" #. module: hr_recruitment #: view:hr.applicant:0 @@ -758,13 +799,13 @@ msgstr "Status" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule interview with this applicant" -msgstr "" +msgstr "Programeaza un interviu cu acest angajat" #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:397 #, python-format msgid "Applicant created" -msgstr "" +msgstr "Candidat creat" #. module: hr_recruitment #: view:hr.applicant:0 @@ -794,7 +835,7 @@ msgstr "Zile pana la inchidere" #. module: hr_recruitment #: field:hr.applicant,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Este o persoana interesata" #. module: hr_recruitment #: field:hr.recruitment.report,user_id:0 @@ -816,7 +857,7 @@ msgstr "Activ(a)" #: view:hr.recruitment.report:0 #: field:hr.recruitment.report,nbr:0 msgid "# of Applications" -msgstr "" +msgstr "# de Cereri" #. module: hr_recruitment #: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_act @@ -830,6 +871,15 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a adauga o etapa noua in procesul de " +"recrutare.\n" +"

\n" +" Nu uitati sa specificati departmentul daca procesul " +"dumneavoastra\n" +" este diferit in functie de post.\n" +"

\n" +" " #. module: hr_recruitment #: field:hr.applicant,response:0 @@ -844,7 +894,7 @@ msgstr "Octombrie" #. module: hr_recruitment #: field:hr.config.settings,module_document_ftp:0 msgid "Allow the automatic indexation of resumes" -msgstr "" +msgstr "Permite indexarea automata a CV-urilor" #. module: hr_recruitment #: field:hr.applicant,salary_proposed_extra:0 @@ -860,7 +910,7 @@ msgstr "Ianuarie" #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 #, python-format msgid "A contact is already existing with the same name." -msgstr "" +msgstr "Exista deja un contact cu acelasi nume." #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer @@ -870,7 +920,7 @@ msgstr "Verificati Etapele de Recrutare" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Contact:" -msgstr "" +msgstr "Contact:" #. module: hr_recruitment #: view:hr.applicant:0 @@ -896,7 +946,7 @@ msgstr "Doriti sa creati un angajat ?" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Degree:" -msgstr "" +msgstr "Grad:" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -917,7 +967,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Configureaza" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 @@ -950,6 +1000,8 @@ msgstr "Anulati" #: view:hr.recruitment.partner.create:0 msgid "Are you sure you want to create a contact based on this job request ?" msgstr "" +"Sunteti sigur ca doriti sa creati un contact pe baza acestei cereri de loc " +"de munca?" #. module: hr_recruitment #: help:hr.config.settings,fetchmail_applicants:0 @@ -958,6 +1010,9 @@ msgid "" "(jobs@mycompany.com),\n" " and create automatically application documents in the system." msgstr "" +"Le permite candidatilor sa isi trimita cererea de angajare la o adresa de " +"email (jobs@mycompany.com),\n" +" si creeaza automat documente cerere in sistem." #. module: hr_recruitment #: view:hr.applicant:0 @@ -979,7 +1034,7 @@ msgstr "Da ordinea secventei atunci cand afisează o lista de diplome." #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed msgid "Stage changed" -msgstr "" +msgstr "Etapa schimbata" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1008,7 +1063,7 @@ msgstr "LinkedIn" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant msgid "New Applicant" -msgstr "" +msgstr "Candidat Nou" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage @@ -1043,7 +1098,7 @@ msgstr "Nume sursa" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Day(s)" -msgstr "" +msgstr "Zi(le)" #. module: hr_recruitment #: field:hr.applicant,description:0 @@ -1053,7 +1108,7 @@ msgstr "Descriere" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed msgid "Stage Changed" -msgstr "" +msgstr "Etapa Schimbata" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -1073,7 +1128,7 @@ msgstr "Oral" #. module: hr_recruitment #: field:hr.recruitment.stage,fold:0 msgid "Hide in views if empty" -msgstr "" +msgstr "Ascunde in vizualizari daca este necompletat" #. module: hr_recruitment #: help:hr.config.settings,module_document_ftp:0 @@ -1083,6 +1138,12 @@ msgid "" "knowledge management module in order to allow you to search using specific " "keywords through the content of all documents (PDF, .DOCx...)" msgstr "" +"Gestionati-va CV-urile si scrisorile de intentie asociate tuturor " +"candidatilor.\n" +" Acesta instaleaza modulul document_ftp. Acesta va instala " +"modulul managementul cunostintelor pentru a va permite cautarea prin " +"continutul tuturor documentelor folosind anumite cuvinte cheie (PDF, " +".DOCx...)" #. module: hr_recruitment #: selection:hr.applicant,state:0 @@ -1103,12 +1164,12 @@ msgstr "Angajat" #. module: hr_recruitment #: field:hr.applicant,reference:0 msgid "Referred By" -msgstr "" +msgstr "Recomandat de" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Departement:" -msgstr "" +msgstr "Departament:" #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -1124,7 +1185,7 @@ msgstr "Gradul de recrutare" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop_avg:0 msgid "Avg. Proposed Salary" -msgstr "" +msgstr "Salariul Mediu Propus" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1157,12 +1218,12 @@ msgstr "Noiembrie" #. module: hr_recruitment #: field:hr.recruitment.report,salary_exp_avg:0 msgid "Avg. Expected Salary" -msgstr "" +msgstr "Salariul Mediu Estimat" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Expected Salary" -msgstr "" +msgstr "Salariul Mediu Estimat" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create @@ -1177,7 +1238,7 @@ msgstr "Aceste persoane vor primi e-mail." #. module: hr_recruitment #: field:hr.job,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -1187,22 +1248,22 @@ msgstr "Recrutare in asteptare" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Contract" -msgstr "" +msgstr "Contract" #. module: hr_recruitment #: field:hr.applicant,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Continut" #. module: hr_recruitment #: help:hr.applicant,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Istoric mesaje si conversatii" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused msgid "Applicant refused" -msgstr "" +msgstr "Candidat respins" #. module: hr_recruitment #: field:hr.recruitment.stage,department_id:0 @@ -1233,7 +1294,7 @@ msgstr "Recrutari nealocate" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.setari" #. module: hr_recruitment #: help:hr.recruitment.stage,state:0 @@ -1243,6 +1304,10 @@ msgid "" "related to the status 'Close', when your document reach this stage, it will " "be automatically closed." msgstr "" +"Starea asociata etapei. Starea documentului dumneavoastra se va modifica " +"automat in functie de etapa selectata. De exemplu, o etapa este asociata " +"starii 'Inchisa', iar atunci cand documentul dumneavoastra ajunge in aceasta " +"etapa, el va fi inchis automat." #. module: hr_recruitment #: help:hr.applicant,salary_proposed_extra:0 @@ -1262,9 +1327,9 @@ msgstr "Deschideti" #. module: hr_recruitment #: view:board.board:0 msgid "Applications to be Processed" -msgstr "" +msgstr "Cereri care vor fi Procesate" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule Interview" -msgstr "" +msgstr "Programeaza un Interviu" diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index 86658eb1023..7594f06de10 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/i18n/nl.po @@ -8,14 +8,14 @@ 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: 2012-12-25 21:11+0000\n" +"PO-Revision-Date: 2013-01-28 11:25+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -130,7 +130,7 @@ msgstr "Vr" #: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_all_form #: model:ir.ui.menu,name:hr_timesheet.menu_hr_working_hours msgid "Timesheet Activities" -msgstr "Urenstaking activiteiten" +msgstr "Urenstaten activiteiten" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index 05983eb3c29..adbe990ab92 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:23+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -437,7 +437,7 @@ msgstr "Junho" #: field:hr.sign.in.project,state:0 #: field:hr.sign.out.project,state:0 msgid "Current Status" -msgstr "" +msgstr "Estado atual" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -647,7 +647,7 @@ msgstr "Abril" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erro do utilizador!" #. module: hr_timesheet #: view:hr.sign.in.project:0 diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index f786cfb9eb7..cd767485c97 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/i18n/ro.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 18:11+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -42,6 +42,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nu exista inca nici o activitate in acest contract.\n" +"

\n" +" In OpenERP, contractele si proiectele sunt implementate " +"folosind\n" +" conturi analitice. Astfel, puteti tine evidenta costurilor " +"si a veniturilor pentru a analiza\n" +" limitele cu usurinta.\n" +"

\n" +" Costurile vor fi create automat atunci cand inregistrati " +"facturile\n" +" furnizorilor, cheltuieli sau fise de pontaj.\n" +"

\n" +" Veniturile vor fi create automat atunci cand creati " +"facturile\n" +" clientilor. Facurile clientilor pot fi create pe baza " +"comenzilor de vanzare\n" +" (facturi cu preturi fixe), fiselor de pontaj (bazate pe " +"lucrul efectuat) sau\n" +" pe cheltuieli (de exemplu refacturarea consturilor de " +"transport).\n" +"

\n" +" " #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -76,7 +99,7 @@ msgstr "" #. module: hr_timesheet #: field:hr.employee,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unitatea de Masura" #. module: hr_timesheet #: field:hr.employee,journal_id:0 @@ -104,7 +127,7 @@ msgstr "Fisa de pontaj" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "Va rugam sa definiti angajatul pentru acest utilizator!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -130,7 +153,7 @@ msgstr "Vineri" #: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_all_form #: model:ir.ui.menu,name:hr_timesheet.menu_hr_working_hours msgid "Timesheet Activities" -msgstr "" +msgstr "Activitati in Fisa de pontaj" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 @@ -167,12 +190,12 @@ msgstr "Tipariti Fisa de pontaj a angajatilor" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "Va rugam sa definiti angajatul pentru utilizatorul dumneavoastra." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue msgid "Costs & Revenues" -msgstr "" +msgstr "Costuri & Venituri" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -189,7 +212,7 @@ msgstr "Cont analitic" #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Costs and Revenues" -msgstr "" +msgstr "Costuri si Venituri" #. module: hr_timesheet #: code:addons/hr_timesheet/hr_timesheet.py:144 @@ -199,7 +222,7 @@ msgstr "" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertisment!" #. module: hr_timesheet #: field:hr.analytic.timesheet,partner_id:0 @@ -245,6 +268,17 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a inregistra activitatile.\n" +"

\n" +" Puteti sa inregistrati si sa tineti evidenta programului de " +"lucru pentru fiecare proiect in fiecare\n" +" zi. Fiecare ora petrecuta la proiect va deveni un cost in " +"contabilitatea\n" +" analitica/contract si poate fi refacturata\n" +" clientilor daca este necesar.\n" +"

\n" +" " #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 @@ -255,7 +289,7 @@ msgstr "Tipariti" #. module: hr_timesheet #: help:account.analytic.account,use_timesheets:0 msgid "Check this field if this project manages timesheets" -msgstr "" +msgstr "Selectati acest camp daca acest proiect gestioneaza fisele de pontaj" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -281,7 +315,7 @@ msgstr "Data de inceput" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:77 #, python-format msgid "Please define cost unit for this employee." -msgstr "" +msgstr "Va rugam sa definiti costul unitar pentru acest angajat." #. module: hr_timesheet #: help:hr.employee,product_id:0 @@ -295,6 +329,9 @@ msgid "" "No analytic account is defined on the project.\n" "Please set one or we cannot automatically fill the timesheet." msgstr "" +"Nici un cont analitic nu este definit pentru proiect.\n" +"Va rugam sa configurati unul, in caz contrar nu vom putea completa automat " +"fisa de pontaj." #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -308,6 +345,9 @@ msgid "" "No 'Analytic Journal' is defined for employee %s \n" "Define an employee for the selected user and assign an 'Analytic Journal'!" msgstr "" +"Nici un 'Registru Analitic' nu este definit pentru angajatul %s \n" +"Definiti un angajat pentru utilizatorul selectat si atribuiti un 'Registru " +"Analitic'!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -349,12 +389,12 @@ msgstr "Descrierea muncii" #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr_timesheet #: xsl:hr.analytical.timesheet:0 msgid "Timesheet by Employee" -msgstr "" +msgstr "Fisa de Pontaj dupa Angajat" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet @@ -423,6 +463,8 @@ msgid "" "No analytic journal defined for '%s'.\n" "You should assign an analytic journal on the employee form." msgstr "" +"Nici un registru analitic nu este definit pentru '%s'.\n" +"Ar trebui sa atribuiti un registru analitic pentru formularul angajatului." #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -437,7 +479,7 @@ msgstr "Iunie" #: field:hr.sign.in.project,state:0 #: field:hr.sign.out.project,state:0 msgid "Current Status" -msgstr "" +msgstr "Stara Actuala" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -503,7 +545,7 @@ msgstr "ID angajat" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 msgid "Period" -msgstr "" +msgstr "Perioada" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -617,6 +659,8 @@ msgid "" "Please create an employee for this user, using the menu: Human Resources > " "Employees." msgstr "" +"Va rugam sa creati un angajat pentru acest utilizator, folosind meniul: " +"Resurse Umane > Angajati." #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -646,7 +690,7 @@ msgstr "Aprilie" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "User Error!" -msgstr "" +msgstr "Eroare utilizator!" #. module: hr_timesheet #: view:hr.sign.in.project:0 @@ -662,7 +706,7 @@ msgstr "An" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Duration" -msgstr "" +msgstr "Durata" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index e37c9d6aeed..02ef7fe2da6 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/i18n/ro.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 19:08+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:47+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -26,7 +26,7 @@ msgstr "Fisa de pontaj dupa utilizator" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Nume Intern" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -39,18 +39,20 @@ msgid "" "The product to invoice is defined on the employee form, the price will be " "deducted by this pricelist on the product." msgstr "" +"Produsul de facturat este definit in formularul angajatului, pretul va fi " +"dedus de aceasta lista de preturi din produs." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Nu au fost gasite inregistrari pentru acest raport." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Date Insuficiente!" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -70,7 +72,7 @@ msgstr "Venit" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,name:0 msgid "Log of Activity" -msgstr "" +msgstr "Jurnal de Activitate" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -80,7 +82,7 @@ msgstr "Redeschideti proiectul" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unitatea de Masura" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user @@ -129,6 +131,9 @@ msgid "" "Fill this field only if you want to force to use a specific product. Keep " "empty to use the real product that comes from the cost." msgstr "" +"Completati acest camp numai daca doriti sa folositi neaparat un anumit " +"produs. Lasati necompletat pentru a folosi produsul real care provine din " +"cost." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,help:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -146,6 +151,19 @@ msgid "" "

\n" " " msgstr "" +"\n" +" Dati click pentru a adauga un nou tip de facturare.\n" +"

\n" +" OpenERP va permite sa creati tipuri de facturare implicite. " +"S-ar putea sa\n" +" trebuiasca sa atribuiti in mod regulat reduceri din cauza " +"unui anumit\n" +" contract sau a unei intelegeri cu un client. Din acest meniu " +"puteti\n" +" crea tipuri suplimentare de facturare pentru a accelera\n" +" facturarea.\n" +"

\n" +" " #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -166,7 +184,7 @@ msgstr "Suma facturata" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 #, python-format msgid "Analytic Account incomplete !" -msgstr "" +msgstr "Cont Analitic incomplet !" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 @@ -176,7 +194,7 @@ msgstr "Proiect" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Invoice on Timesheets Options" -msgstr "" +msgstr "Facturare pe Optiunile FIsei de pontaj" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,amount:0 @@ -191,7 +209,7 @@ msgstr "Detaliile fiecarei activitati prestate vor aparea pe factura" #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Lista de preturi" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -216,6 +234,11 @@ msgid "" "20% advance invoice (fixed price, based on a sales order), you should " "invoice the rest on timesheet with a 80% ratio." msgstr "" +"De obicei facturati 100% din fisele de pontaj. Dar daca amestecati pretul " +"fix si facturarea fiselor de pontaj, puteti folosi un alt raport. De " +"exemplu, daca faceti o factura cu un avans de 20% (pretul fix, bazat pe o " +"comanda de vanzari), ar trebui sa facturati restul in fisa de pontaj cu un " +"raport de 80%." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -245,7 +268,7 @@ msgstr "Termen limita" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Eroare de configurare!" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 @@ -260,7 +283,7 @@ msgstr "Timpul fiecarei activitati efectuate va fi afisat pe factura" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Cancel Contract" -msgstr "" +msgstr "Anuleaza Contractul" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,date_from:0 @@ -282,7 +305,7 @@ msgstr "Costuri de facturat" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 #, python-format msgid "Please define income account for product '%s'." -msgstr "" +msgstr "Va rugam sa definiti contul de venituri pentru produsul '%s'." #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,account_id:0 @@ -337,12 +360,12 @@ msgstr "Profit Fisa de pontaj" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 msgid "Force Product" -msgstr "" +msgstr "Forteaza Produsul" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Contract Finished" -msgstr "" +msgstr "Contract Finalizat" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -356,13 +379,13 @@ msgstr "Iulie" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Invoiceable" -msgstr "" +msgstr "Poate fi facturat" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertisment!" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -378,7 +401,7 @@ msgstr "Teoretic" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor3 msgid "Free of charge" -msgstr "" +msgstr "Gratuit" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_account_analytic_line_to_invoice @@ -409,7 +432,7 @@ msgstr "Da (100%)" #. module: hr_timesheet_invoice #: view:report_timesheet.user:0 msgid "Timesheet by users" -msgstr "" +msgstr "Fise de pontaj dupa utilizatori" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:58 @@ -488,7 +511,7 @@ msgstr "Total facturat" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,state:0 msgid "Status" -msgstr "" +msgstr "Stare" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_analytic_line @@ -606,7 +629,7 @@ msgstr "Data" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Timp" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -651,6 +674,8 @@ msgid "" "It allows to set the discount while making invoice, keep empty if the " "activities should not be invoiced." msgstr "" +"Permite configurarea reducerii in timp ce faceti factura, lasati necompletat " +"daca activitatile nu trebuie facturate." #. module: hr_timesheet_invoice #: field:account.analytic.account,amount_max:0 @@ -660,7 +685,7 @@ msgstr "Pret maxim factura" #. module: hr_timesheet_invoice #: field:account.analytic.account,to_invoice:0 msgid "Timesheet Invoicing Ratio" -msgstr "" +msgstr "Raportul de Facturare a Fisei de pontaj" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -711,7 +736,7 @@ msgstr "Catre" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Do you want to show details of work in invoice?" -msgstr "" +msgstr "Doriti ca detaliile muncii sa apara pe factura?" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -747,6 +772,8 @@ msgstr "Fise de pontaj de facturat" msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." msgstr "" +"Contract incomplet. Va rugam sa completati campurile Client si Lista de " +"preturi." #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_date_stat_all @@ -769,7 +796,7 @@ msgstr "Tipuri de facurare" #. module: hr_timesheet_invoice #: view:hr.analytic.timesheet:0 msgid "Invoicing" -msgstr "" +msgstr "Facturare" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -793,7 +820,7 @@ msgstr "Produsul care va fi folosit pentru a factura suma ramasa" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,time:0 msgid "Time Spent" -msgstr "" +msgstr "Timp petrecut" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_max:0 @@ -805,6 +832,7 @@ msgstr "" #: view:hr.timesheet.invoice.create.final:0 msgid "Do you want to show details of each activity to your customer?" msgstr "" +"Doriti sa aratati detaliile fiecarei activitati clientului dumneavoastra?" #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 @@ -833,7 +861,7 @@ msgstr "Nume" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "" +msgstr "Linii Analitice" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -866,6 +894,8 @@ msgid "" "There is no product defined. Please select one or force the product through " "the wizard." msgstr "" +"Nu exista nici un produs definit. Va rugam sa selectati unul sau sa fortati " +"produsul prin wizard." #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,factor:0 @@ -894,19 +924,19 @@ msgstr "Unitati" #: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 #, python-format msgid "Error!" -msgstr "" +msgstr "Eroare!" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor4 msgid "80%" -msgstr "" +msgstr "80%" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 #: view:hr.timesheet.invoice.create:0 #: view:hr.timesheet.invoice.create.final:0 msgid "or" -msgstr "" +msgstr "sau" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,manager_id:0 @@ -936,4 +966,4 @@ msgstr "An" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Duration" -msgstr "" +msgstr "Durata" diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 625953b01d4..8329623af83 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-28 17:43+0000\n" +"Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -958,7 +958,7 @@ msgstr "Status ist Genehmigt" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index 63ba2a377c3..5fc0d4bd37f 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/i18n/nl.po @@ -8,14 +8,14 @@ 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: 2012-12-25 21:07+0000\n" +"PO-Revision-Date: 2013-01-28 11:26+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -123,7 +123,7 @@ msgstr "Zet op concept" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Timesheet Period" -msgstr "Urenstaking periode" +msgstr "Urenstaten periode" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,date_to:0 @@ -189,7 +189,7 @@ msgstr "Weigeren" #: view:hr_timesheet_sheet.sheet:0 #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet msgid "Timesheet Activities" -msgstr "Urenstaking activiteiten" +msgstr "Urenstaten activiteiten" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 @@ -411,7 +411,7 @@ msgstr "Totale tijd" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form msgid "Timesheets to Validate" -msgstr "Urenstaking te valideren" +msgstr "Urenstaten te valideren" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -1010,7 +1010,7 @@ msgstr "Verschil" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 #, python-format msgid "You cannot duplicate a timesheet." -msgstr "Het is niet mogelijk een urenstaking te dupliceren." +msgstr "Het is niet mogelijk een urenstaat te dupliceren." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 891f196fbf5..817a42dd0d6 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:07+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -93,7 +93,7 @@ msgstr "#Cost" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens por ler" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -591,7 +591,7 @@ msgstr "Nota" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:33 #, python-format msgid "Add" -msgstr "" +msgstr "Adicionar" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -634,7 +634,7 @@ msgstr "" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Linha analítica" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -1088,7 +1088,7 @@ msgstr "Aprovar" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Histórico de mensagens e comunicação" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,account_ids:0 diff --git a/addons/l10n_ar/i18n/pt_BR.po b/addons/l10n_ar/i18n/pt_BR.po new file mode 100644 index 00000000000..5b967466e90 --- /dev/null +++ b/addons/l10n_ar/i18n/pt_BR.po @@ -0,0 +1,174 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 09:50+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 +msgid "Otros Créditos" +msgstr "Outros Créditos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_view +msgid "Vista" +msgstr "Visão" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_160 +msgid "Ganancia (Pérdida) Neta del Ejercicio" +msgstr "Lucro (Prejuízo) do Exercício" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAN_10 +msgid "Deudas Bancarias y Financieras a Largo Plazo" +msgstr "Empréstimos a Longo Prazo" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAN_40 +msgid "Previsiones" +msgstr "Previsões" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_040 +msgid "Gastos de Administración" +msgstr "Despesas Administrativas" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAN_20 +msgid "Otros Pasivos a Largo Plazo" +msgstr "Outros Exigível a Longo Prazo" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_NCLASIFICADO +msgid "Cuentas No Clasificadas" +msgstr "Contas não Classificadas" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_30 +msgid "Créditos por Ventas" +msgstr "Contas a Receber" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_080 +msgid "Otros Ingresos" +msgstr "Outras Receitas" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_ORD +msgid "Cuentas de Orden" +msgstr "Contas de Compensação" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_090 +msgid "Otros Gastos" +msgstr "Outras Despesas" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_030 +msgid "Costo Mercaderías y Servicios Vendidos" +msgstr "Custo das Mercadorias e Serviços Vendidos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACN_40 +msgid "Inversiones Permanentes" +msgstr "Investimento de Longo Prazo" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_20 +msgid "Inversiones" +msgstr "Investimentos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_010 +msgid "Ventas Netas de Bienes y Servicios" +msgstr "Vendas Líquidas de Bens e Serviços" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACN_10 +msgid "Otros Créditos No Corrientes" +msgstr "Outros Ativos Não Circulantes" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAC_40 +msgid "Cargas Fiscales" +msgstr "Impostos Fiscais" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_050 +msgid "Gastos de Comercialización" +msgstr "Despesas com Vendas" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_070 +msgid "Gastos Financieros y por tenencia" +msgstr "Despesas financeiras e por titulares" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAC_45 +msgid "Otros Pasivos" +msgstr "Outros Passivos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_060 +msgid "Ingresos Financieros y por tenencia" +msgstr "Receita Financeira" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAC_20 +msgid "Cuentas por Pagar" +msgstr "Contas a Pagar" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAC_35 +msgid "Remuneraciones y Cargas Sociales" +msgstr "Salários e Encargos Sociais" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_10 +msgid "Caja y Bancos" +msgstr "Caixa e Bancos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PAC_10 +msgid "Deudas Bancarias y Financieras" +msgstr "Obrigações Bancárias e Financeiras" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_60 +msgid "Bienes de Cambio" +msgstr "Estoques" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_PTN_10 +msgid "Patrimonio Neto" +msgstr "Patrimônio" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_BG_ACN_50 +msgid "Bienes de Uso" +msgstr "Ativos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_NA_010 +msgid "Compras de Bienes de Uso" +msgstr "Aquisição de ativos fixos" + +#. module: l10n_ar +#: model:account.account.type,name:l10n_ar.account_account_type_EGP_FU_120 +msgid "Impuesto a las Ganancias" +msgstr "Imposto de Renda" diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index 61f23844542..5cf42fe6167 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:07+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 @@ -25,7 +26,7 @@ msgstr "" #. module: l10n_be #: field:vat.listing.clients,turnover:0 msgid "Base Amount" -msgstr "" +msgstr "Valor Base" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_rmunrationschargessocialesetpensions2 @@ -40,7 +41,7 @@ msgstr "" #. module: l10n_be #: field:l1on_be.vat.declaration,tax_code_id:0 msgid "Tax Code" -msgstr "Tax Code" +msgstr "Código do Imposto" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_produitsetchargesdexploitation1 @@ -60,7 +61,7 @@ msgstr "" #: view:partner.vat.list:0 #: field:partner.vat.list,comments:0 msgid "Comments" -msgstr "" +msgstr "Comentários" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_primesdmission2 diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index 9e82cf52e3c..9108d49d9b2 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/i18n/pt_BR.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 01:04+0000\n" +"Last-Translator: rsevero \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 msgid "Cash withdrawal on card (PROTON)" -msgstr "" +msgstr "Saque de dinheiro no cartão (PROTON)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_412 @@ -30,22 +30,22 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_11 msgid "Your purchase of luncheon vouchers" -msgstr "" +msgstr "Sua compra de tickets refeição" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_05 msgid "Partial payment subscription" -msgstr "" +msgstr "Pagamento parcial de assinatura" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_54 msgid "Unexecutable transfer order" -msgstr "" +msgstr "Ordem de transferência não executável" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_02 msgid "Individual transfer order initiated by the bank" -msgstr "" +msgstr "Ordem de transferência individual iniciada pelo banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index 027cc074b3b..f6ecdcf27ef 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/i18n/pt.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:30+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 @@ -110,7 +110,7 @@ msgstr "" #. module: l10n_be_hr_payroll #: model:ir.model,name:l10n_be_hr_payroll.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: l10n_be_hr_payroll #: field:hr.contract,meal_voucher_amount:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index ce456c56a07..c73376bfb43 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:19+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 @@ -128,6 +129,7 @@ msgstr "Reembolso de despeza de viagem" #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"Erro! A data de início do contrato deve ser anterior a data de término." #. module: l10n_be_hr_payroll #: field:hr.employee,spouse_fiscal_status:0 @@ -142,7 +144,7 @@ msgstr "Quantidade de filhos declarados como incapazes" #. module: l10n_be_hr_payroll #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Erro! Você não pode criar hierarquias recursivas para Funcionários" #. module: l10n_be_hr_payroll #: field:hr.contract,meal_voucher_employee_deduction:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt_BR.po b/addons/l10n_be_invoice_bba/i18n/pt_BR.po new file mode 100644 index 00000000000..1c127f7b80b --- /dev/null +++ b/addons/l10n_be_invoice_bba/i18n/pt_BR.po @@ -0,0 +1,147 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 09:24+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_be_invoice_bba +#: sql_constraint:account.invoice:0 +msgid "Invoice Number must be unique per Company!" +msgstr "O Número da Fatura deve ser único por Empresa!" + +#. module: l10n_be_invoice_bba +#: model:ir.model,name:l10n_be_invoice_bba.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_be_invoice_bba +#: constraint:res.partner:0 +msgid "Error ! You cannot create recursive associated members." +msgstr "Erro! Você não pode criar membros associados recursivamente." + +#. module: l10n_be_invoice_bba +#: constraint:account.invoice:0 +msgid "Invalid BBA Structured Communication !" +msgstr "Comunicação estruturada BBA inválida !" + +#. module: l10n_be_invoice_bba +#: selection:res.partner,out_inv_comm_algorithm:0 +msgid "Random" +msgstr "Aleatório" + +#. module: l10n_be_invoice_bba +#: help:res.partner,out_inv_comm_type:0 +msgid "Select Default Communication Type for Outgoing Invoices." +msgstr "Escolha o Tipo de Comunicação padrão para as Faturas" + +#. module: l10n_be_invoice_bba +#: help:res.partner,out_inv_comm_algorithm:0 +msgid "" +"Select Algorithm to generate the Structured Communication on Outgoing " +"Invoices." +msgstr "" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:109 +#: code:addons/l10n_be_invoice_bba/invoice.py:135 +#, python-format +msgid "" +"The daily maximum of outgoing invoices with an automatically generated BBA " +"Structured Communications has been exceeded!\n" +"Please create manually a unique BBA Structured Communication." +msgstr "" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:150 +#, python-format +msgid "Error!" +msgstr "Erro!" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:121 +#, python-format +msgid "" +"The Partner should have a 3-7 digit Reference Number for the generation of " +"BBA Structured Communications!\n" +"Please correct the Partner record." +msgstr "" + +#. module: l10n_be_invoice_bba +#: constraint:res.partner:0 +msgid "Error: Invalid ean code" +msgstr "Error: código EAN invalido" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:108 +#: code:addons/l10n_be_invoice_bba/invoice.py:120 +#: code:addons/l10n_be_invoice_bba/invoice.py:134 +#: code:addons/l10n_be_invoice_bba/invoice.py:162 +#: code:addons/l10n_be_invoice_bba/invoice.py:172 +#: code:addons/l10n_be_invoice_bba/invoice.py:197 +#, python-format +msgid "Warning!" +msgstr "Aviso!" + +#. module: l10n_be_invoice_bba +#: selection:res.partner,out_inv_comm_algorithm:0 +msgid "Customer Reference" +msgstr "Referência do Cliente" + +#. module: l10n_be_invoice_bba +#: field:res.partner,out_inv_comm_type:0 +msgid "Communication Type" +msgstr "Tipo de Comunicação" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:173 +#: code:addons/l10n_be_invoice_bba/invoice.py:198 +#, python-format +msgid "" +"The BBA Structured Communication has already been used!\n" +"Please create manually a unique BBA Structured Communication." +msgstr "" + +#. module: l10n_be_invoice_bba +#: selection:res.partner,out_inv_comm_algorithm:0 +msgid "Date" +msgstr "Data" + +#. module: l10n_be_invoice_bba +#: model:ir.model,name:l10n_be_invoice_bba.model_res_partner +msgid "Partner" +msgstr "Parceiro" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:151 +#, python-format +msgid "" +"Unsupported Structured Communication Type Algorithm '%s' !\n" +"Please contact your OpenERP support channel." +msgstr "" + +#. module: l10n_be_invoice_bba +#: field:res.partner,out_inv_comm_algorithm:0 +msgid "Communication Algorithm" +msgstr "Algorítimo deComunicação" + +#. module: l10n_be_invoice_bba +#: code:addons/l10n_be_invoice_bba/invoice.py:163 +#, python-format +msgid "" +"Empty BBA Structured Communication!\n" +"Please fill in a unique BBA Structured Communication." +msgstr "" diff --git a/addons/l10n_br/i18n/pt_BR.po b/addons/l10n_br/i18n/pt_BR.po index 8e844f908d7..bccf3cf2e89 100644 --- a/addons/l10n_br/i18n/pt_BR.po +++ b/addons/l10n_br/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:14+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 @@ -82,6 +83,8 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Erro!\n" +"Você não pode criar contas recursivas." #. module: l10n_br #: field:account.tax,amount_mva:0 @@ -154,6 +157,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Erro!\n" +"Você não pode criar códigos de imposto recursivos." #. module: l10n_br #: help:account.tax,tax_discount:0 diff --git a/addons/l10n_cl/i18n/pt_BR.po b/addons/l10n_cl/i18n/pt_BR.po new file mode 100644 index 00000000000..24f89c38abd --- /dev/null +++ b/addons/l10n_cl/i18n/pt_BR.po @@ -0,0 +1,174 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 09:28+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 +msgid "Derechos por Cobrar No Corriente" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_view +msgid "Vista" +msgstr "Visão" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACC_60 +msgid "Inventarios" +msgstr "Inventários" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_050 +msgid "Costos por Distribución" +msgstr "Custos de Distribuição" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_040 +msgid "Gastos de Administración" +msgstr "Despesas Administrativas" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACC_10 +msgid "Efectivo y Equivalentes al Efectivo" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_NCLASIFICADO +msgid "Cuentas No Clasificadas" +msgstr "Contas não Classificadas" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_060 +msgid "Ingresos Financieros" +msgstr "Resultado Financeiro" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_160 +msgid "Ganancia (Pérdida)" +msgstr "Ganho (Perda)" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_NA_010 +msgid "Compras de Activo Fijo" +msgstr "Aquisição de ativos fixos" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_080 +msgid "Otros Ingresos" +msgstr "Outras Receitas" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_ORD +msgid "Cuentas de Orden" +msgstr "Contas de Compensação" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_090 +msgid "Otros Gastos" +msgstr "Outras Despesas" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAC_10 +msgid "Otros Pasivos Financieros" +msgstr "Outros Passivos Financeiros" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_120 +msgid "Gasto Impuesto a las Renta" +msgstr "Despesa de Imposto de Renda" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_40 +msgid "Otros Activos No Financieros" +msgstr "Outros ativos não financeiros" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAC_45 +msgid "Pasivos por Impuestos Corrientes" +msgstr "Passivos por impostos correntes" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAC_40 +msgid "Otras Provisiones Corrientes" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_030 +msgid "Costo de Ventas" +msgstr "Custo das Vendas" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACC_20 +msgid "Otros Activos Financieros Corrientes" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAN_10 +msgid "Otros Pasivos Financieros No Corrientes" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAN_20 +msgid "Otros Cuentas por Pagar No Corrientes" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAC_35 +msgid "Otras Cuentas por Pagar" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_50 +msgid "Propiedades, Planta y Equipo" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_070 +msgid "Costos Financieros" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAN_40 +msgid "Otras Provisiones No Corrientes" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACC_30 +msgid "Deudores Comerciales" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_EGP_FU_010 +msgid "Ingresos por Actividades Ordinarias" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_ACC_50 +msgid "Otras Cuentas por Cobrar" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PTN_10 +msgid "Patrimonio Neto" +msgstr "" + +#. module: l10n_cl +#: model:account.account.type,name:l10n_cl.account_account_type_BG_PAC_20 +msgid "Cuentas por Pagar Comerciales" +msgstr "" diff --git a/addons/l10n_ec/i18n/pt_BR.po b/addons/l10n_ec/i18n/pt_BR.po index fac1c48f360..4b4a09afb0c 100644 --- a/addons/l10n_ec/i18n/pt_BR.po +++ b/addons/l10n_ec/i18n/pt_BR.po @@ -8,66 +8,67 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:33+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense msgid "Gasto" -msgstr "" +msgstr "Despesas" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_stock msgid "Inventario" -msgstr "" +msgstr "Inventário" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_liability msgid "Pasivo" -msgstr "" +msgstr "Passivo" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_receivable msgid "Por Cobrar" -msgstr "" +msgstr "A Receber" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_asset msgid "Activo" -msgstr "" +msgstr "Ativo" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_tax msgid "Impuesto" -msgstr "" +msgstr "Impostos" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_capital msgid "Capital" -msgstr "" +msgstr "Capital" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_cash msgid "Efectivo" -msgstr "" +msgstr "Caixa" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_payable msgid "Por Pagar" -msgstr "" +msgstr "A Pagar" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_income msgid "Ingreso" -msgstr "" +msgstr "Receitas" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_view msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/l10n_es/i18n/pt_BR.po b/addons/l10n_es/i18n/pt_BR.po index 8cc3d953313..5d25a42f8dc 100644 --- a/addons/l10n_es/i18n/pt_BR.po +++ b/addons/l10n_es/i18n/pt_BR.po @@ -8,76 +8,77 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:38+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo msgid "Inmobilizado" -msgstr "" +msgstr "Imobilizado" #. module: l10n_es #: model:account.account.type,name:l10n_es.stock msgid "Existencias" -msgstr "" +msgstr "Estoques" #. module: l10n_es #: model:account.account.type,name:l10n_es.terceros_-_pay msgid "Terceros - A Pagar" -msgstr "" +msgstr "Terceiros - A Pagar" #. module: l10n_es #: model:account.account.type,name:l10n_es.ingresos_neto msgid "Ingresos patrimonio neto" -msgstr "" +msgstr "Resultado de equivalência patrimonial" #. module: l10n_es #: model:account.account.type,name:l10n_es.gastos_neto msgid "Gastos patrimonio neto" -msgstr "" +msgstr "Despesas Líquidas" #. module: l10n_es #: model:account.account.type,name:l10n_es.financieras msgid "Financieras" -msgstr "" +msgstr "Financeiras" #. module: l10n_es #: model:account.account.type,name:l10n_es.tax msgid "Impuestos" -msgstr "" +msgstr "Impostos" #. module: l10n_es #: model:account.account.type,name:l10n_es.ingresos msgid "Ingresos" -msgstr "" +msgstr "Receitas" #. module: l10n_es #: model:account.account.type,name:l10n_es.terceros_-_rec msgid "Terceros - A Cobrar" -msgstr "" +msgstr "Terceiros - A Receber" #. module: l10n_es #: model:account.account.type,name:l10n_es.capital msgid "Capital" -msgstr "" +msgstr "Capital" #. module: l10n_es #: model:account.account.type,name:l10n_es.gastos msgid "Gastos" -msgstr "" +msgstr "Despesas" #. module: l10n_es #: model:account.account.type,name:l10n_es.terceros msgid "Terceros" -msgstr "" +msgstr "Terceiros" #. module: l10n_es #: model:account.account.type,name:l10n_es.view msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index 2687b76950c..9003702348a 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -8,19 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:39+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_fr #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erro! Você não pode criar empresas recursivas." #. module: l10n_fr #: view:account.bilan.report:0 @@ -71,7 +72,7 @@ msgstr "Definition" #. module: l10n_fr #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "" +msgstr "O nome da empresa deve ser exclusivo!" #. module: l10n_fr #: field:l10n.fr.line,name:0 @@ -94,7 +95,7 @@ msgstr "" #. module: l10n_fr #: model:ir.model,name:l10n_fr.model_res_company msgid "Companies" -msgstr "" +msgstr "Empresas" #. module: l10n_fr #: sql_constraint:l10n.fr.report:0 @@ -148,7 +149,7 @@ msgstr "Variable Name" #: view:account.bilan.report:0 #: view:account.cdr.report:0 msgid "or" -msgstr "" +msgstr "ou" #. module: l10n_fr #: field:res.company,ape:0 diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po new file mode 100644 index 00000000000..01b70ec2c7f --- /dev/null +++ b/addons/l10n_fr_rib/i18n/pt_BR.po @@ -0,0 +1,136 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 09:45+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_fr_rib +#: constraint:res.partner.bank:0 +msgid "" +"\n" +"Please define BIC/Swift code on bank for bank type IBAN Account to make " +"valid payments" +msgstr "" +"\n" +"Por favor defina o BIC/Swift code no Banco para o tipo de conta IBAN para " +"fazer pagamentos válidos" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type,name:l10n_fr_rib.bank_rib +msgid "RIB and optional IBAN" +msgstr "RIB e IBAN Opcional" + +#. module: l10n_fr_rib +#: field:res.partner.bank,rib_acc_number:0 +msgid "RIB account number" +msgstr "Número da Conta RIB" + +#. module: l10n_fr_rib +#: field:res.partner.bank,bank_code:0 +msgid "Bank Code" +msgstr "Código do Banco" + +#. module: l10n_fr_rib +#: code:addons/l10n_fr_rib/bank.py:54 +#, python-format +msgid "The RIB key %s does not correspond to the other codes: %s %s %s." +msgstr "A chave RIB %s não corresponde aos outros códigos: %s %s %s." + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_office_field +msgid "office" +msgstr "escritório" + +#. module: l10n_fr_rib +#: field:res.bank,rib_code:0 +msgid "RIB Bank Code" +msgstr "Código RIB do Banco" + +#. module: l10n_fr_rib +#: code:addons/l10n_fr_rib/bank.py:58 +#, python-format +msgid "The IBAN %s is not valid." +msgstr "O IBAN %s não é válido." + +#. module: l10n_fr_rib +#: model:ir.model,name:l10n_fr_rib.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Contas Bancárias" + +#. module: l10n_fr_rib +#: field:res.partner.bank,office:0 +msgid "Office Code" +msgstr "Código do Escritório" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_bic_field +msgid "bank_bic" +msgstr "bank_bic" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_bank_code_field +msgid "bank_code" +msgstr "bank_code" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_key_field +msgid "key" +msgstr "chave" + +#. module: l10n_fr_rib +#: code:addons/l10n_fr_rib/bank.py:53 +#: code:addons/l10n_fr_rib/bank.py:58 +#, python-format +msgid "Error!" +msgstr "Erro!" + +#. module: l10n_fr_rib +#: help:res.partner.bank,key:0 +msgid "" +"The key is a number allowing to check the correctness of the other codes." +msgstr "" +"A chave é um número que permite verificar a procedência dos outros códigos." + +#. module: l10n_fr_rib +#: field:res.partner.bank,key:0 +msgid "Key" +msgstr "Chave" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_rib_acc_number_field +msgid "rib_acc_number" +msgstr "rib_acc_number" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type,format_layout:l10n_fr_rib.bank_rib +msgid "%(bank_name)s: %(bank_code)s %(office)s %(rib_acc_number)s %(key)s" +msgstr "%(bank_name)s: %(bank_code)s %(office)s %(rib_acc_number)s %(key)s" + +#. module: l10n_fr_rib +#: constraint:res.partner.bank:0 +msgid "The RIB and/or IBAN is not valid" +msgstr "A RIB e/ ou IBAN não é válido." + +#. module: l10n_fr_rib +#: model:ir.model,name:l10n_fr_rib.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: l10n_fr_rib +#: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_acc_number_field +msgid "acc_number" +msgstr "acc_number" diff --git a/addons/l10n_gt/i18n/pt_BR.po b/addons/l10n_gt/i18n/pt_BR.po index 4c7ef263213..aecc961f5e9 100644 --- a/addons/l10n_gt/i18n/pt_BR.po +++ b/addons/l10n_gt/i18n/pt_BR.po @@ -8,56 +8,57 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:47+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista msgid "Vista" -msgstr "" +msgstr "Visão" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_cxp msgid "Cuentas por Pagar" -msgstr "" +msgstr "Contas a Pagar" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_cxc msgid "Cuentas por Cobrar" -msgstr "" +msgstr "Contas a Receber" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_capital msgid "Capital" -msgstr "" +msgstr "Capital" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_pasivo msgid "Pasivo" -msgstr "" +msgstr "Passivo" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_ingresos msgid "Ingresos" -msgstr "" +msgstr "Receitas" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_activo msgid "Activo" -msgstr "" +msgstr "Ativo" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_gastos msgid "Gastos" -msgstr "" +msgstr "Despesas" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_efectivo msgid "Efectivo" -msgstr "" +msgstr "Caixa" diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po index edfad6d8461..ebf89d7e4e4 100644 --- a/addons/l10n_hn/i18n/pt_BR.po +++ b/addons/l10n_hn/i18n/pt_BR.po @@ -8,56 +8,57 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:48+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista msgid "Vista" -msgstr "" +msgstr "Visão" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_cxp msgid "Cuentas por Pagar" -msgstr "" +msgstr "Contas a Pagar" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_cxc msgid "Cuentas por Cobrar" -msgstr "" +msgstr "Contas a Receber" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_capital msgid "Capital" -msgstr "" +msgstr "Capital" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_pasivo msgid "Pasivo" -msgstr "" +msgstr "Passivo" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_ingresos msgid "Ingresos" -msgstr "" +msgstr "Receitas" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_activo msgid "Activo" -msgstr "" +msgstr "Ativo" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_gastos msgid "Gastos" -msgstr "" +msgstr "Despesas" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_efectivo msgid "Efectivo" -msgstr "" +msgstr "Caixa" diff --git a/addons/l10n_in/i18n/pt_BR.po b/addons/l10n_in/i18n/pt_BR.po index 7d4cf36f7d4..685567d06c2 100644 --- a/addons/l10n_in/i18n/pt_BR.po +++ b/addons/l10n_in/i18n/pt_BR.po @@ -8,29 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-12-23 09:56+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:58+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view msgid "Asset View" -msgstr "" +msgstr "Visualizar Patrimônio" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_expense1 msgid "Expense" -msgstr "" +msgstr "Despesa" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_income_view msgid "Income View" -msgstr "" +msgstr "Visualização de Recebíveis" #. module: l10n_in #: model:ir.actions.todo,note:l10n_in.config_call_account_template_in_minimal @@ -54,34 +55,34 @@ msgstr "" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_liability1 msgid "Liability" -msgstr "" +msgstr "Responsabilidade" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset1 msgid "Asset" -msgstr "" +msgstr "Patrimônio" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_closed1 msgid "Closed" -msgstr "" +msgstr "Fechado" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_income1 msgid "Income" -msgstr "" +msgstr "Receita" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_liability_view msgid "Liability View" -msgstr "" +msgstr "Ver Passivo" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_expense_view msgid "Expense View" -msgstr "" +msgstr "Visualizar Despesa" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_root_ind1 msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po new file mode 100644 index 00000000000..c1a4b949eeb --- /dev/null +++ b/addons/l10n_in_hr_payroll/i18n/pt_BR.po @@ -0,0 +1,1014 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 13:08+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "E-mail Address" +msgstr "Endereço de E-mail" + +#. module: l10n_in_hr_payroll +#: field:payment.advice.report,employee_bank_no:0 +msgid "Employee Bank Account" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Payment Advices which are in draft state" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Title" +msgstr "Tratamento" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "Payment Advice from" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_yearly_salary_detail +msgid "Hr Salary Employee By Category Report" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Payslips which are paid" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: view:payment.advice.report:0 +#: view:payslip.report:0 +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Allowances with Basic:" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Payslips which are in done state" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Department" +msgstr "Departamento" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Deductions:" +msgstr "Deduções:" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "A/C no." +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,driver_salay:0 +msgid "Driver Salary" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_yearly_salary_detail +#: model:ir.actions.report.xml,name:l10n_in_hr_payroll.yearly_salary +#: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_yearly_salary_detail +msgid "Yearly Salary by Employee" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.act_hr_emp_payslip_list +msgid "Payslips" +msgstr "Holerites" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "March" +msgstr "Março" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: field:hr.payroll.advice,company_id:0 +#: field:hr.payroll.advice.line,company_id:0 +#: view:payment.advice.report:0 +#: field:payment.advice.report,company_id:0 +#: view:payslip.report:0 +#: field:payslip.report,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "The Manager" +msgstr "O Gerente" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Letter Details" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Set to Draft" +msgstr "Definir como Provisório" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "to" +msgstr "para" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "Total :" +msgstr "Total:" + +#. module: l10n_in_hr_payroll +#: field:hr.payslip.run,available_advice:0 +msgid "Made Payment Advice?" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Advices which are paid using NEFT transfer" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:payslip.report,nbr:0 +msgid "# Payslip lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.contract,tds:0 +msgid "Amount for Tax Deduction at Source" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip +msgid "Pay Slip" +msgstr "Holerite" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +#: field:payment.advice.report,day:0 +#: view:payslip.report:0 +#: field:payslip.report,day:0 +msgid "Day" +msgstr "Dia" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Month of Payment Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: constraint:hr.payslip:0 +msgid "Payslip 'Date From' must be before 'Date To'." +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,batch_id:0 +msgid "Batch" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Code" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Other Information" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:hr.payroll.advice,state:0 +#: selection:payment.advice.report,state:0 +msgid "Cancelled" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payslip_report_all +msgid "This report performs analysis on Payslip" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "For" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Details by Salary Rule Category:" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,number:0 +#: report:paylip.details.in:0 +msgid "Reference" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,medical_insurance:0 +msgid "Medical Insurance" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Identification No" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +#: field:payslip.report,struct_id:0 +msgid "Structure" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "form period" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:hr.payroll.advice,state:0 +#: selection:payment.advice.report,state:0 +msgid "Confirmed" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +#: report:salary.employee.bymonth:0 +msgid "From" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,bysal:0 +#: field:payment.advice.report,bysal:0 +#: report:payroll.advice:0 +msgid "By Salary" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: view:payment.advice.report:0 +msgid "Confirm" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,chaque_nos:0 +#: field:payment.advice.report,cheque_nos:0 +msgid "Cheque Numbers" +msgstr "" + +#. module: l10n_in_hr_payroll +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_salary_employee_month +#: model:ir.actions.report.xml,name:l10n_in_hr_payroll.hr_salary_employee_bymonth +#: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_salary_employee_month +msgid "Yearly Salary by Head" +msgstr "" + +#. module: l10n_in_hr_payroll +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:134 +#, python-format +msgid "You can not confirm Payment advice without advice lines." +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "Yours Sincerely" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "# Payslip Lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.contract,medical_insurance:0 +msgid "Deduction towards company provided medical insurance" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice_line +msgid "Bank Advice Lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Day of Payslip" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Email" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.payslip.run,available_advice:0 +msgid "" +"If this box is checked which means that Payment Advice exists for current " +"batch" +msgstr "" + +#. module: l10n_in_hr_payroll +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:134 +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:190 +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 +#, python-format +msgid "Error !" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:payslip.report,paid:0 +msgid "Made Payment Order ? " +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.salary.employee.month:0 +#: view:yearly.salary.detail:0 +msgid "Print" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payslip.report,state:0 +msgid "Rejected" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Year of Payslip" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip_run +msgid "Payslip Batches" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,debit_credit:0 +#: report:payroll.advice:0 +msgid "C/D" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.employee.bymonth:0 +msgid "Yearly Salary Details" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payroll_advice +msgid "Print Advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,line_ids:0 +msgid "Employee Salary" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "July" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:res.company:0 +msgid "Configuration" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Payslip Line" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_view_hr_bank_advice_tree +#: model:ir.ui.menu,name:l10n_in_hr_payroll.hr_menu_payment_advice +msgid "Payment Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payment_advice_report_all +#: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payment_advice +#: view:payment.advice.report:0 +msgid "Advices Analysis" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.salary.employee.month:0 +msgid "" +"This wizard will print report which displays employees break-up of Net Head " +"for a specified dates." +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,ifsc:0 +msgid "IFSC" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: field:payslip.report,date_to:0 +msgid "Date To" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,tds:0 +msgid "TDS" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Confirm Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: constraint:hr.contract:0 +msgid "Error! Contract start-date must be less than contract end-date." +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:res.company,dearness_allowance:0 +msgid "Dearness Allowance" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "August" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.contract:0 +msgid "Deduction" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "SI. No." +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Payment Advices which are in confirm state" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "December" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Confirm Sheet" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +#: field:payment.advice.report,month:0 +#: view:payslip.report:0 +#: field:payslip.report,month:0 +msgid "Month" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Employee Code" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.salary.employee.month:0 +#: view:yearly.salary.detail:0 +msgid "or" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_salary_employee_month +msgid "Hr Salary Employee By Month Report" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.salary.employee.month,category_id:0 +#: view:payslip.report:0 +#: field:payslip.report,category_id:0 +msgid "Category" +msgstr "" + +#. module: l10n_in_hr_payroll +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:190 +#, python-format +msgid "" +"Payment advice already exists for %s, 'Set to Draft' to create a new advice." +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payslip.run:0 +msgid "To Advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Note" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Salary Rule Category" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: selection:hr.payroll.advice,state:0 +#: view:payment.advice.report:0 +#: selection:payment.advice.report,state:0 +#: view:payslip.report:0 +#: selection:payslip.report,state:0 +msgid "Draft" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: field:payslip.report,date_from:0 +msgid "Date From" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Employee Name" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_payment_advice_report +msgid "Payment Advice Analysis" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: field:hr.payroll.advice,state:0 +#: view:payment.advice.report:0 +#: field:payment.advice.report,state:0 +#: view:payslip.report:0 +#: field:payslip.report,state:0 +msgid "Status" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:res.company,dearness_allowance:0 +msgid "Check this box if your company provide Dearness Allowance to employee" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,ifsc_code:0 +#: field:payment.advice.report,ifsc_code:0 +#: report:payroll.advice:0 +msgid "IFSC Code" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "June" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Paid" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.contract,voluntary_provident_fund:0 +msgid "" +"VPF is a safe option wherein you can contribute more than the PF ceiling of " +"12% that has been mandated by the government and VPF computed as " +"percentage(%)" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +#: field:payment.advice.report,nbr:0 +msgid "# Payment Lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payslip_details_report +msgid "PaySlip Details" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Payment Lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,date:0 +#: field:payment.advice.report,date:0 +msgid "Date" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "November" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +#: view:payslip.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payment_advice_report_all +msgid "This report performs analysis on Payment Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "October" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: report:salary.detail.byyear:0 +msgid "Designation" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Month of Payslip" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "January" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:yearly.salary.detail:0 +msgid "Pay Head Employee Breakup" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_res_company +msgid "Companies" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: report:payroll.advice:0 +msgid "Authorized Signature" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_contract +msgid "Contract" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,supplementary_allowance:0 +msgid "Supplementary Allowance" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice.line:0 +msgid "Advice Lines" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "To," +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.contract,driver_salay:0 +msgid "Check this box if you provide allowance for driver" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +msgid "Payslips which are in draft state" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: field:hr.payroll.advice.line,advice_id:0 +#: field:hr.payslip,advice_id:0 +#: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice +msgid "Bank Advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Other No." +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Draft Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.payroll.advice,neft:0 +msgid "Check this box if your company use online transfer for salary" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:payment.advice.report,number:0 +#: field:payslip.report,number:0 +msgid "Number" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "September" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payslip.report:0 +#: selection:payslip.report,state:0 +msgid "Done" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: view:hr.salary.employee.month:0 +#: view:yearly.salary.detail:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Day of Payment Advices" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Search Payment advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:yearly.salary.detail:0 +msgid "" +"This wizard will print report which display a pay head employee breakup for " +"a specified dates." +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Pay Slip Details" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Total Salary" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,employee_id:0 +#: view:payment.advice.report:0 +#: field:payment.advice.report,employee_id:0 +#: view:payslip.report:0 +#: field:payslip.report,employee_id:0 +msgid "Employee" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +msgid "Compute Advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "Dear Sir/Madam," +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,note:0 +msgid "Description" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "May" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:res.company:0 +msgid "Payroll" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "NEFT" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: report:salary.detail.byyear:0 +msgid "Address" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: field:hr.payroll.advice,bank_id:0 +#: view:payment.advice.report:0 +#: field:payment.advice.report,bank_id:0 +#: report:payroll.advice:0 +#: report:salary.detail.byyear:0 +msgid "Bank" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.salary.employee.month,end_date:0 +#: field:yearly.salary.detail,date_to:0 +msgid "End Date" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "February" +msgstr "" + +#. module: l10n_in_hr_payroll +#: sql_constraint:res.company:0 +msgid "The company name must be unique !" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payroll.advice:0 +#: field:hr.payroll.advice,name:0 +#: report:paylip.details.in:0 +#: field:payment.advice.report,name:0 +#: field:payslip.report,name:0 +#: report:salary.employee.bymonth:0 +msgid "Name" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.salary.employee.month:0 +#: field:hr.salary.employee.month,employee_ids:0 +#: view:yearly.salary.detail:0 +#: field:yearly.salary.detail,employee_ids:0 +msgid "Employees" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Bank Account" +msgstr "" + +#. module: l10n_in_hr_payroll +#: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payslip_report_all +#: model:ir.model,name:l10n_in_hr_payroll.model_payslip_report +#: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payslip +#: view:payslip.report:0 +msgid "Payslip Analysis" +msgstr "" + +#. module: l10n_in_hr_payroll +#: selection:payment.advice.report,month:0 +#: selection:payslip.report,month:0 +msgid "April" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:payroll.advice:0 +msgid "Name of the Employe" +msgstr "" + +#. module: l10n_in_hr_payroll +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 +#: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 +#, python-format +msgid "Please define bank account for the %s employee" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.salary.employee.month,start_date:0 +#: field:yearly.salary.detail,date_from:0 +msgid "Start Date" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.contract:0 +msgid "Allowance" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,voluntary_provident_fund:0 +msgid "Voluntary Provident Fund (%)" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.contract,house_rent_allowance_metro_nonmetro:0 +msgid "House Rent Allowance (%)" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.payroll.advice,bank_id:0 +msgid "Select the Bank from which the salary is going to be paid" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.salary.employee.month:0 +msgid "Employee Pay Head Breakup" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:salary.detail.byyear:0 +msgid "Phone No." +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +msgid "Credit" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice.line,name:0 +#: report:payroll.advice:0 +msgid "Bank Account No." +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.payroll.advice,date:0 +msgid "Advice Date is used to search Payslips" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payslip.run:0 +msgid "Payslip Batches ready to be Adviced" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:hr.payslip.run:0 +msgid "Create Advice" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +#: field:payment.advice.report,year:0 +#: view:payslip.report:0 +#: field:payslip.report,year:0 +msgid "Year" +msgstr "" + +#. module: l10n_in_hr_payroll +#: field:hr.payroll.advice,neft:0 +#: field:payment.advice.report,neft:0 +msgid "NEFT Transaction" +msgstr "" + +#. module: l10n_in_hr_payroll +#: report:paylip.details.in:0 +#: field:payslip.report,total:0 +#: report:salary.detail.byyear:0 +#: report:salary.employee.bymonth:0 +msgid "Total" +msgstr "" + +#. module: l10n_in_hr_payroll +#: help:hr.contract,house_rent_allowance_metro_nonmetro:0 +msgid "" +"HRA is an allowance given by the employer to the employee for taking care of " +"his rental or accommodation expenses for metro city it is 50 % and for non " +"metro 40%.HRA computed as percentage(%)" +msgstr "" + +#. module: l10n_in_hr_payroll +#: view:payment.advice.report:0 +msgid "Year of Payment Advices" +msgstr "" diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index 38205d27b16..5dee0bf92a0 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:51+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_lu #: view:vat.declaration.report:0 @@ -41,7 +42,7 @@ msgstr "Receita" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_cash_moves msgid "Cash" -msgstr "" +msgstr "Dinheiro" #. module: l10n_lu #: model:ir.ui.menu,name:l10n_lu.legal_lu @@ -98,12 +99,12 @@ msgstr "Despesa" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_creances msgid "Créances" -msgstr "" +msgstr "Recebíveis" #. module: l10n_lu #: view:vat.declaration.report:0 msgid "or" -msgstr "" +msgstr "ou" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_root diff --git a/addons/l10n_ma/i18n/pt_BR.po b/addons/l10n_ma/i18n/pt_BR.po index 3a807f3aa5b..83de701db27 100644 --- a/addons/l10n_ma/i18n/pt_BR.po +++ b/addons/l10n_ma/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:53+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm @@ -50,7 +51,7 @@ msgstr "The code report must be unique !" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_stk msgid "Stocks" -msgstr "" +msgstr "Estoques" #. module: l10n_ma #: field:l10n.ma.line,code:0 @@ -81,7 +82,7 @@ msgstr "Linhas" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_tax msgid "Taxes" -msgstr "" +msgstr "Impostos" #. module: l10n_ma #: field:l10n.ma.line,report_id:0 @@ -136,7 +137,7 @@ msgstr "" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_cre msgid "Créances" -msgstr "" +msgstr "Recebíveis" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_aut diff --git a/addons/l10n_pe/i18n/pt_BR.po b/addons/l10n_pe/i18n/pt_BR.po index 3dd54c6c68e..cd0cc7c1957 100644 --- a/addons/l10n_pe/i18n/pt_BR.po +++ b/addons/l10n_pe/i18n/pt_BR.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 10:51+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 @@ -60,7 +61,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_040 msgid "Gastos de Administración" -msgstr "" +msgstr "Despesas Administrativas" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_PAC_35 @@ -100,17 +101,17 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_PTN_10 msgid "Capital" -msgstr "" +msgstr "Capital" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_NCLASIFICADO msgid "Cuentas No Clasificadas" -msgstr "" +msgstr "Contas não Classificadas" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_060 msgid "Ingresos Financieros" -msgstr "" +msgstr "Resultado Financeiro" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACC_62 @@ -135,12 +136,12 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_080 msgid "Otros Ingresos" -msgstr "" +msgstr "Outras Receitas" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_ORD msgid "Cuentas de Orden" -msgstr "" +msgstr "Contas de Compensação" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_NA_150 @@ -150,7 +151,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_090 msgid "Otros Gastos" -msgstr "" +msgstr "Outras Despesas" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_NA_060 @@ -170,7 +171,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACC_60 msgid "Existencias" -msgstr "" +msgstr "Estoques" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACN_35 @@ -190,7 +191,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACN_40 msgid "Inversiones Permanentes" -msgstr "" +msgstr "Investimento de Longo Prazo" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACC_30 @@ -340,7 +341,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_ACC_10 msgid "Caja y Bancos" -msgstr "" +msgstr "Caixa e Bancos" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_BG_PAO_20 @@ -385,7 +386,7 @@ msgstr "" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_view msgid "Vista" -msgstr "" +msgstr "Visão" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_NA_080 diff --git a/addons/l10n_syscohada/i18n/pt_BR.po b/addons/l10n_syscohada/i18n/pt_BR.po new file mode 100644 index 00000000000..4194e6a4a32 --- /dev/null +++ b/addons/l10n_syscohada/i18n/pt_BR.po @@ -0,0 +1,104 @@ +# Brazilian Portuguese 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-11-24 02:53+0000\n" +"PO-Revision-Date: 2013-01-27 09:57+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_receivable +msgid "Receivable" +msgstr "Recebível" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_stocks +msgid "Actif circulant" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_commitment +msgid "Engagements" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_expense +msgid "Expense" +msgstr "Despesa" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_stock +msgid "Stocks" +msgstr "Estoques" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_income +msgid "Income" +msgstr "Receita" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_tax +msgid "Tax" +msgstr "Imposto" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_cash +msgid "Cash" +msgstr "Dinheiro" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_immobilisations +msgid "Immobilisations" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_special +msgid "Comptes spéciaux" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_payable +msgid "Payable" +msgstr "A Pagar" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_asset +msgid "Asset" +msgstr "Patrimônio" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_view +msgid "View" +msgstr "Visão" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_equity +msgid "Equity" +msgstr "Patrimônio Líquido" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_cloture +msgid "Cloture" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_dettes +msgid "Dettes long terme" +msgstr "" + +#. module: l10n_syscohada +#: model:account.account.type,name:l10n_syscohada.account_type_provision +msgid "Provisions" +msgstr "" diff --git a/addons/l10n_th/i18n/pt_BR.po b/addons/l10n_th/i18n/pt_BR.po index 03b14ea7733..8eb0b44f098 100644 --- a/addons/l10n_th/i18n/pt_BR.po +++ b/addons/l10n_th/i18n/pt_BR.po @@ -8,26 +8,27 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 10:01+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled msgid "Reconciled" -msgstr "" +msgstr "Reconciliado" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_other msgid "Other" -msgstr "" +msgstr "Outros" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_view msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/l10n_uk/i18n/pt_BR.po b/addons/l10n_uk/i18n/pt_BR.po index 57570ec3020..f9f01144c21 100644 --- a/addons/l10n_uk/i18n/pt_BR.po +++ b/addons/l10n_uk/i18n/pt_BR.po @@ -8,71 +8,72 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 10:03+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable msgid "Receivable" -msgstr "" +msgstr "Recebível" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_current_assets msgid "Current Assets" -msgstr "" +msgstr "Ativos Atuais" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_profit_and_loss msgid "Profit and Loss" -msgstr "" +msgstr "Lucros e Perdas" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_output_tax msgid "Output Tax" -msgstr "" +msgstr "Imposto de Saída" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_equity msgid "Equity" -msgstr "" +msgstr "Patrimônio Líquido" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_payable msgid "Payable" -msgstr "" +msgstr "A Pagar" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_fixed_assets msgid "Fixed Assets" -msgstr "" +msgstr "Ativos Imobilizado" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_income msgid "Income" -msgstr "" +msgstr "Receita" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_current_liabilities msgid "Current Liabilities" -msgstr "" +msgstr "Passivo Circulante" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_input_tax msgid "Input Tax" -msgstr "" +msgstr "Imposto Entrada" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_expense msgid "Expense" -msgstr "" +msgstr "Despesa" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_view msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/l10n_ve/i18n/pt_BR.po b/addons/l10n_ve/i18n/pt_BR.po index 1fd1db4673d..89a38243cf4 100644 --- a/addons/l10n_ve/i18n/pt_BR.po +++ b/addons/l10n_ve/i18n/pt_BR.po @@ -8,56 +8,57 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 09:12+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable msgid "Receivable" -msgstr "" +msgstr "Recebível" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_equity msgid "Equity" -msgstr "" +msgstr "Patrimônio Líquido" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_tax msgid "Tax" -msgstr "" +msgstr "Imposto" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_cash msgid "Cash" -msgstr "" +msgstr "Dinheiro" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_payable msgid "Payable" -msgstr "" +msgstr "A Pagar" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_asset msgid "Asset" -msgstr "" +msgstr "Patrimônio" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_income msgid "Income" -msgstr "" +msgstr "Receita" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_expense msgid "Expense" -msgstr "" +msgstr "Despesa" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_view msgid "View" -msgstr "" +msgstr "Visão" diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index cc784bcbb7a..6f2f71aca09 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:53+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -450,7 +450,7 @@ msgstr "Nota" #: code:addons/lunch/lunch.py:250 #, python-format msgid "Add" -msgstr "" +msgstr "Adicionar" #. module: lunch #: view:lunch.product:0 @@ -595,7 +595,7 @@ msgstr "Janeiro" #. module: lunch #: selection:lunch.alert,alter_type:0 msgid "Specific Day" -msgstr "" +msgstr "Dia especifico" #. module: lunch #: field:lunch.alert,wednesday:0 @@ -794,7 +794,7 @@ msgstr "" #: view:lunch.cashmove:0 #: selection:lunch.cashmove,state:0 msgid "Payment" -msgstr "" +msgstr "Pagamento" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -860,7 +860,7 @@ msgstr "" #. module: lunch #: field:lunch.alert,saturday:0 msgid "Saturday" -msgstr "" +msgstr "Sábado" #. module: lunch #: model:res.groups,name:lunch.group_lunch_manager @@ -888,7 +888,7 @@ msgstr "" #: field:lunch.order,total:0 #: view:lunch.order.line:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index c460f3d6e0a..fcea1112987 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/i18n/de.po @@ -8,15 +8,14 @@ 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-01-07 22:28+0000\n" -"Last-Translator: Thorsten Vocks (OpenBig.org) \n" +"PO-Revision-Date: 2013-01-26 09:10+0000\n" +"Last-Translator: Stefan Jenkner \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: mail #: view:mail.followers:0 @@ -668,7 +667,7 @@ msgstr "R&D" #: code:addons/mail/static/src/xml/mail.xml:61 #, python-format msgid "/web/binary/upload_attachment" -msgstr "Copy text \t /web/binary/upload_attachment" +msgstr "/web/binary/upload_attachment" #. module: mail #: model:ir.model,name:mail.model_mail_thread diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index f8eb2cb3bb4..53fc2dd80d8 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -8,14 +8,14 @@ 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-01-20 12:39+0000\n" +"PO-Revision-Date: 2013-01-27 11:26+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: mail #: view:mail.followers:0 @@ -71,6 +71,8 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"De aam van de e-mail alias, bijvoorbeeld 'vacature' als u alle e-mails wilt " +"opvangen voor " #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -152,6 +154,8 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Leden van die groepen worden automatisch toegevoegd als volger. Zij kunnen " +"zelfstandig hun lidmaatschap beheren als dat nodig is." #. module: mail #. openerp-web @@ -191,6 +195,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Middelgrote foto van de groep. Deze wordt automatisch aangepast naar een " +"128x128px afbeelding, met behoud van verhouding. Gebruik dit veld in " +"formulier- of in sommige kanban weergaves." #. module: mail #. openerp-web @@ -213,6 +220,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"De gevraagde bewerking kan niet worden voltooid vanwege " +"beveiligingsbeperkingen. Neem contact op met uw systeembeheerder.\n" +"\n" +"(Document type: %s, Bewerking: %s)" #. module: mail #: view:mail.mail:0 @@ -561,6 +572,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Kleine foto van de groep. Deze wordt automatisch aangepast naar een 65x64px " +"afbeelding, met behoud van verhouding. Gebruik dit veld overal waar een " +"kleine foto benodigd is." #. module: mail #: view:mail.compose.message:0 @@ -683,6 +697,8 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" +"Het is niet toegestaan een gebruiker aan te maken. Om een nieuwe gebruiker " +"aan te maken, dient u gebruik te maken van het menu: Instellingen\\Gebrukers." #. module: mail #: help:mail.followers,res_model:0 @@ -722,6 +738,8 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Alleen de uitgenodigde volgers kunnen de discussies\n" +"                                     van deze groep lezen." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -745,6 +763,8 @@ msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" +"De volgende partners gekozen als ontvangers voor de e-mail hebben geen " +"gekoppelde e-mail adres:" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -830,6 +850,8 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" +"E-mail adressen welke intern zijn gekoppeld aan deze gebruiker. Inkomende e-" +"mails worden weergegeven in de gebruikers notificaties." #. module: mail #: field:mail.group,image:0 @@ -857,6 +879,8 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"Het e-mail adres gekoppeld aan deze groep. Nieuw ontvangen e-mails zullen " +"automatisch nieuwe onderwerpen aanmaken." #. module: mail #: view:mail.mail:0 @@ -897,7 +921,7 @@ msgstr "Bericht" #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "" +msgstr "Id van de gevolgde resource" #. module: mail #: field:mail.compose.message,body:0 @@ -917,6 +941,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Omschrijving welke wordt toegevoegd aan het bericht voor dit subtype. Indien " +"leeg, zal de naam worden toegevoegd." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -966,7 +992,7 @@ msgstr "Volgers van de geselecteerde items en" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "Record Thread ID" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1168,6 +1194,8 @@ msgstr "Samenvatting" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Model waar het subtype van toepassing is. Indien 'False', is dit subtype van " +"toepassing op alle modellen." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1213,7 +1241,7 @@ msgstr "Volgend" #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" -msgstr "" +msgstr "Helaas is deze e-mail alias al in gebruik. Kies een unieke alias." #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1243,6 +1271,8 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Dit veld bevat de afbeelding welke wordt gebruikt als foto voor de groep, " +"beperkt tot 1024x1024px." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1367,6 +1397,8 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Deze groep is zichtbaar voor niet leden. Onzichtbare groepen kunnen leden " +"toevoegen door gebruik te maken van de 'Uitnodigen' knop." #. module: mail #: model:mail.group,name:mail.group_board @@ -1379,6 +1411,8 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Ongeldige expressie, het moet een letterlijke python dictionary definition " +"zijn, bijvoorbeeld: \"{'field': 'value'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 @@ -1449,6 +1483,8 @@ msgstr "" msgid "" "Choose in which case you want to receive an email when you receive new feeds." msgstr "" +"Maak een keuze voor in welke situatie u een e-mail wilt ontvangen over " +"nieuwe berichten." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_groups @@ -1519,6 +1555,8 @@ msgid "" "If you have setup a catch-all email domain redirected to the OpenERP server, " "enter the domain name here." msgstr "" +"Als u hebt ingesteld om alle e-mail af te vangen van een domein naar de " +"OpenERP server, voer dan hier de domeinnaam in." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_message @@ -1690,7 +1728,7 @@ msgstr "Extra contactpersonen" #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Initiële bericht thread" #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1720,7 +1758,7 @@ msgstr "Bestand" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Vul de relatie informatie en e-mail volledig in." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype @@ -1736,7 +1774,7 @@ msgstr "E-mail Aliases" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Kleine foto" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index ae692f297ae..dcb4cb4be8c 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/i18n/pt_BR.po @@ -8,14 +8,15 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 23:39+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: mail #: view:mail.followers:0 @@ -25,7 +26,7 @@ msgstr "Formulário do Seguidor" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "Contrato de Serviço" +msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 @@ -57,7 +58,7 @@ msgstr "Comentários" #: view:mail.alias:0 #: view:mail.mail:0 msgid "Group By..." -msgstr "Agrupar Por..." +msgstr "Agrupar por..." #. module: mail #: help:mail.compose.message,body:0 @@ -72,7 +73,7 @@ msgid "" "" msgstr "" "O nome do apelido de e-mail, ex: 'vagas' se você quer capturar mensagens de " -"" +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -114,8 +115,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" -"Endereço de e-mail do remetente. Este campo é preenchido quando não é " -"encontrado um parceiro cadastrado para o e-mail recebido." +"E-mail do remetente. Este campo é preenchido quando não for encontrado um " +"parceiro cadastrado para o e-mail recebido." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -139,7 +140,7 @@ msgstr "Superior" #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "Mensagens Não Lidas" +msgstr "Mensagens não lidas" #. module: mail #. openerp-web @@ -173,14 +174,14 @@ msgstr "Lida" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "Grupos de Pesquisa" +msgstr "Procurar grupos" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:156 #, python-format msgid "followers" -msgstr "Seguidores" +msgstr "seguidores" #. module: mail #: code:addons/mail/mail_message.py:726 @@ -220,8 +221,8 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"A operação solicitada não pode ser completado devido a restrições de " -"segurança. Por favor, informe o administrador do sistema..\n" +"A operação solicitada não pode ser concluída devido a restrições de " +"segurança. Por favor, informe ao administrador do sistema.\n" "\n" "(Tipo de documento: %s, Operação: %s)" @@ -241,7 +242,7 @@ msgstr "Tópico" #: code:addons/mail/static/src/xml/mail.xml:37 #, python-format msgid "Open the full mail composer" -msgstr "Abrir o editor de correio completo" +msgstr "Abrir o editor de email" #. module: mail #. openerp-web @@ -253,7 +254,7 @@ msgstr "ò" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "Domínio Apelido" +msgstr "Apelido do domínio" #. module: mail #: field:mail.group,group_ids:0 @@ -335,7 +336,7 @@ msgstr "
Você foi convidado a seguir %s.
" #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Se marcado novas mensagens requerem sua atenção" +msgstr "Se marcado novas mensagens solicitarão sua atenção." #. module: mail #: field:mail.group,image_medium:0 @@ -371,7 +372,7 @@ msgstr "Não Participar" #: code:addons/mail/static/src/xml/mail.xml:261 #, python-format msgid "show one more message" -msgstr "Mostrar mais uma mensagem" +msgstr "mostrar mais uma mensagem" #. module: mail #: code:addons/mail/mail_mail.py:71 @@ -426,7 +427,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "Campo da Relação" +msgstr "Campo da relação" #. module: mail #: selection:mail.compose.message,type:0 @@ -477,7 +478,7 @@ msgstr "Mensagem de E-mail" #. module: mail #: model:ir.model,name:mail.model_base_config_settings msgid "base.config.settings" -msgstr "Configurações" +msgstr "base.config.settings" #. module: mail #: view:mail.compose.message:0 @@ -581,7 +582,7 @@ msgid "" msgstr "" "Imagem em tamanho reduzido do grupo. Ela será automaticamente redimensionada " "para 64x64px, mantendo-se as proporções da imagem original. Utilize esse " -"campo em lugares onde uma pequena imagem for necessária." +"campo em lugares onde uma imagem miniatura for necessária." #. module: mail #: view:mail.compose.message:0 @@ -665,7 +666,7 @@ msgstr "R&D" #: code:addons/mail/static/src/xml/mail.xml:61 #, python-format msgid "/web/binary/upload_attachment" -msgstr "Enviar Anexo" +msgstr "/web/binary/upload_attachment" #. module: mail #: model:ir.model,name:mail.model_mail_thread @@ -717,7 +718,7 @@ msgstr "Modelo do recurso seguido" #: code:addons/mail/static/src/xml/mail.xml:286 #, python-format msgid "like" -msgstr "como" +msgstr "curtir" #. module: mail #: view:mail.compose.message:0 @@ -750,7 +751,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "Menu" +msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 @@ -849,7 +850,7 @@ msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" "Não foi possível enviar o e-mail, por favor configure o endereço de e-mail " -"do remetente ou apelido." +"do remetente." #. module: mail #: help:res.users,alias_id:0 @@ -887,7 +888,7 @@ msgid "" "automatically create new topics." msgstr "" "Endereço de e-mail associado a este grupo. Novas mensagens recebidas criarão " -"automaticamente novos tópicos." +"novos tópicos automaticamente." #. module: mail #: view:mail.mail:0 @@ -903,7 +904,7 @@ msgstr "Pesquisar E-mail" #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "Mensagens Filhas" +msgstr "Mensagens Relacionadas" #. module: mail #: field:mail.alias,alias_user_id:0 @@ -1031,7 +1032,7 @@ msgstr "" #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "Estado" +msgstr "Situação" #. module: mail #: view:mail.mail:0 @@ -1141,7 +1142,7 @@ msgstr "Data" #: code:addons/mail/static/src/xml/mail.xml:34 #, python-format msgid "Post" -msgstr "Postar" +msgstr "Publicar" #. module: mail #: view:mail.mail:0 @@ -1189,7 +1190,7 @@ msgstr "Marcar como A Fazer" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "Subtipo de pai, usado para inscrição automática." +msgstr "Subtipo usado para inscrição automática." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1201,7 +1202,7 @@ msgstr "Assistente de Convite" #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "Sumário" +msgstr "Resumo" #. module: mail #: help:mail.message.subtype,res_model:0 @@ -1229,7 +1230,7 @@ msgstr "Formulário do Grupo" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "Marcados com estrela" +msgstr "Favoritos" #. module: mail #. openerp-web @@ -1330,7 +1331,7 @@ msgstr "Seguidores de" #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" -"Excluir permanentemente este e-mail depois do envio para economizar espaço" +"Excluir permanentemente este email depois do envio para economizar espaço" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds @@ -1462,7 +1463,7 @@ msgstr "Seguidores do Documento" #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Remover este Seguidor" +msgstr "Remover este seguidor" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1637,7 +1638,7 @@ msgstr "Modelo" #. module: mail #: view:mail.message:0 msgid "Unread" -msgstr "Não Lida" +msgstr "Não lidas" #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1679,7 +1680,7 @@ msgstr "Modelo de Documento Relacionado" #: code:addons/mail/static/src/xml/mail.xml:287 #, python-format msgid "unlike" -msgstr "não como" +msgstr "curtir (desfazer)" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1694,18 +1695,18 @@ msgstr "" #. module: mail #: help:mail.mail,email_cc:0 msgid "Carbon copy message recipients" -msgstr "Destinatários de cópia oculta da mensagem" +msgstr "Copiar destinatários" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "Dominio apelido" +msgstr "Apelido do domínio" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "Erro durante a comunicação com o servidor de suporte." +msgstr "Erro durante a comunicação com o servidor de garantia." #. module: mail #: selection:mail.group,public:0 @@ -1799,4 +1800,4 @@ msgstr "Foto pequena" #. module: mail #: help:mail.mail,reply_to:0 msgid "Preferred response address for the message" -msgstr "Endereço de resposta preferido para a mensagem" +msgstr "Endereço de resposta preferido" diff --git a/addons/marketing/i18n/nl.po b/addons/marketing/i18n/nl.po index 41809489b9d..5ce11771589 100644 --- a/addons/marketing/i18n/nl.po +++ b/addons/marketing/i18n/nl.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 13:09+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings @@ -78,7 +78,7 @@ msgstr "Campagne instellingen" #. module: marketing #: field:marketing.config.settings,module_crm_profiling:0 msgid "Track customer profile to focus your campaigns" -msgstr "" +msgstr "Volg klantprofiel om uw campagnes op te richten" #. module: marketing #: view:marketing.config.settings:0 @@ -98,6 +98,10 @@ msgid "" "CRM leads.\n" " This installs the module marketing_campaign." msgstr "" +"Verzorgt het automatiseren van leads door marketing campagnes.\n" +" Campagnes kunnen in feite worden gedefinieerd op elke bron, " +"niet alleen CRM leads.\n" +"                Dit installeert de module marketing_campaign." #. module: marketing #: help:marketing.config.settings,module_crm_profiling:0 diff --git a/addons/marketing_campaign/i18n/sl.po b/addons/marketing_campaign/i18n/sl.po new file mode 100644 index 00000000000..8e58e64f48a --- /dev/null +++ b/addons/marketing_campaign/i18n/sl.po @@ -0,0 +1,1058 @@ +# Slovenian 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-01-26 12:37+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +msgid "Manual Mode" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.transition,activity_from_id:0 +msgid "Previous Activity" +msgstr "Predhodna dejavnost" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:819 +#, python-format +msgid "The current step for this item has no email or report to preview." +msgstr "" + +#. module: marketing_campaign +#: constraint:marketing.campaign.transition:0 +msgid "The To/From Activity of transition must be of the same Campaign " +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,trigger:0 +msgid "Time" +msgstr "Čas" + +#. module: marketing_campaign +#: selection:marketing.campaign.activity,type:0 +msgid "Custom Action" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +#: view:marketing.campaign.workitem:0 +msgid "Group By..." +msgstr "Združeno po..." + +#. module: marketing_campaign +#: help:marketing.campaign.activity,revenue:0 +msgid "" +"Set an expected revenue if you consider that every campaign item that has " +"reached this point has generated a certain revenue. You can get revenue " +"statistics in the Reporting section" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.transition,trigger:0 +msgid "Trigger" +msgstr "Sprožilec" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +msgid "Follow-Up" +msgstr "Navezava" + +#. module: marketing_campaign +#: field:campaign.analysis,count:0 +msgid "# of Actions" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +msgid "Campaign Editor" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: selection:marketing.campaign,state:0 +#: view:marketing.campaign.segment:0 +#: selection:marketing.campaign.segment,state:0 +msgid "Running" +msgstr "V teku" + +#. module: marketing_campaign +#: model:email.template,body_html:marketing_campaign.email_template_3 +msgid "" +"Hi, we are delighted to let you know that you have entered the select circle " +"of our Gold Partners" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "March" +msgstr "Marec" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,object_id:0 +msgid "Object" +msgstr "Predmet" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Sync mode: only records created after last sync" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,condition:0 +msgid "" +"Python expression to decide whether the activity can be executed, otherwise " +"it will be deleted or cancelled.The expression may use the following " +"[browsable] variables:\n" +" - activity: the campaign activity\n" +" - workitem: the campaign workitem\n" +" - resource: the resource object this campaign item represents\n" +" - transitions: list of campaign transitions outgoing from this activity\n" +"...- re: Python regular expression module" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +msgid "Set to Draft" +msgstr "Nastavi kot osnutek" + +#. module: marketing_campaign +#: view:marketing.campaign.activity:0 +#: field:marketing.campaign.activity,to_ids:0 +msgid "Next Activities" +msgstr "Naslednja dejanja" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:148 +#, python-format +msgid "" +"The campaign cannot be started. It does not have any starting activity. " +"Modify campaign's activities to mark one as the starting point." +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,email_template_id:0 +msgid "The email to send when this activity is activated" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +#: field:marketing.campaign.segment,date_run:0 +msgid "Launch Date" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,day:0 +msgid "Day" +msgstr "Dan" + +#. module: marketing_campaign +#: view:marketing.campaign.activity:0 +msgid "Outgoing Transitions" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +msgid "Reset" +msgstr "Ponastavi" + +#. module: marketing_campaign +#: help:marketing.campaign,object_id:0 +msgid "Choose the resource on which you want this campaign to be run" +msgstr "" + +#. module: marketing_campaign +#: model:ir.actions.client,name:marketing_campaign.action_client_marketing_menu +msgid "Open Marketing Menu" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.segment,sync_last_date:0 +msgid "Last Synchronization" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,interval_type:0 +msgid "Year(s)" +msgstr "Let" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,sync_last_date:0 +msgid "" +"Date on which this segment was synchronized last time (automatically or " +"manually)" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,state:0 +#: selection:marketing.campaign,state:0 +#: selection:marketing.campaign.segment,state:0 +#: selection:marketing.campaign.workitem,state:0 +msgid "Cancelled" +msgstr "Preklicano" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,trigger:0 +msgid "Automatic" +msgstr "Samodejno" + +#. module: marketing_campaign +#: help:marketing.campaign,mode:0 +msgid "" +"Test - It creates and process all the activities directly (without waiting " +"for the delay on transitions) but does not send emails or produce reports.\n" +"Test in Realtime - It creates and processes all the activities directly but " +"does not send emails or produce reports.\n" +"With Manual Confirmation - the campaigns runs normally, but the user has to " +"validate all workitem manually.\n" +"Normal - the campaign runs normally and automatically sends all emails and " +"reports (be very careful with this mode, you're live!)" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,date_run:0 +msgid "Initial start date of this segment." +msgstr "" + +#. module: marketing_campaign +#: view:res.partner:0 +msgid "False" +msgstr "Napačno" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,campaign_id:0 +#: view:marketing.campaign:0 +#: field:marketing.campaign.activity,campaign_id:0 +#: view:marketing.campaign.segment:0 +#: field:marketing.campaign.segment,campaign_id:0 +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,campaign_id:0 +msgid "Campaign" +msgstr "Kampanija" + +#. module: marketing_campaign +#: model:email.template,body_html:marketing_campaign.email_template_1 +msgid "Hello, you will receive your welcome pack via email shortly." +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,segment_id:0 +#: view:marketing.campaign.segment:0 +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,segment_id:0 +msgid "Segment" +msgstr "Odsek" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:214 +#, python-format +msgid "You cannot duplicate a campaign, Not supported yet." +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,type:0 +msgid "" +"The type of action to execute when an item enters this activity, such as:\n" +" - Email: send an email using a predefined email template\n" +" - Report: print an existing Report defined on the resource item and save " +"it into a specific directory\n" +" - Custom Action: execute a predefined action, e.g. to modify the fields " +"of the resource record\n" +" " +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,date_next_sync:0 +msgid "Next time the synchronization job is scheduled to run automatically" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,interval_type:0 +msgid "Month(s)" +msgstr "Mesec(Mesecev)" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,partner_id:0 +#: model:ir.model,name:marketing_campaign.model_res_partner +#: field:marketing.campaign.workitem,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: marketing_campaign +#: model:ir.filters,name:marketing_campaign.filter0 +msgid "Partners" +msgstr "Partnerji" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +msgid "Marketing Reports" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign,state:0 +#: selection:marketing.campaign.segment,state:0 +msgid "New" +msgstr "Novo" + +#. module: marketing_campaign +#: sql_constraint:marketing.campaign.transition:0 +msgid "The interval must be positive or zero" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.activity,type:0 +msgid "Email" +msgstr "Email" + +#. module: marketing_campaign +#: field:marketing.campaign,name:0 +#: field:marketing.campaign.activity,name:0 +#: field:marketing.campaign.segment,name:0 +#: field:marketing.campaign.transition,name:0 +msgid "Name" +msgstr "Ime" + +#. module: marketing_campaign +#: field:marketing.campaign.workitem,res_name:0 +msgid "Resource Name" +msgstr "Ime vira" + +#. module: marketing_campaign +#: field:marketing.campaign.segment,sync_mode:0 +msgid "Synchronization mode" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +msgid "Run" +msgstr "Zaženi" + +#. module: marketing_campaign +#: view:marketing.campaign.activity:0 +#: field:marketing.campaign.activity,from_ids:0 +msgid "Previous Activities" +msgstr "" + +#. module: marketing_campaign +#: model:email.template,subject:marketing_campaign.email_template_2 +msgid "Congratulations! You are now a Silver Partner!" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,date_done:0 +msgid "Date this segment was last closed or cancelled." +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +msgid "Marketing Campaign Activities" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,error_msg:0 +msgid "Error Message" +msgstr "Sporočilo napake" + +#. module: marketing_campaign +#: model:ir.actions.act_window,name:marketing_campaign.action_marketing_campaign_form +#: model:ir.ui.menu,name:marketing_campaign.menu_marketing_campaign +#: model:ir.ui.menu,name:marketing_campaign.menu_marketing_campaign_form +#: view:marketing.campaign:0 +#: view:res.partner:0 +msgid "Campaigns" +msgstr "Kampanje" + +#. module: marketing_campaign +#: field:marketing.campaign.transition,interval_type:0 +msgid "Interval Unit" +msgstr "Enota intervala" + +#. module: marketing_campaign +#: field:campaign.analysis,country_id:0 +msgid "Country" +msgstr "Država" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,report_id:0 +#: selection:marketing.campaign.activity,type:0 +msgid "Report" +msgstr "Poročilo" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "July" +msgstr "Julij" + +#. module: marketing_campaign +#: model:ir.ui.menu,name:marketing_campaign.menu_marketing_configuration +msgid "Configuration" +msgstr "Nastavitve" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,variable_cost:0 +msgid "" +"Set a variable cost if you consider that every campaign item that has " +"reached this point has entailed a certain cost. You can get cost statistics " +"in the Reporting section" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,interval_type:0 +msgid "Hour(s)" +msgstr "Ura(Ure)" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_marketing_campaign_segment +msgid "Campaign Segment" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,keep_if_condition_not_met:0 +msgid "" +"By activating this option, workitems that aren't executed because the " +"condition is not met are marked as cancelled instead of being deleted." +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +msgid "Exceptions" +msgstr "Izjeme" + +#. module: marketing_campaign +#: model:ir.actions.act_window,name:marketing_campaign.act_marketing_campaing_followup +#: field:res.partner,workitem_ids:0 +msgid "Workitems" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign,fixed_cost:0 +msgid "Fixed Cost" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Newly Modified" +msgstr "" + +#. module: marketing_campaign +#: model:ir.actions.act_window,help:marketing_campaign.action_marketing_campaign_form +msgid "" +"

\n" +" Click to create a marketing campaign.\n" +"

\n" +" OpenERP's marketing campaign allows you to automate " +"communication\n" +" to your prospects. You can define a segment (set of conditions) " +"on\n" +" your leads and partners to fullfil the campaign.\n" +"

\n" +" A campaign can have many activities like sending an email, " +"printing\n" +" a letter, assigning to a team, etc. These activities are " +"triggered\n" +" from specific situations; contact form, 10 days after first\n" +" contact, if a lead is not closed yet, etc.\n" +"

\n" +" " +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.transition,interval_nbr:0 +msgid "Interval Value" +msgstr "" + +#. module: marketing_campaign +#: field:campaign.analysis,revenue:0 +#: field:marketing.campaign.activity,revenue:0 +msgid "Revenue" +msgstr "Prihodek" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "September" +msgstr "September" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "December" +msgstr "December" + +#. module: marketing_campaign +#: help:marketing.campaign,partner_field_id:0 +msgid "" +"The generated workitems will be linked to the partner related to the record. " +"If the record is the partner itself leave this field empty. This is useful " +"for reporting purposes, via the Campaign Analysis or Campaign Follow-up " +"views." +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,month:0 +msgid "Month" +msgstr "Mesec" + +#. module: marketing_campaign +#: field:marketing.campaign.transition,activity_to_id:0 +msgid "Next Activity" +msgstr "Naslednja dejavnost" + +#. module: marketing_campaign +#: model:ir.actions.act_window,name:marketing_campaign.act_marketing_campaing_stat +#: model:ir.actions.act_window,name:marketing_campaign.action_marketing_campaign_workitem +#: model:ir.ui.menu,name:marketing_campaign.menu_action_marketing_campaign_workitem +msgid "Campaign Follow-up" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +msgid "Test Mode" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.segment,sync_mode:0 +msgid "Only records modified after last sync (no duplicates)" +msgstr "" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_ir_actions_report_xml +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +msgid "Campaign Statistics" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,server_action_id:0 +msgid "The action to perform when this activity is activated" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign,partner_field_id:0 +msgid "Partner Field" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: model:ir.actions.act_window,name:marketing_campaign.action_campaign_analysis_all +#: model:ir.model,name:marketing_campaign.model_campaign_analysis +#: model:ir.ui.menu,name:marketing_campaign.menu_action_campaign_analysis_all +msgid "Campaign Analysis" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,sync_mode:0 +msgid "" +"Determines an additional criterion to add to the filter when selecting new " +"records to inject in the campaign. \"No duplicates\" prevents selecting " +"records which have already entered the campaign previously.If the campaign " +"has a \"unique field\" set, \"no duplicates\" will also prevent selecting " +"records which have the same value for the unique field as other records that " +"already entered the campaign." +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign,mode:0 +msgid "Test in Realtime" +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign,mode:0 +msgid "Test Directly" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,report_directory_id:0 +msgid "Directory" +msgstr "Mapa" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +msgid "Draft" +msgstr "Osnutek" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +msgid "Marketing Campaign Activity" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +msgid "Preview" +msgstr "Predogled" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,state:0 +#: view:marketing.campaign:0 +#: field:marketing.campaign,state:0 +#: view:marketing.campaign.segment:0 +#: field:marketing.campaign.segment,state:0 +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,state:0 +msgid "Status" +msgstr "Status" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "August" +msgstr "Avgust" + +#. module: marketing_campaign +#: selection:marketing.campaign,mode:0 +msgid "Normal" +msgstr "Običajno" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,start:0 +msgid "This activity is launched when the campaign starts." +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,signal:0 +msgid "" +"An activity with a signal can be called programmatically. Be careful, the " +"workitem is always created when a signal is sent" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: selection:campaign.analysis,state:0 +#: view:marketing.campaign.workitem:0 +#: selection:marketing.campaign.workitem,state:0 +msgid "To Do" +msgstr "Opravila" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "June" +msgstr "Junij" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_email_template +msgid "Email Templates" +msgstr "Predloge e-pošte" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Sync mode: all records" +msgstr "Sync mode: all records" + +#. module: marketing_campaign +#: selection:marketing.campaign.segment,sync_mode:0 +msgid "All records (no duplicates)" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Newly Created" +msgstr "" + +#. module: marketing_campaign +#: field:campaign.analysis,date:0 +msgid "Date" +msgstr "Datum" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "November" +msgstr "November" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,condition:0 +msgid "Condition" +msgstr "Pogoj" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,report_id:0 +msgid "The report to generate when this activity is activated" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign,unique_field_id:0 +msgid "Unique Field" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,state:0 +#: view:marketing.campaign.workitem:0 +#: selection:marketing.campaign.workitem,state:0 +msgid "Exception" +msgstr "Izjema" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "October" +msgstr "Oktober" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,email_template_id:0 +msgid "Email Template" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "January" +msgstr "Januar" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,date:0 +msgid "Execution Date" +msgstr "" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_marketing_campaign_workitem +msgid "Campaign Workitem" +msgstr "" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_marketing_campaign_activity +msgid "Campaign Activity" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.activity,report_directory_id:0 +msgid "This folder is used to store the generated reports" +msgstr "" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:136 +#: code:addons/marketing_campaign/marketing_campaign.py:148 +#: code:addons/marketing_campaign/marketing_campaign.py:158 +#, python-format +msgid "Error" +msgstr "Napaka" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,server_action_id:0 +msgid "Action" +msgstr "Dejanje" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:528 +#, python-format +msgid "Automatic transition" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,start:0 +msgid "Start" +msgstr "Zagon" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:819 +#, python-format +msgid "No preview" +msgstr "Ni predogleda" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +msgid "Process" +msgstr "Proces" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:530 +#: selection:marketing.campaign.transition,trigger:0 +#, python-format +msgid "Cosmetic" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign.transition,trigger:0 +msgid "How is the destination workitem triggered" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: selection:campaign.analysis,state:0 +#: view:marketing.campaign:0 +#: selection:marketing.campaign,state:0 +#: selection:marketing.campaign.segment,state:0 +#: selection:marketing.campaign.workitem,state:0 +msgid "Done" +msgstr "Končano" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:214 +#, python-format +msgid "Operation not supported" +msgstr "Operacija ni podprta" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +#: view:marketing.campaign.workitem:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Close" +msgstr "Zaprto" + +#. module: marketing_campaign +#: constraint:marketing.campaign.segment:0 +msgid "Model of filter must be same as resource model of Campaign " +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Synchronize Manually" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,res_id:0 +msgid "Resource ID" +msgstr "ID vira" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_marketing_campaign_transition +msgid "Campaign Transition" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Marketing Campaign Segment" +msgstr "" + +#. module: marketing_campaign +#: model:ir.actions.act_window,name:marketing_campaign.act_marketing_campaing_segment_opened +#: model:ir.actions.act_window,name:marketing_campaign.action_marketing_campaign_segment_form +#: model:ir.ui.menu,name:marketing_campaign.menu_marketing_campaign_segment_form +#: view:marketing.campaign:0 +#: view:marketing.campaign.segment:0 +msgid "Segments" +msgstr "Segmenti" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,keep_if_condition_not_met:0 +msgid "Don't Delete Workitems" +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.activity:0 +msgid "Incoming Transitions" +msgstr "Prihajajočite transakcije" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,interval_type:0 +msgid "Day(s)" +msgstr "Dan(Dni)" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: field:marketing.campaign,activity_ids:0 +#: view:marketing.campaign.activity:0 +msgid "Activities" +msgstr "Dejavnosti" + +#. module: marketing_campaign +#: selection:marketing.campaign,mode:0 +msgid "With Manual Confirmation" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "May" +msgstr "Maj" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,type:0 +msgid "Type" +msgstr "Vrsta" + +#. module: marketing_campaign +#: model:email.template,subject:marketing_campaign.email_template_3 +msgid "Congratulations! You are now one of our Gold Partners!" +msgstr "" + +#. module: marketing_campaign +#: help:marketing.campaign,unique_field_id:0 +msgid "" +"If set, this field will help segments that work in \"no duplicates\" mode to " +"avoid selecting similar records twice. Similar records are records that have " +"the same value for this unique field. For example by choosing the " +"\"email_from\" field for CRM Leads you would prevent sending the same " +"campaign to the same email address again. If not set, the \"no duplicates\" " +"segments will only avoid selecting the same record again if it entered the " +"campaign previously. Only easily comparable fields like textfields, " +"integers, selections or single relationships may be used." +msgstr "" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:529 +#, python-format +msgid "After %(interval_nbr)d %(interval_type)s" +msgstr "" + +#. module: marketing_campaign +#: model:ir.model,name:marketing_campaign.model_marketing_campaign +#: view:marketing.campaign:0 +msgid "Marketing Campaign" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.segment,date_done:0 +msgid "End Date" +msgstr "Končni datum" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "February" +msgstr "Februar" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,res_id:0 +#: view:marketing.campaign:0 +#: field:marketing.campaign,object_id:0 +#: field:marketing.campaign.segment,object_id:0 +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,object_id:0 +msgid "Resource" +msgstr "Vir" + +#. module: marketing_campaign +#: help:marketing.campaign,fixed_cost:0 +msgid "" +"Fixed cost for running this campaign. You may also specify variable cost and " +"revenue on each campaign activity. Cost and Revenue statistics are included " +"in Campaign Reporting." +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "Sync mode: only records updated after last sync" +msgstr "" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:793 +#, python-format +msgid "Email Preview" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,signal:0 +msgid "Signal" +msgstr "Signal" + +#. module: marketing_campaign +#: help:marketing.campaign.workitem,date:0 +msgid "If date is not set, this workitem has to be run manually" +msgstr "" + +#. module: marketing_campaign +#: selection:campaign.analysis,month:0 +msgid "April" +msgstr "April" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:158 +#, python-format +msgid "The campaign cannot be marked as done before all segments are closed." +msgstr "" + +#. module: marketing_campaign +#: view:marketing.campaign:0 +#: field:marketing.campaign,mode:0 +msgid "Mode" +msgstr "Način" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,activity_id:0 +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,activity_id:0 +msgid "Activity" +msgstr "Dejavnost" + +#. module: marketing_campaign +#: help:marketing.campaign.segment,ir_filter_id:0 +msgid "" +"Filter to select the matching resource records that belong to this segment. " +"New filters can be created and saved using the advanced search on the list " +"view of the Resource. If no filter is set, all records are selected without " +"filtering. The synchronization mode may also add a criterion to the filter." +msgstr "" + +#. module: marketing_campaign +#: code:addons/marketing_campaign/marketing_campaign.py:136 +#, python-format +msgid "The campaign cannot be started. There are no activities in it." +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.segment,date_next_sync:0 +msgid "Next Synchronization" +msgstr "" + +#. module: marketing_campaign +#: model:email.template,body_html:marketing_campaign.email_template_2 +msgid "" +"Hi, we are delighted to welcome you among our Silver Partners as of today!" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.segment,ir_filter_id:0 +msgid "Filter" +msgstr "Filter" + +#. module: marketing_campaign +#: view:marketing.campaign.segment:0 +msgid "All" +msgstr "Vse" + +#. module: marketing_campaign +#: selection:marketing.campaign.segment,sync_mode:0 +msgid "Only records created after last sync" +msgstr "" + +#. module: marketing_campaign +#: field:marketing.campaign.activity,variable_cost:0 +msgid "Variable Cost" +msgstr "" + +#. module: marketing_campaign +#: model:email.template,subject:marketing_campaign.email_template_1 +msgid "Welcome to the OpenERP Partner Channel!" +msgstr "" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,total_cost:0 +msgid "Cost" +msgstr "Strošek" + +#. module: marketing_campaign +#: view:campaign.analysis:0 +#: field:campaign.analysis,year:0 +msgid "Year" +msgstr "Leto" diff --git a/addons/membership/i18n/sl.po b/addons/membership/i18n/sl.po index a4fcd7cbbbb..aca8a0cbe74 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/i18n/sl.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-26 13:35+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:53+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 @@ -43,7 +43,7 @@ msgstr "" #: view:report.membership:0 #: view:res.partner:0 msgid "Group By..." -msgstr "" +msgstr "Združeno po..." #. module: membership #: field:report.membership,num_paid:0 @@ -63,7 +63,7 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "March" -msgstr "" +msgstr "Marec" #. module: membership #: model:process.node,note:membership.process_node_setassociation0 @@ -80,7 +80,7 @@ msgstr "" #: view:report.membership:0 #: field:report.membership,company_id:0 msgid "Company" -msgstr "" +msgstr "Podjetje" #. module: membership #: selection:membership.membership_line,state:0 @@ -111,7 +111,7 @@ msgstr "" #: field:report.membership,user_id:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "" +msgstr "Prodajalec" #. module: membership #: model:process.transition,name:membership.process_transition_waitingtoinvoice0 @@ -126,7 +126,7 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Dobavitelji" #. module: membership #: selection:membership.membership_line,state:0 @@ -138,19 +138,19 @@ msgstr "" #. module: membership #: view:product.product:0 msgid "Taxes" -msgstr "" +msgstr "Davki" #. module: membership #: view:res.partner:0 msgid "All Members" -msgstr "" +msgstr "Vsi člani" #. module: membership #: code:addons/membership/membership.py:410 #: code:addons/membership/membership.py:413 #, python-format msgid "Error!" -msgstr "" +msgstr "Napaka!" #. module: membership #: model:process.transition,name:membership.process_transition_producttomember0 @@ -180,7 +180,7 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Supplier Partners" -msgstr "" +msgstr "Dobavitelji" #. module: membership #: field:report.membership,num_invoiced:0 @@ -218,7 +218,7 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Customer Partners" -msgstr "" +msgstr "Kupci" #. module: membership #: field:membership.membership_line,date_from:0 @@ -281,7 +281,7 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "July" -msgstr "" +msgstr "Julij" #. module: membership #: model:product.template,name:membership.membership_0_product_template @@ -346,7 +346,7 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Memberships" -msgstr "" +msgstr "Članstva" #. module: membership #: model:process.node,note:membership.process_node_paidmember0 @@ -356,28 +356,28 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "September" -msgstr "" +msgstr "September" #. module: membership #: selection:report.membership,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: membership #: model:ir.model,name:membership.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Postavka računa" #. module: membership #: view:report.membership:0 #: field:report.membership,month:0 msgid "Month" -msgstr "" +msgstr "Mesec" #. module: membership #: view:product.product:0 msgid "Group by..." -msgstr "" +msgstr "Združeno po..." #. module: membership #: code:addons/membership/membership.py:411 @@ -406,7 +406,7 @@ msgstr "" #. module: membership #: view:report.membership:0 msgid "Associated Partner" -msgstr "" +msgstr "Povezani partner" #. module: membership #: model:ir.model,name:membership.model_membership_invoice @@ -422,22 +422,22 @@ msgstr "" #. module: membership #: view:product.product:0 msgid "Category" -msgstr "" +msgstr "Kategorija" #. module: membership #: view:res.partner:0 msgid "Contacts" -msgstr "" +msgstr "Stiki" #. module: membership #: view:report.membership:0 msgid "Forecast" -msgstr "" +msgstr "Napoved" #. module: membership #: field:report.membership,partner_id:0 msgid "Member" -msgstr "" +msgstr "Član" #. module: membership #: view:product.product:0 @@ -462,17 +462,17 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Kupci" #. module: membership #: view:membership.invoice:0 msgid "or" -msgstr "" +msgstr "ali" #. module: membership #: selection:report.membership,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_products @@ -489,7 +489,7 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "June" -msgstr "" +msgstr "Junij" #. module: membership #: help:product.product,membership:0 @@ -530,17 +530,17 @@ msgstr "" #: field:report.membership,date_from:0 #: view:res.partner:0 msgid "Start Date" -msgstr "" +msgstr "Začetni datum" #. module: membership #: selection:report.membership,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: membership #: selection:report.membership,month:0 msgid "October" -msgstr "" +msgstr "Oktober" #. module: membership #: help:res.partner,membership_state:0 @@ -562,7 +562,7 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: membership #: view:res.partner:0 @@ -634,13 +634,13 @@ msgstr "" #. module: membership #: view:product.product:0 msgid "Inactive" -msgstr "" +msgstr "Neaktivno" #. module: membership #: model:ir.model,name:membership.model_account_invoice #: field:membership.membership_line,account_invoice_id:0 msgid "Invoice" -msgstr "" +msgstr "Račun" #. module: membership #: view:membership.invoice:0 @@ -675,12 +675,12 @@ msgstr "" #. module: membership #: model:ir.model,name:membership.model_product_product msgid "Product" -msgstr "" +msgstr "Izdelek" #. module: membership #: selection:report.membership,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: membership #: field:product.product,membership_date_from:0 @@ -702,12 +702,12 @@ msgstr "" #: field:report.membership,date_to:0 #: view:res.partner:0 msgid "End Date" -msgstr "" +msgstr "Končni datum" #. module: membership #: selection:report.membership,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: membership #: model:process.node,name:membership.process_node_invoicedmember0 @@ -717,7 +717,7 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: membership #: view:res.partner:0 @@ -758,7 +758,7 @@ msgstr "" #. module: membership #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "Napaka! Ne morete ustvariti rekurzivno povezane člane." #. module: membership #: selection:membership.membership_line,state:0 @@ -776,7 +776,7 @@ msgstr "Leto" #. module: membership #: view:product.product:0 msgid "Accounting" -msgstr "" +msgstr "Računovodstvo" #. module: membership #: view:report.membership:0 diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index 19dc3dc1619..e5b9456df9b 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-27 17:48+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -28,6 +28,14 @@ msgid "" "BoM / quantity of manufactured product set on the BoM * quantity of " "manufactured product in the production order.)'" msgstr "" +"Geef aan hoe de hoeveelheid bijproducten zal worden ingesteld op de " +"productieorders met behulp van deze materiaallijst. 'Vaste' geeft een " +"situatie aan waarbij de hoeveelheid aangemaakt bijproduct gelijk is aan de " +"hoeveelheid set op de materiaallijst, ongeacht hoeveel er gemaakt zijn in de " +"productieorder. Tegenovergesteld is, 'Variabel'. Dit betekent dat de " +"hoeveelheid wordt berekend als '(hoeveelheid bijproduct ingesteld op de " +"materiaallijst/hoeveelheid van de vervaardigde producten ingesteld op de " +"materiaallijst* hoeveelheid vervaardigde product in de productieorder.)'" #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 @@ -98,6 +106,8 @@ msgid "" "The Product Unit of Measure you chose has a different category than in the " "product form." msgstr "" +"De maateenheid van het door u gekozen product heeft een andere categorie dan " +"in het product bestand." #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index c38f149a69c..a3a73d95bc1 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -8,14 +8,14 @@ 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-01-16 00:59+0000\n" +"PO-Revision-Date: 2013-01-27 21:53+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -50,7 +50,7 @@ msgstr "Združeno po..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "" +msgstr "Informacije o delovnem procesu" #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 @@ -77,12 +77,12 @@ msgstr "Nadaljevanje" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Product to Produce" -msgstr "" +msgstr "Izdelki za izdelavo" #. module: mrp_operations #: view:mrp_operations.operation:0 msgid "Production Operation" -msgstr "" +msgstr "Operacija proizvodnje" #. module: mrp_operations #: view:mrp.production:0 @@ -102,7 +102,7 @@ msgstr "Delovni nalog" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operations" -msgstr "" +msgstr "Proizvodne operacije" #. module: mrp_operations #: view:mrp.workorder:0 @@ -128,12 +128,12 @@ msgstr "Izjema prevzema" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_productionstart0 msgid "Creation of the work order" -msgstr "" +msgstr "Kreiranje delovnega naloga" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_productionstart0 msgid "The work orders are created on the basis of the production order." -msgstr "" +msgstr "Delovni nalogi se kreirajo na osnovi naloga za proizvodnjo" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -156,7 +156,7 @@ msgstr "Preklicano" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Operation is Already Cancelled!" -msgstr "" +msgstr "Operacija je že preklicana !" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action @@ -173,14 +173,14 @@ msgstr "Premik zaloge" #: code:addons/mrp_operations/mrp_operations.py:481 #, python-format msgid "No operation to cancel." -msgstr "" +msgstr "Ni operacije za preklic." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:474 #, python-format msgid "" "In order to Finish the operation, it must be in the Start or Resume state!" -msgstr "" +msgstr "Če želite končati operacijo mora biti najprej začeta." #. module: mrp_operations #: field:mrp.workorder,nbr:0 @@ -198,12 +198,12 @@ msgstr "Osnutek" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Dejanski datum proizvodnje" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production Workcenter" -msgstr "" +msgstr "Faza proizvodnje" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_finished:0 @@ -228,12 +228,12 @@ msgstr "Delovni nalog" msgid "" "There is 1 work order per work center. The information about the number of " "cycles or the cycle time." -msgstr "" +msgstr "Za eno fazo obstoja en delovni nalog." #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_report_mrp_workorders_tree msgid "Work Order Analysis" -msgstr "" +msgstr "Analiza delovnih nalogov" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning @@ -321,12 +321,12 @@ msgstr "" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 msgid "Operation Cancelled" -msgstr "" +msgstr "Operacija preklicana" #. module: mrp_operations #: view:mrp.production:0 msgid "Pause Work Order" -msgstr "" +msgstr "Zaustavite delovni nalog." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -357,7 +357,7 @@ msgstr "mrp_operations.operation" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_workorder msgid "Work Order Report" -msgstr "" +msgstr "Poročilo delovnega naloga" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_start:0 @@ -368,12 +368,12 @@ msgstr "Datum začetka" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "Waiting Goods" -msgstr "" +msgstr "Čaka na materiale" #. module: mrp_operations #: field:mrp.production.workcenter.line,production_state:0 msgid "Production Status" -msgstr "" +msgstr "Status proizvodnje" #. module: mrp_operations #: selection:mrp.workorder,state:0 @@ -424,7 +424,7 @@ msgstr "" #: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Set Draft" -msgstr "" +msgstr "Nastavite osnutek" #. module: mrp_operations #: view:mrp.production:0 diff --git a/addons/mrp_repair/i18n/pt.po b/addons/mrp_repair/i18n/pt.po index 6aa7a0042ed..48cf539d63b 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/i18n/pt.po @@ -8,14 +8,14 @@ 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-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:49+0000\n" +"Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -54,7 +54,7 @@ msgstr "Para Faturar" #. module: mrp_repair #: view:mrp.repair:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unidade de medida" #. module: mrp_repair #: report:repair.order:0 @@ -69,7 +69,7 @@ msgstr "Agrupado por endereço da fatura do parceiro" #. module: mrp_repair #: field:mrp.repair,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensagens por ler" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:435 @@ -96,7 +96,7 @@ msgstr "Exceção da Fatura" #. module: mrp_repair #: view:mrp.repair:0 msgid "Serial Number" -msgstr "" +msgstr "Número de série" #. module: mrp_repair #: field:mrp.repair,address_id:0 @@ -137,7 +137,7 @@ msgstr "Notas" #. module: mrp_repair #: field:mrp.repair,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensagens" #. module: mrp_repair #: field:mrp.repair,amount_tax:0 @@ -152,7 +152,7 @@ msgstr "Impostos" #: code:addons/mrp_repair/mrp_repair.py:442 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: mrp_repair #: report:repair.order:0 @@ -216,7 +216,7 @@ msgstr "Movimento" #. module: mrp_repair #: report:repair.order:0 msgid "Tax" -msgstr "" +msgstr "Imposto" #. module: mrp_repair #: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree @@ -315,7 +315,7 @@ msgstr "Número do Lote" #. module: mrp_repair #: field:mrp.repair,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: mrp_repair #: field:mrp.repair,fees_lines:0 @@ -444,7 +444,7 @@ msgstr "Faturado" #: field:mrp.repair.fee,product_uom:0 #: field:mrp.repair.line,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Unidade de medida do produto" #. module: mrp_repair #: view:mrp.repair.make_invoice:0 @@ -540,7 +540,7 @@ msgstr "" #. module: mrp_repair #: field:mrp.repair,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "É um seguidor" #. module: mrp_repair #: view:mrp.repair:0 @@ -570,7 +570,7 @@ msgstr "Cotação da Reparação" #. module: mrp_repair #: field:mrp.repair,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumo" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/note_pad/i18n/sl.po b/addons/note_pad/i18n/sl.po new file mode 100644 index 00000000000..1feb41788c2 --- /dev/null +++ b/addons/note_pad/i18n/sl.po @@ -0,0 +1,28 @@ +# Slovenian 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-01-26 12:49+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: note_pad +#: model:ir.model,name:note_pad.model_note_note +msgid "Note" +msgstr "Zapisek" + +#. module: note_pad +#: field:note.note,note_pad_url:0 +msgid "Pad Url" +msgstr "" diff --git a/addons/note_pad/i18n/sv.po b/addons/note_pad/i18n/sv.po new file mode 100644 index 00000000000..6a9bc0b9c1b --- /dev/null +++ b/addons/note_pad/i18n/sv.po @@ -0,0 +1,28 @@ +# Swedish 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-01-26 14:14+0000\n" +"Last-Translator: Mikael Dúi Bolinder \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 05:10+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: note_pad +#: model:ir.model,name:note_pad.model_note_note +msgid "Note" +msgstr "Anteckning" + +#. module: note_pad +#: field:note.note,note_pad_url:0 +msgid "Pad Url" +msgstr "" diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index 890556c2009..cde79288a58 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/i18n/pt.po @@ -8,14 +8,14 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-01-24 10:42+0000\n" +"Last-Translator: Alien Group Lda \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:57+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" +"X-Generator: Launchpad (build 16445)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -129,7 +129,7 @@ msgstr "Nome do Artigo" #. module: point_of_sale #: model:product.template,name:point_of_sale.pamplemousse_rouge_pamplemousse_product_template msgid "Red grapefruit" -msgstr "" +msgstr "Uva vermelha" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1341 @@ -165,7 +165,7 @@ msgstr "Retirar dinheiro" #: code:addons/point_of_sale/point_of_sale.py:105 #, python-format msgid "not used" -msgstr "" +msgstr "não usado" #. module: point_of_sale #: field:pos.config,iface_vkeyboard:0 @@ -201,14 +201,14 @@ msgstr "Data de Início" #. module: point_of_sale #: constraint:pos.session:0 msgid "You cannot create two active sessions with the same responsible!" -msgstr "" +msgstr "Não pode criar duas sessões activas com o mesmo responsável" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Weighting" -msgstr "" +msgstr "Pesagem" #. module: point_of_sale #: model:product.template,name:point_of_sale.fenouil_fenouil_product_template diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index 9aede5c6071..b2172c55895 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -8,15 +8,15 @@ 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-01-20 02:31+0000\n" +"PO-Revision-Date: 2013-01-27 12:17+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16451)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -44,11 +44,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir uma nova categoria.\n" +"

\n" +" Categorias são usadas para visualizar os produtos através\n" +" da interface touchscreen.\n" +"

\n" +" Se você colocar uma imagem na categoria, o layout vai se " +"ajustar automaticamente\n" +" Nós sugerimos não colocar uma foto para dispositivos com " +"tela pequena (1024x768).\n" +"

\n" +" " #. module: point_of_sale #: view:pos.receipt:0 msgid "Print the Receipt of the Sale" -msgstr "" +msgstr "Imprimir o Recibo da Venda" #. module: point_of_sale #: field:pos.session,cash_register_balance_end:0 @@ -64,24 +76,24 @@ msgstr "Hoje" #. module: point_of_sale #: field:pos.config,iface_electronic_scale:0 msgid "Electronic Scale Interface" -msgstr "" +msgstr "Interface de Balança Eletrônica" #. module: point_of_sale #: model:pos.category,name:point_of_sale.plain_water msgid "Plain Water" -msgstr "" +msgstr "Água Natural" #. module: point_of_sale #: model:product.template,name:point_of_sale.poire_conference_product_template msgid "Conference pears" -msgstr "" +msgstr "Pêras" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:408 #, python-format msgid "ã" -msgstr "" +msgstr "ã" #. module: point_of_sale #: field:pos.config,journal_id:0 @@ -92,7 +104,7 @@ msgstr "Diário de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_2l_product_template msgid "Spa Reine 2L" -msgstr "" +msgstr "Spa Reine 2L" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_lines_detail @@ -104,7 +116,7 @@ msgstr "Detalhes das Vendas" #. module: point_of_sale #: constraint:pos.config:0 msgid "You cannot have two cash controls in one Point Of Sale !" -msgstr "" +msgstr "Você não pode ter dois controles de caixa em um ponto de venda!" #. module: point_of_sale #: field:pos.payment.report.user,user_id:0 @@ -136,7 +148,7 @@ msgstr "" #: code:addons/point_of_sale/point_of_sale.py:1341 #, python-format msgid "Assign a Custom EAN" -msgstr "" +msgstr "Definir um EAN personalizado" #. module: point_of_sale #: view:pos.session.opening:0 @@ -171,7 +183,7 @@ msgstr "não usado" #. module: point_of_sale #: field:pos.config,iface_vkeyboard:0 msgid "Virtual KeyBoard Interface" -msgstr "" +msgstr "Interface de Teclado Virtual" #. module: point_of_sale #. openerp-web @@ -202,32 +214,32 @@ msgstr "Data de Início" #. module: point_of_sale #: constraint:pos.session:0 msgid "You cannot create two active sessions with the same responsible!" -msgstr "" +msgstr "Você não pode criar duas sessões ativas com o mesmo responsável!" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Weighting" -msgstr "" +msgstr "Pesando" #. module: point_of_sale #: model:product.template,name:point_of_sale.fenouil_fenouil_product_template msgid "Fennel" -msgstr "" +msgstr "erva-doce" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:478 #, python-format msgid "Help needed" -msgstr "" +msgstr "Ajuda necessária" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:739 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erro de Configuração!" #. module: point_of_sale #: report:account.statement:0 @@ -239,7 +251,7 @@ msgstr "Parceiro" #. module: point_of_sale #: view:pos.session:0 msgid "Closing Cash Control" -msgstr "" +msgstr "Fechando Controle de Caixa" #. module: point_of_sale #: report:pos.details:0 @@ -256,12 +268,12 @@ msgstr "Preço Médio" #. module: point_of_sale #: view:pos.order:0 msgid "Accounting Information" -msgstr "" +msgstr "Informação Contábil" #. module: point_of_sale #: field:pos.session.opening,show_config:0 msgid "Show Config" -msgstr "" +msgstr "Mostrar Configuração" #. module: point_of_sale #: report:pos.lines:0 @@ -279,7 +291,7 @@ msgstr "Total de Desconto" #: code:addons/point_of_sale/static/src/xml/pos.xml:447 #, python-format msgid "Debug Window" -msgstr "" +msgstr "Janela de depuração" #. module: point_of_sale #. openerp-web @@ -287,12 +299,12 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:616 #, python-format msgid "Change:" -msgstr "" +msgstr "Troco:" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_2l_product_template msgid "Coca-Cola Regular 2L" -msgstr "" +msgstr "Coca-Cola Regular 2L" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_month @@ -302,7 +314,7 @@ msgstr "Vendas por Mês" #. module: point_of_sale #: model:pos.category,name:point_of_sale.soda_orange msgid "Orange" -msgstr "" +msgstr "Laranja" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_user_pos_today @@ -321,6 +333,7 @@ msgstr "Desc.(%)" #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" +"Por favor defina conta de recebimento para este produto: \"%s\" (id:%d)." #. module: point_of_sale #: view:report.pos.order:0 @@ -349,18 +362,18 @@ msgstr "Relatório de Vendas" #. module: point_of_sale #: model:pos.category,name:point_of_sale.beverage msgid "Beverages" -msgstr "" +msgstr "Bebidas" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_session_opening #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_opening msgid "Your Session" -msgstr "" +msgstr "Sua Sessão" #. module: point_of_sale #: model:product.template,name:point_of_sale.stella_50cl_product_template msgid "Stella Artois 50cl" -msgstr "" +msgstr "Stella Artois 50cl" #. module: point_of_sale #: view:pos.details:0 @@ -370,19 +383,19 @@ msgstr "Datas" #. module: point_of_sale #: field:pos.category,parent_id:0 msgid "Parent Category" -msgstr "" +msgstr "Categoria de Origem" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:488 #, python-format msgid "Open Cashbox" -msgstr "" +msgstr "Abrir Caixa Registradora" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Select your Point of Sale" -msgstr "" +msgstr "Escolha seu Ponto de Vendas" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 @@ -406,25 +419,25 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:486 #, python-format msgid "Payment Request" -msgstr "" +msgstr "Solicitação de Pagamento" #. module: point_of_sale #: field:product.product,to_weight:0 msgid "To Weight" -msgstr "" +msgstr "Para Pesar" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:482 #, python-format msgid "Hardware Events" -msgstr "" +msgstr "Eventos do Hardware" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 #, python-format msgid "You should assign a Point of Sale to your session." -msgstr "" +msgstr "Você precisa associar um Ponto de Vendas a sua sessão." #. module: point_of_sale #: view:pos.order.line:0 @@ -434,7 +447,7 @@ msgstr "Total de Qtd" #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_33cl_product_template msgid "Fanta Orange 33cl" -msgstr "" +msgstr "Fanta Laranja 33cl" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:420 @@ -451,7 +464,7 @@ msgstr "" #: code:addons/point_of_sale/point_of_sale.py:512 #, python-format msgid "error!" -msgstr "" +msgstr "erro!" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_user_pos_month @@ -468,17 +481,17 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid ") is \"" -msgstr "" +msgstr ") é \"" #. module: point_of_sale #: model:product.template,name:point_of_sale.Onions_product_template msgid "Onions" -msgstr "" +msgstr "Cebolas" #. module: point_of_sale #: view:pos.session:0 msgid "Validate & Open Session" -msgstr "" +msgstr "Validar e Abrir a Sessão" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:99 @@ -486,18 +499,18 @@ msgstr "" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "In Progress" -msgstr "" +msgstr "Em Andamento" #. module: point_of_sale #: view:pos.session:0 #: field:pos.session,opening_details_ids:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Controle de Abertura de Caixa" #. module: point_of_sale #: help:res.users,ean13:0 msgid "BarCode" -msgstr "" +msgstr "Código de barras" #. module: point_of_sale #: help:pos.category,image_medium:0 @@ -510,7 +523,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Open Session" -msgstr "" +msgstr "Abrir Sessão" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_of_sale @@ -522,17 +535,17 @@ msgstr "Operações Diárias" #: code:addons/point_of_sale/static/src/xml/pos.xml:42 #, python-format msgid "Google Chrome" -msgstr "" +msgstr "Google Chrome" #. module: point_of_sale #: model:pos.category,name:point_of_sale.sparkling_water msgid "Sparkling Water" -msgstr "" +msgstr "Água com Gás" #. module: point_of_sale #: view:account.bank.statement:0 msgid "Search Cash Statements" -msgstr "" +msgstr "Procurar Demonstrativos do Caixa" #. module: point_of_sale #: view:account.bank.statement:0 @@ -545,7 +558,7 @@ msgstr "" #: field:pos.session.opening,pos_state_str:0 #: field:report.pos.order,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -570,24 +583,24 @@ msgstr "Linha de Ordem de Venda" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Configuration" -msgstr "" +msgstr "Configuração do Ponto de Vendas" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:369 #, python-format msgid "Your order has to be validated by a cashier." -msgstr "" +msgstr "Seu pedido tem de ser validado pelo caixa." #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_50cl_product_template msgid "Fanta Orange 50cl" -msgstr "" +msgstr "Fanta Laranja 50cl" #. module: point_of_sale #: field:pos.category,child_id:0 msgid "Children Categories" -msgstr "" +msgstr "Sub Categorias" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.action_pos_session @@ -614,7 +627,7 @@ msgstr "" #: code:addons/point_of_sale/point_of_sale.py:868 #, python-format msgid "Customer Invoice" -msgstr "" +msgstr "Fatura de Cliente" #. module: point_of_sale #: view:pos.session.opening:0 @@ -622,6 +635,8 @@ msgid "" "You can continue sales from the touchscreen interface by clicking on \"Start " "Selling\" or close the cash register session." msgstr "" +"Você pode continuar as suas vendas a partir da interface touchscreen, " +"clicando em \"Começar a Vender\" ou fechar a sessão da caixa registradora." #. module: point_of_sale #: report:account.statement:0 @@ -633,7 +648,7 @@ msgstr "Data de Fechamento" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Linhas de Abertura do Caixa" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -643,7 +658,7 @@ msgstr "Outubro" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_1l_product_template msgid "Coca-Cola Light 1L" -msgstr "" +msgstr "Coca-Cola Light 1L" #. module: point_of_sale #: report:pos.details:0 @@ -654,12 +669,12 @@ msgstr "Resumo" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_45g_product_template msgid "Lays Natural 45g" -msgstr "" +msgstr "Lays Natural 45g" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_50cl_product_template msgid "Chaudfontaine 50cl" -msgstr "" +msgstr "Chaudfontaine 50cl" #. module: point_of_sale #: report:pos.invoice:0 @@ -673,14 +688,14 @@ msgstr "Quantidade" #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line No" -msgstr "" +msgstr "Linha Núm." #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:459 #, python-format msgid "Set Weight" -msgstr "" +msgstr "Configurar Peso" #. module: point_of_sale #: view:account.bank.statement:0 @@ -695,7 +710,7 @@ msgstr "Total líquido:" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_client_pos_menu msgid "Open POS Menu" -msgstr "" +msgstr "Abrir Menu do PDV" #. module: point_of_sale #: report:pos.details_summary:0 @@ -705,14 +720,14 @@ msgstr "Modo de Pagamento" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_confirm msgid "Post POS Journal Entries" -msgstr "" +msgstr "Lançar entradas no diário do PDV" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:463 #, python-format msgid "Barcode Scanner" -msgstr "" +msgstr "Scanner de Código de Barras" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template @@ -730,7 +745,7 @@ msgstr "" #: view:report.pos.order:0 #: field:report.pos.order,total_discount:0 msgid "Total Discount" -msgstr "" +msgstr "Desconto Total" #. module: point_of_sale #. openerp-web @@ -741,11 +756,13 @@ msgid "" "use\n" " a modern browser like" msgstr "" +"O Ponto de Vendas não é suportado pelo Microsoft Internet Explorer. Use um " +"navegador melhor como" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Click to start a session." -msgstr "" +msgstr "Clique para iniciar a sessão." #. module: point_of_sale #: view:pos.details:0 @@ -763,7 +780,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pizza msgid "Pizza" -msgstr "" +msgstr "Pizza" #. module: point_of_sale #: view:pos.session:0 @@ -780,7 +797,7 @@ msgstr "Adicionar Produto" #. module: point_of_sale #: field:pos.config,name:0 msgid "Point of Sale Name" -msgstr "" +msgstr "Nome do Ponto de Vendas" #. module: point_of_sale #: field:report.transaction.pos,invoice_am:0 @@ -790,7 +807,7 @@ msgstr "Valor da Fatura" #. module: point_of_sale #: model:pos.category,name:point_of_sale.coke msgid "Coke" -msgstr "" +msgstr "Coke" #. module: point_of_sale #: report:pos.invoice:0 @@ -814,7 +831,7 @@ msgstr "" #. module: point_of_sale #: view:pos.confirm:0 msgid "Post All Orders" -msgstr "" +msgstr "Lançar todos os Pedidos" #. module: point_of_sale #: report:account.statement:0 @@ -827,7 +844,7 @@ msgstr "Saldo Final" #: code:addons/point_of_sale/wizard/pos_box_out.py:89 #, python-format msgid "please check that account is set to %s." -msgstr "" +msgstr "por favor verifique que a conta está definida para %s." #. module: point_of_sale #: help:pos.category,image:0 @@ -835,16 +852,17 @@ msgid "" "This field holds the image used as image for the cateogry, limited to " "1024x1024px." msgstr "" +"Este campo guarda a imagem a ser usada na categoria, limitada a 1024x1024px." #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_max_50cl_product_template msgid "Pepsi Max 50cl" -msgstr "" +msgstr "Pepsi Max 50cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.san_pellegrino_1l_product_template msgid "San Pellegrino 1L" -msgstr "" +msgstr "San Pellegrino 1L" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:49 @@ -860,35 +878,35 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.rouges_noyau_fruits msgid "Berries" -msgstr "" +msgstr "Frutas vermelhas" #. module: point_of_sale #: view:pos.ean_wizard:0 msgid "Ean13 Generator" -msgstr "" +msgstr "Gerador de Ean13" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_1l_product_template msgid "Spa Reine 1L" -msgstr "" +msgstr "Spa Reine 1L" #. module: point_of_sale #: constraint:res.partner:0 #: constraint:res.users:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Erro: código EAN inválido" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes_racine msgid "Root vegetables" -msgstr "" +msgstr "Tubérculos" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.act_pos_open_statement #: model:ir.model,name:point_of_sale.model_pos_open_statement #: view:pos.open.statement:0 msgid "Open Statements" -msgstr "" +msgstr "Extratos em Aberto" #. module: point_of_sale #: field:pos.details,date_end:0 @@ -913,7 +931,7 @@ msgstr "Registro" #. module: point_of_sale #: view:pos.session:0 msgid "Statements" -msgstr "" +msgstr "Demonstrativos" #. module: point_of_sale #: report:pos.details:0 @@ -926,6 +944,8 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" +"Marque se você deseja agrupar os itens de diário por produtos quando for " +"fechar a Sessão" #. module: point_of_sale #: report:pos.details:0 @@ -936,18 +956,18 @@ msgstr "Total pago" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_session_opening msgid "pos.session.opening" -msgstr "" +msgstr "pos.session.opening" #. module: point_of_sale #: view:res.users:0 msgid "Edit EAN" -msgstr "" +msgstr "Editar EAN" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:80 #, python-format msgid "List of Cash Registers" -msgstr "" +msgstr "Lista de Caixas Registradoras" #. module: point_of_sale #: model:product.template,name:point_of_sale.maes_50cl_product_template @@ -957,17 +977,17 @@ msgstr "" #. module: point_of_sale #: view:report.pos.order:0 msgid "Not Invoiced" -msgstr "" +msgstr "Não Faturado" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_pickles_250g_product_template msgid "250g Lays Pickels" -msgstr "" +msgstr "Batata Lays 250g" #. module: point_of_sale #: field:pos.session.opening,pos_session_id:0 msgid "PoS Session" -msgstr "" +msgstr "Sessão do PdV" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -987,31 +1007,33 @@ msgid "" "You have to select a pricelist in the sale form !\n" "Please set one before choosing a product." msgstr "" +"Você tem que selecionar uma lista de preços, no formulário de venda!\n" +"Por favor, defina uma antes de escolher um produto." #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_2l_product_template msgid "Fanta Orange 2L" -msgstr "" +msgstr "Fanta Laranja 2L" #. module: point_of_sale #: model:product.template,name:point_of_sale.perrier_1l_product_template msgid "Perrier 1L" -msgstr "" +msgstr "Perrier 1L" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_33cl_product_template msgid "Spa Reine 33cl" -msgstr "" +msgstr "Spa Reine 33cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_discount msgid "Add a Global Discount" -msgstr "" +msgstr "Adicionar Desconto Global" #. module: point_of_sale #: view:pos.config:0 msgid "Journals" -msgstr "" +msgstr "Diários" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_prosciutto_product_template @@ -1022,12 +1044,12 @@ msgstr "" #: model:product.template,name:point_of_sale.lays_light_paprika_170g_product_template #: model:product.template,name:point_of_sale.lays_paprika_170g_product_template msgid "Lays Light Paprika 170g" -msgstr "" +msgstr "Lays Light Paprika 170g" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_lemon_50cl_product_template msgid "Coca-Cola Light Lemon 50cl" -msgstr "" +msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web @@ -1036,36 +1058,36 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:747 #, python-format msgid "return" -msgstr "" +msgstr "retornar" #. module: point_of_sale #: view:product.product:0 msgid "Set a Custom EAN" -msgstr "" +msgstr "Definir um EAN personalizado" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:237 #, python-format msgid "Remaining:" -msgstr "" +msgstr "Restante:" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes msgid "Fresh vegetables" -msgstr "" +msgstr "Vegetais Frescos" #. module: point_of_sale #: view:pos.session:0 msgid "tab of the" -msgstr "" +msgstr "aba do" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:484 #, python-format msgid "Scan Item Success" -msgstr "" +msgstr "Item Digitalizado" #. module: point_of_sale #: report:account.statement:0 @@ -1077,27 +1099,27 @@ msgstr "Saldo Inicial" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_oven_150g_product_template msgid "Oven Baked Lays Natural 150g" -msgstr "" +msgstr "Lays Natural Assada 150g" #. module: point_of_sale #: sql_constraint:pos.session:0 msgid "The name of this POS Session must be unique !" -msgstr "" +msgstr "O nome desta sessão do PDV deve ser exclusivo!" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Subtotal de Abertura" #. module: point_of_sale #: view:pos.session:0 msgid "payment method." -msgstr "" +msgstr "método de pagamento" #. module: point_of_sale #: view:pos.order:0 msgid "Re-Print" -msgstr "" +msgstr "Re-impressão" #. module: point_of_sale #: model:product.template,name:point_of_sale.chimay_bleu_75cl_product_template @@ -1137,7 +1159,7 @@ msgstr "Disco" #. module: point_of_sale #: view:pos.order:0 msgid "(update)" -msgstr "" +msgstr "(atualizar)" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_vanille_2,5l_product_template @@ -1148,7 +1170,7 @@ msgstr "" #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_details #: model:ir.ui.menu,name:point_of_sale.menu_pos_details msgid "Sale Details" -msgstr "" +msgstr "Detalhes da Venda" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_2l_product_template @@ -1188,7 +1210,7 @@ msgstr "Total de Vendas" #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format msgid "ABC" -msgstr "" +msgstr "ABC" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_dame_blanche_2,5l_product_template @@ -1222,7 +1244,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:435 #, python-format msgid "0.00 €" -msgstr "" +msgstr "R$ 0,00" #. module: point_of_sale #: field:pos.order.line,create_date:0 @@ -1240,7 +1262,7 @@ msgstr "Vendas de Hoje" #: code:addons/point_of_sale/static/src/xml/pos.xml:334 #, python-format msgid "Welcome" -msgstr "" +msgstr "Bem Vindo" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 @@ -1273,7 +1295,7 @@ msgstr "Minhas Vendas" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Deprecated" -msgstr "" +msgstr "Marcar como Obsoleto" #. module: point_of_sale #: model:product.template,name:point_of_sale.limon_product_template @@ -1295,7 +1317,7 @@ msgstr "Total Faturado" #: model:ir.model,name:point_of_sale.model_pos_category #: field:product.product,pos_categ_id:0 msgid "Point of Sale Category" -msgstr "" +msgstr "Categoria do Ponto de Venda" #. module: point_of_sale #: view:report.pos.order:0 @@ -1315,7 +1337,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:334 #, python-format msgid "Choose your type of receipt:" -msgstr "" +msgstr "Escolha o tipo de recebimento:" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month @@ -1325,7 +1347,7 @@ msgstr "Vendas Mensais por Margem" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_jaunes_product_template msgid "Yellow Peppers" -msgstr "" +msgstr "Pimentões Amarelos" #. module: point_of_sale #: view:pos.order:0 @@ -1340,7 +1362,7 @@ msgstr "Data do Pedido" #. module: point_of_sale #: model:product.template,name:point_of_sale.stella_33cl_product_template msgid "Stella Artois 33cl" -msgstr "" +msgstr "Stella Artois 33cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_300g_product_template @@ -1363,7 +1385,7 @@ msgstr "Fechamento de Caixa do dia" #: code:addons/point_of_sale/point_of_sale.py:898 #, python-format msgid "Selected orders do not have the same session!" -msgstr "" +msgstr "Os pedidos selecionados não têm a mesma sessão!" #. module: point_of_sale #: report:pos.invoice:0 @@ -1378,7 +1400,7 @@ msgstr "" #. module: point_of_sale #: report:pos.invoice:0 msgid "Fiscal Position Remark :" -msgstr "" +msgstr "Ressalva de Posição Fiscal" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1396,31 +1418,31 @@ msgstr "Data de Abertura" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_all msgid "All Sessions" -msgstr "" +msgstr "Todas as Sessões" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:666 #, python-format msgid "tab" -msgstr "" +msgstr "aba" #. module: point_of_sale #: report:pos.lines:0 msgid "Taxes :" -msgstr "" +msgstr "Impostos :" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:281 #, python-format msgid "Thank you for shopping with us." -msgstr "" +msgstr "Obrigado pela preferência." #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_2l_product_template msgid "Coca-Cola Light 2L" -msgstr "" +msgstr "Coca-Cola Light 2L" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_funghi_product_template @@ -1431,12 +1453,12 @@ msgstr "" #: model:ir.actions.act_window,name:point_of_sale.pos_category_action #: model:ir.ui.menu,name:point_of_sale.menu_pos_category msgid "Product Categories" -msgstr "" +msgstr "Categorias de Produtos" #. module: point_of_sale #: help:pos.config,journal_id:0 msgid "Accounting journal used to post sales entries." -msgstr "" +msgstr "Diário contábil usado para lançar as entradas das vendas." #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -1448,7 +1470,7 @@ msgstr "Desc." #: code:addons/point_of_sale/static/src/xml/pos.xml:473 #, python-format msgid "Invalid Ean" -msgstr "" +msgstr "Ean Inválido" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_kriek_37,5cl_product_template @@ -1458,12 +1480,12 @@ msgstr "" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Config" -msgstr "" +msgstr "Configuração do Ponto de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_33cl_product_template msgid "Coca-Cola Zero 33cl" -msgstr "" +msgstr "Coca-Cola Zero 33cl" #. module: point_of_sale #. openerp-web @@ -1506,12 +1528,12 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:593 #, python-format msgid "Tax:" -msgstr "" +msgstr "Imposto:" #. module: point_of_sale #: view:pos.session:0 msgid "+ Transactions" -msgstr "" +msgstr "+Transações" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_discount @@ -1541,29 +1563,29 @@ msgstr "Usuário" #: code:addons/point_of_sale/static/src/xml/pos.xml:188 #, python-format msgid "Kg" -msgstr "" +msgstr "Kg" #. module: point_of_sale #: field:product.product,available_in_pos:0 msgid "Available in the Point of Sale" -msgstr "" +msgstr "Disponível no Ponto de Vendas" #. module: point_of_sale #: selection:pos.config,state:0 msgid "Deprecated" -msgstr "" +msgstr "Obsoleto" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_decaf_33cl_product_template msgid "Coca-Cola Light 33cl Decaf" -msgstr "" +msgstr "Coca-Cola Light 33cl Descafeinada" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:348 #, python-format msgid "The scanned product was not recognized" -msgstr "" +msgstr "O produto escaneado não foi reconhecido" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_transaction_pos @@ -1589,7 +1611,7 @@ msgstr "" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_config msgid "pos.config" -msgstr "" +msgstr "pos.config" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -1597,6 +1619,8 @@ msgid "" "Enter a reference, it will be converted\n" " automatically to a valid EAN number." msgstr "" +"Insira uma referência, irá ser convertido\n" +"                         automaticamente para um número válido EAN." #. module: point_of_sale #: field:product.product,expense_pdt:0 @@ -1606,7 +1630,7 @@ msgstr "" #. module: point_of_sale #: selection:report.pos.order,month:0 msgid "November" -msgstr "" +msgstr "Novembro" #. module: point_of_sale #. openerp-web @@ -1618,7 +1642,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_verts_product_template msgid "Green Peppers" -msgstr "" +msgstr "Pimentões Verdes" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_faro_37,5cl_product_template @@ -1655,7 +1679,7 @@ msgstr "" #: view:pos.config:0 #: selection:pos.config,state:0 msgid "Inactive" -msgstr "" +msgstr "Inativo" #. module: point_of_sale #. openerp-web @@ -1722,7 +1746,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:749 #, python-format msgid "close" -msgstr "" +msgstr "fechar" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.report_user_label @@ -1743,13 +1767,13 @@ msgstr "Quantidade Total" #. module: point_of_sale #: view:pos.session:0 msgid "End of Session" -msgstr "" +msgstr "Fim da Sessão" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_new_bank_statement_all_tree #: view:pos.session:0 msgid "Cash Registers" -msgstr "" +msgstr "Caixa Registradoras" #. module: point_of_sale #: help:pos.session,cash_register_balance_end:0 @@ -1761,12 +1785,12 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:480 #, python-format msgid "In Transaction" -msgstr "" +msgstr "Em Transação" #. module: point_of_sale #: model:pos.category,name:point_of_sale.food msgid "Food" -msgstr "" +msgstr "Comida" #. module: point_of_sale #: field:pos.box.entries,ref:0 @@ -1786,7 +1810,7 @@ msgstr "Preço" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_33cl_product_template msgid "Coca-Cola Light 33cl" -msgstr "" +msgstr "Coca-Cola Light 33cl" #. module: point_of_sale #: view:report.sales.by.margin.pos:0 @@ -1800,25 +1824,25 @@ msgstr "Ponto de Venda" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_33cl_product_template msgid "Coca-Cola Regular 33cl" -msgstr "" +msgstr "Coca-Cola Regular 33cl" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:335 #, python-format msgid "Ticket" -msgstr "" +msgstr "Tíquete" #. module: point_of_sale #: field:pos.session,cash_register_difference:0 msgid "Difference" -msgstr "" +msgstr "Diferença" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:529 #, python-format msgid "Unable to Delete !" -msgstr "" +msgstr "Não foi possível Excluir!" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_agrumes @@ -1829,7 +1853,7 @@ msgstr "" #: report:pos.details:0 #: report:pos.details_summary:0 msgid "Start Period" -msgstr "" +msgstr "Período Inicial" #. module: point_of_sale #: report:account.statement:0 @@ -1855,12 +1879,12 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.unreferenced_product_product_template msgid "Unreferenced Products" -msgstr "" +msgstr "Produtos sem Referência" #. module: point_of_sale #: view:pos.ean_wizard:0 msgid "Apply" -msgstr "" +msgstr "Aplicar" #. module: point_of_sale #. openerp-web @@ -1893,14 +1917,14 @@ msgstr "" #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_order_all #: model:ir.ui.menu,name:point_of_sale.menu_report_pos_order_all msgid "Orders Analysis" -msgstr "" +msgstr "Análise do Pedido" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:569 #, python-format msgid "User:" -msgstr "" +msgstr "Usuário:" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:316 @@ -1918,7 +1942,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.peche_product_template msgid "Fishing" -msgstr "" +msgstr "Pescado" #. module: point_of_sale #: report:pos.details:0 @@ -1934,13 +1958,15 @@ msgstr "Data de Impressão" #. module: point_of_sale #: model:product.template,name:point_of_sale.poireaux_poireaux_product_template msgid "Leeks" -msgstr "" +msgstr "alho-poró" #. module: point_of_sale #: help:pos.category,sequence:0 msgid "" "Gives the sequence order when displaying a list of product categories." msgstr "" +"Define a ordem de apresentação quando mostrar a lista de categorias de " +"produtos." #. module: point_of_sale #: view:account.bank.statement:0 @@ -1955,7 +1981,7 @@ msgstr "Agrupar Por..." #: code:addons/point_of_sale/static/src/xml/pos.xml:570 #, python-format msgid "Shop:" -msgstr "" +msgstr "Estabelecimento:" #. module: point_of_sale #: field:account.journal,self_checkout_payment_method:0 @@ -1970,12 +1996,12 @@ msgstr "Ordens de Vendas" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.all_closed_cashbox_of_the_day msgid "All Closed CashBox" -msgstr "" +msgstr "Todas as Caixas Registradoras Fechadas" #. module: point_of_sale #: field:pos.details,user_ids:0 msgid "Salespeople" -msgstr "" +msgstr "Vendedores" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:756 @@ -1983,7 +2009,7 @@ msgstr "" #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format msgid "You have to open at least one cashbox." -msgstr "" +msgstr "Você precisa abrir pelo menos uma Caixa Registradora" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1139 @@ -1994,14 +2020,14 @@ msgstr "Sem Lista de Preços !" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_rouges_product_template msgid "Red Pepper" -msgstr "" +msgstr "Pimenta Vermelha" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:680 #, python-format msgid "caps lock" -msgstr "" +msgstr "caps lock" #. module: point_of_sale #: model:product.template,name:point_of_sale.grisette_cerise_25cl_product_template @@ -2019,23 +2045,23 @@ msgstr "Base" #: code:addons/point_of_sale/static/src/xml/pos.xml:745 #, python-format msgid " " -msgstr "" +msgstr " " #. module: point_of_sale #: model:pos.category,name:point_of_sale.categ_others msgid "Others" -msgstr "" +msgstr "Outros" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_legumes_frais msgid "Other fresh vegetables" -msgstr "" +msgstr "Outros Vegetais Frescos" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:49 #, python-format msgid "No Cash Register Defined !" -msgstr "" +msgstr "Nenhuma Caixa Registradora Definida!" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:513 @@ -2047,12 +2073,12 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.oignons_ail_echalotes msgid "Onions / Garlic / Shallots" -msgstr "" +msgstr "Cebola / Alho / Chalotas" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_50cl_product_template msgid "Evian 50cl" -msgstr "" +msgstr "Evian 50cl" #. module: point_of_sale #: view:pos.order:0 @@ -2062,7 +2088,7 @@ msgstr "Notas" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_lemon_2l_product_template msgid "Coca-Cola Light Lemon 2L" -msgstr "" +msgstr "Coca-Cola Light Lemon 2L" #. module: point_of_sale #: report:pos.details:0 @@ -2083,7 +2109,7 @@ msgstr "Linha de Venda" #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format msgid "123" -msgstr "" +msgstr "123" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.product_normal_action @@ -2106,12 +2132,12 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.tomate_en_grappe_product_template msgid "In Cluster Tomatoes" -msgstr "" +msgstr "Tomates em Conjunto" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos msgid "Start Point of Sale" -msgstr "" +msgstr "Iniciar Ponto de Vendas" #. module: point_of_sale #. openerp-web @@ -2128,19 +2154,19 @@ msgstr "Qtd" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_1l_product_template msgid "Coca-Cola Zero 1L" -msgstr "" +msgstr "Coca-Cola Zero 1L" #. module: point_of_sale #: report:pos.sales.user:0 #: report:pos.sales.user.today:0 #: field:report.pos.order,date:0 msgid "Date Order" -msgstr "" +msgstr "Data do Pedido" #. module: point_of_sale #: view:pos.order:0 msgid "Point of Sale Orders" -msgstr "" +msgstr "Pedidos do Ponto de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_et_fruit_50cl_product_template @@ -2152,7 +2178,7 @@ msgstr "" #: field:pos.config,journal_ids:0 #: field:pos.session,journal_ids:0 msgid "Available Payment Methods" -msgstr "" +msgstr "Métodos de Pagamentos Definidos" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.product_normal_action @@ -2172,6 +2198,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um novo produto.\n" +"

\n" +" Você precisa definir um produto para tudo que você vender \n" +" através do ponto de vendas.\n" +"

\n" +" Não se esqueça de definir o preço e a categoria do ponto de " +"venda\n" +"                 em que ele deve aparecer. Se um produto não tem uma " +"categoria do ponto de venda\n" +"                 você não pode vendê-lo por meio da interface do ponto de " +"venda.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -2186,18 +2226,18 @@ msgstr "Fax :" #. module: point_of_sale #: view:pos.session:0 msgid "Point of Sale Session" -msgstr "" +msgstr "Sessão do Ponto de Vendas" #. module: point_of_sale #: report:account.statement:0 #: model:ir.actions.report.xml,name:point_of_sale.account_statement msgid "Statement" -msgstr "" +msgstr "Demonstrativo" #. module: point_of_sale #: report:pos.invoice:0 msgid "Source" -msgstr "" +msgstr "Origem" #. module: point_of_sale #. openerp-web @@ -2209,18 +2249,18 @@ msgstr "" #. module: point_of_sale #: field:pos.make.payment,journal_id:0 msgid "Payment Mode" -msgstr "" +msgstr "Modo de Pagamento" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_paprika_45g_product_template msgid "Lays Paprika 45g" -msgstr "" +msgstr "Lays Paprika 45g" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_account_bank_statement #: field:pos.session,statement_ids:0 msgid "Bank Statement" -msgstr "" +msgstr "Extrato Bancário" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:101 @@ -2228,48 +2268,48 @@ msgstr "" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "Closed & Posted" -msgstr "" +msgstr "Fechado e Lançado" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_sale_user #: model:ir.model,name:point_of_sale.model_pos_sale_user #: view:pos.payment.report.user:0 msgid "Sale by User" -msgstr "" +msgstr "Venda por Usuário" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:568 #, python-format msgid "Phone:" -msgstr "" +msgstr "Telefone:" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_1l_product_template msgid "Evian 1L" -msgstr "" +msgstr "Evian 1L" #. module: point_of_sale #: model:pos.category,name:point_of_sale.water msgid "Water" -msgstr "" +msgstr "Água" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_ean_wizard msgid "pos.ean_wizard" -msgstr "" +msgstr "pos.ean_wizard" #. module: point_of_sale #: selection:report.pos.order,month:0 msgid "July" -msgstr "" +msgstr "Julho" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_config_pos #: model:ir.ui.menu,name:point_of_sale.menu_pos_config_pos #: view:pos.session:0 msgid "Point of Sales" -msgstr "" +msgstr "Ponto de Vendas" #. module: point_of_sale #: report:pos.details:0 @@ -2288,12 +2328,12 @@ msgstr "" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "Closing Control" -msgstr "" +msgstr "Fechando o Controle" #. module: point_of_sale #: field:report.pos.order,delay_validation:0 msgid "Delay Validation" -msgstr "" +msgstr "Adiar Validação" #. module: point_of_sale #: field:pos.order,nb_print:0 @@ -2303,26 +2343,26 @@ msgstr "Número da Impressão" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_make_payment msgid "Point of Sale Payment" -msgstr "" +msgstr "Pagamento do Ponto de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_50cl_product_template msgid "Coca-Cola Light 50cl" -msgstr "" +msgstr "Coca-Cola Light 50cl" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:472 #, python-format msgid "Unknown Product" -msgstr "" +msgstr "Produto Desconhecido" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:36 #, python-format msgid "" -msgstr "" +msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.jupiler_50cl_product_template @@ -2333,29 +2373,29 @@ msgstr "" #: report:pos.details:0 #: report:pos.details_summary:0 msgid "End Period" -msgstr "" +msgstr "Finalizar Período" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_lemon_33cl_product_template msgid "Coca-Cola Light Lemon 33cl" -msgstr "" +msgstr "Coca-Cola Light Lemon 33cl" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:33 #, python-format msgid "