From 5984a459b53f533efa8fa574a6b47d4b959ce014 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 11 Apr 2016 01:27:52 +0200 Subject: [PATCH] account_payment_return_import: Some refactoring OCA Transbot updated translations from Transifex --- account_payment_return_import/README.rst | 16 +- account_payment_return_import/__init__.py | 1 + account_payment_return_import/__openerp__.py | 3 +- account_payment_return_import/i18n/am.po | 218 +++++++++++++++++ account_payment_return_import/i18n/ar.po | 218 +++++++++++++++++ account_payment_return_import/i18n/bg.po | 218 +++++++++++++++++ account_payment_return_import/i18n/ca.po | 218 +++++++++++++++++ account_payment_return_import/i18n/cs.po | 218 +++++++++++++++++ account_payment_return_import/i18n/de.po | 218 +++++++++++++++++ account_payment_return_import/i18n/el_GR.po | 218 +++++++++++++++++ account_payment_return_import/i18n/es.po | 94 ++++---- account_payment_return_import/i18n/es_CR.po | 218 +++++++++++++++++ account_payment_return_import/i18n/es_EC.po | 218 +++++++++++++++++ account_payment_return_import/i18n/es_ES.po | 218 +++++++++++++++++ account_payment_return_import/i18n/es_MX.po | 218 +++++++++++++++++ account_payment_return_import/i18n/es_VE.po | 218 +++++++++++++++++ account_payment_return_import/i18n/et.po | 218 +++++++++++++++++ account_payment_return_import/i18n/fi.po | 218 +++++++++++++++++ account_payment_return_import/i18n/fr.po | 218 +++++++++++++++++ account_payment_return_import/i18n/gl.po | 218 +++++++++++++++++ account_payment_return_import/i18n/hr.po | 218 +++++++++++++++++ account_payment_return_import/i18n/hr_HR.po | 218 +++++++++++++++++ account_payment_return_import/i18n/it.po | 220 ++++++++++++++++++ account_payment_return_import/i18n/lt.po | 218 +++++++++++++++++ account_payment_return_import/i18n/nl.po | 218 +++++++++++++++++ account_payment_return_import/i18n/nl_BE.po | 218 +++++++++++++++++ account_payment_return_import/i18n/pl.po | 218 +++++++++++++++++ account_payment_return_import/i18n/pt.po | 218 +++++++++++++++++ account_payment_return_import/i18n/pt_BR.po | 218 +++++++++++++++++ account_payment_return_import/i18n/pt_PT.po | 218 +++++++++++++++++ account_payment_return_import/i18n/ro.po | 218 +++++++++++++++++ account_payment_return_import/i18n/ru.po | 218 +++++++++++++++++ account_payment_return_import/i18n/sl.po | 219 +++++++++++++++++ account_payment_return_import/i18n/th.po | 218 +++++++++++++++++ account_payment_return_import/i18n/tr.po | 218 +++++++++++++++++ account_payment_return_import/i18n/vi.po | 218 +++++++++++++++++ account_payment_return_import/i18n/zh_CN.po | 218 +++++++++++++++++ .../models/__init__.py | 2 +- .../models/payment_return.py | 22 ++ account_payment_return_import/parserlib.py | 166 ------------- .../wizard/__init__.py | 3 + .../payment_return_import.py} | 104 ++++----- .../payment_return_import_view.xml} | 7 +- 43 files changed, 7338 insertions(+), 277 deletions(-) create mode 100644 account_payment_return_import/i18n/am.po create mode 100644 account_payment_return_import/i18n/ar.po create mode 100644 account_payment_return_import/i18n/bg.po create mode 100644 account_payment_return_import/i18n/ca.po create mode 100644 account_payment_return_import/i18n/cs.po create mode 100644 account_payment_return_import/i18n/de.po create mode 100644 account_payment_return_import/i18n/el_GR.po create mode 100644 account_payment_return_import/i18n/es_CR.po create mode 100644 account_payment_return_import/i18n/es_EC.po create mode 100644 account_payment_return_import/i18n/es_ES.po create mode 100644 account_payment_return_import/i18n/es_MX.po create mode 100644 account_payment_return_import/i18n/es_VE.po create mode 100644 account_payment_return_import/i18n/et.po create mode 100644 account_payment_return_import/i18n/fi.po create mode 100644 account_payment_return_import/i18n/fr.po create mode 100644 account_payment_return_import/i18n/gl.po create mode 100644 account_payment_return_import/i18n/hr.po create mode 100644 account_payment_return_import/i18n/hr_HR.po create mode 100644 account_payment_return_import/i18n/it.po create mode 100644 account_payment_return_import/i18n/lt.po create mode 100644 account_payment_return_import/i18n/nl.po create mode 100644 account_payment_return_import/i18n/nl_BE.po create mode 100644 account_payment_return_import/i18n/pl.po create mode 100644 account_payment_return_import/i18n/pt.po create mode 100644 account_payment_return_import/i18n/pt_BR.po create mode 100644 account_payment_return_import/i18n/pt_PT.po create mode 100644 account_payment_return_import/i18n/ro.po create mode 100644 account_payment_return_import/i18n/ru.po create mode 100644 account_payment_return_import/i18n/sl.po create mode 100644 account_payment_return_import/i18n/th.po create mode 100644 account_payment_return_import/i18n/tr.po create mode 100644 account_payment_return_import/i18n/vi.po create mode 100644 account_payment_return_import/i18n/zh_CN.po create mode 100644 account_payment_return_import/models/payment_return.py delete mode 100644 account_payment_return_import/parserlib.py create mode 100644 account_payment_return_import/wizard/__init__.py rename account_payment_return_import/{models/account_payment_return_import.py => wizard/payment_return_import.py} (78%) rename account_payment_return_import/{views/account_payment_return_import_view.xml => wizard/payment_return_import_view.xml} (89%) diff --git a/account_payment_return_import/README.rst b/account_payment_return_import/README.rst index dca0bfe0292e..686c3060db3f 100644 --- a/account_payment_return_import/README.rst +++ b/account_payment_return_import/README.rst @@ -8,7 +8,9 @@ Account Payment Return Import This module adds a generic wizard + methods to import payment return file formats. + It's only the base to be extended by another modules. + Multiple payment return files contained in a zip are also supported. Bug Tracker @@ -17,7 +19,17 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. +`here `_. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/96/8.0 Credits ======= @@ -41,4 +53,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_payment_return_import/__init__.py b/account_payment_return_import/__init__.py index cde864bae21a..35e7c9600c55 100644 --- a/account_payment_return_import/__init__.py +++ b/account_payment_return_import/__init__.py @@ -1,3 +1,4 @@ # -*- coding: utf-8 -*- from . import models +from . import wizard diff --git a/account_payment_return_import/__openerp__.py b/account_payment_return_import/__openerp__.py index 3eb7aff83645..1e8812a55845 100644 --- a/account_payment_return_import/__openerp__.py +++ b/account_payment_return_import/__openerp__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Carlos Dauden +# © 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { @@ -14,7 +15,7 @@ 'website': 'https://www.tecnativa.com', 'depends': ['account_payment_return'], 'data': [ - 'views/account_payment_return_import_view.xml', + 'wizard/payment_return_import_view.xml', ], 'installable': True, } diff --git a/account_payment_return_import/i18n/am.po b/account_payment_return_import/i18n/am.po new file mode 100644 index 000000000000..42b14205529e --- /dev/null +++ b/account_payment_return_import/i18n/am.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-payment-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/ar.po b/account_payment_return_import/i18n/ar.po new file mode 100644 index 000000000000..3325458a9024 --- /dev/null +++ b/account_payment_return_import/i18n/ar.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-payment-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/bg.po b/account_payment_return_import/i18n/bg.po new file mode 100644 index 000000000000..e90ff60190d6 --- /dev/null +++ b/account_payment_return_import/i18n/bg.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Откажи" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "или" diff --git a/account_payment_return_import/i18n/ca.po b/account_payment_return_import/i18n/ca.po new file mode 100644 index 000000000000..66b0162977d5 --- /dev/null +++ b/account_payment_return_import/i18n/ca.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-payment-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/cs.po b/account_payment_return_import/i18n/cs.po new file mode 100644 index 000000000000..a33ec71567f4 --- /dev/null +++ b/account_payment_return_import/i18n/cs.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-payment-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/de.po b/account_payment_return_import/i18n/de.po new file mode 100644 index 000000000000..d7be20e61fea --- /dev/null +++ b/account_payment_return_import/i18n/de.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-account-payment-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Erstellt am:" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "Rückbuchungszeilen" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "oder" diff --git a/account_payment_return_import/i18n/el_GR.po b/account_payment_return_import/i18n/el_GR.po new file mode 100644 index 000000000000..2d0ead4f3d30 --- /dev/null +++ b/account_payment_return_import/i18n/el_GR.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/es.po b/account_payment_return_import/i18n/es.po index 546667e73474..1131ce3f5978 100644 --- a/account_payment_return_import/i18n/es.po +++ b/account_payment_return_import/i18n/es.po @@ -1,30 +1,31 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_payment_return -# -# Sergio Teruel Albert, 2015. +# * account_payment_return_import +# +# Translators: +# Sergio Teruel Albert, 2015 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: account-payment (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-10 03:57+0000\n" -"PO-Revision-Date: 2016-04-10 06:05+0100\n" -"Last-Translator: Carlos Incaser \n" -"Language-Team: Spanish \n" -"Language: es\n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:292 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 #, python-format msgid "%d transactions had already been imported and were ignored." msgstr "%d transacciones ya han sido importadas y serán ignoradas." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:295 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 #, python-format msgid "1 transaction had already been imported and was ignored." msgstr "1 transacción ya ha sido importada y será ignorada." @@ -32,16 +33,13 @@ msgstr "1 transacción ya ha sido importada y será ignorada." #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view msgid "1. Download your Payment Return file from your bank website." -msgstr "" -"1. Descarga tu fichero de devoluciones de cobro desde la web de tu banco." +msgstr "1. Descarga tu fichero de devoluciones de cobro desde la web de tu banco." #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view msgid "" "2. Make sure you have installed the right module to support the file format." -msgstr "" -"2. Asegúrate de que tienes instalado el modulo correcto que soporta el " -"formato del archivo." +msgstr "2. Asegúrate de que tienes instalado el modulo correcto que soporta el formato del archivo." #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view @@ -59,25 +57,22 @@ msgid "" "Accounting journal related to the bank payment return you're importing. It " "has be be manually chosen for payment return formats which doesn't allow " "automatic journal detection." -msgstr "" -"Diario contable relacionado con el archivo de devoluciones que estas " -"importando. Se selecciona manualmente para formatos de archivos que no " -"permiten la detección automática del diario." +msgstr "Diario contable relacionado con el archivo de devoluciones que estas importando. Se selecciona manualmente para formatos de archivos que no permiten la detección automática del diario." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:298 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 #, python-format msgid "Already imported items" msgstr "Elementos ya importados" #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:141 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 #, python-format msgid "Can not determine journal for import." msgstr "No puede determinarse el diario para importar." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:135 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 #, python-format msgid "Can not find the account number %s." msgstr "No se puede encontrar el número de cuenta %s." @@ -88,14 +83,12 @@ msgid "Cancel" msgstr "Cancelar" #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:173 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 #, python-format msgid "" "Could not make sense of the given file.\n" "Did you install the module to support this type of file?" -msgstr "" -"No se pudo hacer con sentido de el archivo dado.\n" -"¿Instalaste el modulo para soportar este tipo de archivo?" +msgstr "No se pudo hacer con sentido de el archivo dado.\n¿Instalaste el modulo para soportar este tipo de archivo?" #. module: account_payment_return_import #: field:payment.return.import,create_uid:0 @@ -107,14 +100,22 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado el" +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + #. module: account_payment_return_import #: help:payment.return.import,data_file:0 msgid "" "Get you bank payment returns in electronic format from your bank and select " "them here." +msgstr "Obtén tus devoluciones de cobros en formato electrónico desde tu banco y selecciónalas aquí." + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" msgstr "" -"Obtén tus devoluciones de cobros en formato electrónico desde tu banco y " -"selecciónalas aquí." #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view @@ -136,18 +137,23 @@ msgstr "ID Importacion" #: model:ir.model,name:account_payment_return_import.model_payment_return_import #: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import msgid "Import Payment Return" -msgstr "Devoluciones de cobros" +msgstr "Importar devolución de cobros" #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view msgid "Import Payment Returns" -msgstr "Devoluciones de cobros" +msgstr "Importar devoluciones de cobros" #. module: account_payment_return_import #: field:payment.return.import,journal_id:0 msgid "Journal" msgstr "Diario del banco" +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación el" + #. module: account_payment_return_import #: field:payment.return.import,write_uid:0 msgid "Last Updated by" @@ -169,28 +175,38 @@ msgid "Payment return lines" msgstr "Líneas de la devolución" #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:215 +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 #, python-format msgid "The account of this payment return is linked to another journal." msgstr "La cuenta de esta devolución esta relacionada con otro diario." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:183 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 #, python-format msgid "This file doesn't contain any payment return." msgstr "Este archivo no contiene ninguna devolución." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:189 +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 #, python-format msgid "This file doesn't contain any transaction." msgstr "Este archivo no contiene ninguna transacción." #. module: account_payment_return_import -#: code:addons/account_payment_return_import/models/account_payment_return_import.py:122 +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 #, python-format -msgid "You have already imported that file." -msgstr "Ya has importado ese archivo. " +msgid "You have already imported this file." +msgstr "Ya has importado este archivo. " #. module: account_payment_return_import #: view:payment.return.import:account_payment_return_import.account_payment_return_import_view diff --git a/account_payment_return_import/i18n/es_CR.po b/account_payment_return_import/i18n/es_CR.po new file mode 100644 index 000000000000..dcf6f1acce5d --- /dev/null +++ b/account_payment_return_import/i18n/es_CR.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/es_EC.po b/account_payment_return_import/i18n/es_EC.po new file mode 100644 index 000000000000..f56d77806f60 --- /dev/null +++ b/account_payment_return_import/i18n/es_EC.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/es_ES.po b/account_payment_return_import/i18n/es_ES.po new file mode 100644 index 000000000000..cfd358a86737 --- /dev/null +++ b/account_payment_return_import/i18n/es_ES.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/es_MX.po b/account_payment_return_import/i18n/es_MX.po new file mode 100644 index 000000000000..8435d6a3b3ed --- /dev/null +++ b/account_payment_return_import/i18n/es_MX.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/es_VE.po b/account_payment_return_import/i18n/es_VE.po new file mode 100644 index 000000000000..c1bcbe522fcf --- /dev/null +++ b/account_payment_return_import/i18n/es_VE.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/et.po b/account_payment_return_import/i18n/et.po new file mode 100644 index 000000000000..30fbc1896f75 --- /dev/null +++ b/account_payment_return_import/i18n/et.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Loobu" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/fi.po b/account_payment_return_import/i18n/fi.po new file mode 100644 index 000000000000..a662241f777c --- /dev/null +++ b/account_payment_return_import/i18n/fi.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-payment-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/fr.po b/account_payment_return_import/i18n/fr.po new file mode 100644 index 000000000000..64d671cce417 --- /dev/null +++ b/account_payment_return_import/i18n/fr.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-account-payment-8-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Annuler" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Date" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "ou" diff --git a/account_payment_return_import/i18n/gl.po b/account_payment_return_import/i18n/gl.po new file mode 100644 index 000000000000..7c5904c2d74b --- /dev/null +++ b/account_payment_return_import/i18n/gl.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-payment-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/hr.po b/account_payment_return_import/i18n/hr.po new file mode 100644 index 000000000000..8d73bc418ff5 --- /dev/null +++ b/account_payment_return_import/i18n/hr.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Odustani" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "ili" diff --git a/account_payment_return_import/i18n/hr_HR.po b/account_payment_return_import/i18n/hr_HR.po new file mode 100644 index 000000000000..d98222d6e54d --- /dev/null +++ b/account_payment_return_import/i18n/hr_HR.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/it.po b/account_payment_return_import/i18n/it.po new file mode 100644 index 000000000000..b7a1e17d245c --- /dev/null +++ b/account_payment_return_import/i18n/it.po @@ -0,0 +1,220 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +# Paolo Valier, 2016 +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Annulla" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "Giornale" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo Aggiornamento di" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo Aggiornamento il" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/lt.po b/account_payment_return_import/i18n/lt.po new file mode 100644 index 000000000000..d4a2c0259942 --- /dev/null +++ b/account_payment_return_import/i18n/lt.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/nl.po b/account_payment_return_import/i18n/nl.po new file mode 100644 index 000000000000..874f9c085ba1 --- /dev/null +++ b/account_payment_return_import/i18n/nl.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-payment-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/nl_BE.po b/account_payment_return_import/i18n/nl_BE.po new file mode 100644 index 000000000000..a9f3f86ad482 --- /dev/null +++ b/account_payment_return_import/i18n/nl_BE.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/pl.po b/account_payment_return_import/i18n/pl.po new file mode 100644 index 000000000000..b2ed08dd26c3 --- /dev/null +++ b/account_payment_return_import/i18n/pl.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-payment-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/pt.po b/account_payment_return_import/i18n/pt.po new file mode 100644 index 000000000000..db8a929af259 --- /dev/null +++ b/account_payment_return_import/i18n/pt.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-payment-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/pt_BR.po b/account_payment_return_import/i18n/pt_BR.po new file mode 100644 index 000000000000..7b1b3cf31a3e --- /dev/null +++ b/account_payment_return_import/i18n/pt_BR.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/pt_PT.po b/account_payment_return_import/i18n/pt_PT.po new file mode 100644 index 000000000000..979e9eb765cc --- /dev/null +++ b/account_payment_return_import/i18n/pt_PT.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/ro.po b/account_payment_return_import/i18n/ro.po new file mode 100644 index 000000000000..cce0e3ce0659 --- /dev/null +++ b/account_payment_return_import/i18n/ro.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/ru.po b/account_payment_return_import/i18n/ru.po new file mode 100644 index 000000000000..a969f2ac8e74 --- /dev/null +++ b/account_payment_return_import/i18n/ru.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Отменена" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/sl.po b/account_payment_return_import/i18n/sl.po new file mode 100644 index 000000000000..1871077de121 --- /dev/null +++ b/account_payment_return_import/i18n/sl.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-07 05:05+0000\n" +"PO-Revision-Date: 2016-05-07 07:10+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-payment-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "%d transakcij je bilo že uvoženih in so bile spregledane." + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "1 transakcija je bila že uvožena in je bila spregledana." + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "1. Prenesite datoteko vračila plačila iz spletne strani svoje banke." + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "2. Prepričajte se, da imate nameščen ustrezen modul za podporo formatu datoteke." + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "3. Izberite datoteko in kliknite 'Uvozi'." + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "Transakcije bančnega računa se lahko uvozi le enkrat!" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "Knjigovodski dnevnik vezan na vračilo bančnega plačila, ki ga uvažate. Za formate vračil plačil, ki ne dovoljujejo samodejne zaznave dnevnika, mora biti izbran ročno." + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "Že uvožene postavke" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "Ni mogoče določiti dnevnika za uvoz." + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "Ni mogoče najti številke računa %s." + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Preklic" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "Dana datoteka nima smisla..\nSte namestili modul za podporo temu tipu datotek?" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "Od svoje banke pridobite vračila plačil v elektronskem formatu in jih izberite tukaj." + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "Skrij polje dnevnika na prikazu" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "Kako uvoziti vračilo plačila:" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "ID uvoza" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "Uvoz vračila plačila" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "Uvoz vračil plačil" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "Datoteka vračila plačila" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "Postavke vračil plačil" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "Surovi uvozni podatki" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "Konto tega vračila plačila je povezan z drugim dnevnikom." + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "Ta datoteka ne vsebuje nobenega vračila plačila." + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "Ta datoteka ne vsebuje nobene transakcije." + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "XML RAW podatki shranjeni za namene razhroščevanja/kontrole" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "To datoteko ste že uvozili" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "_Uvozi" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "ali" diff --git a/account_payment_return_import/i18n/th.po b/account_payment_return_import/i18n/th.po new file mode 100644 index 000000000000..ceb504431a71 --- /dev/null +++ b/account_payment_return_import/i18n/th.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-payment-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/tr.po b/account_payment_return_import/i18n/tr.po new file mode 100644 index 000000000000..b9aa666fcd61 --- /dev/null +++ b/account_payment_return_import/i18n/tr.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-payment-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/vi.po b/account_payment_return_import/i18n/vi.po new file mode 100644 index 000000000000..e70617e69e95 --- /dev/null +++ b/account_payment_return_import/i18n/vi.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 18:00+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-payment-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/i18n/zh_CN.po b/account_payment_return_import/i18n/zh_CN.po new file mode 100644 index 000000000000..ee77248df8ea --- /dev/null +++ b/account_payment_return_import/i18n/zh_CN.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_return_import +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-payment (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-22 16:30+0000\n" +"PO-Revision-Date: 2016-04-11 16:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-payment-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:265 +#, python-format +msgid "%d transactions had already been imported and were ignored." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:268 +#, python-format +msgid "1 transaction had already been imported and was ignored." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "1. Download your Payment Return file from your bank website." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "" +"2. Make sure you have installed the right module to support the file format." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "3. Select the file and click 'Import'." +msgstr "" + +#. module: account_payment_return_import +#: sql_constraint:payment.return.line:0 +msgid "A bank account transactions can be imported only once !" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,journal_id:0 +msgid "" +"Accounting journal related to the bank payment return you're importing. It " +"has be be manually chosen for payment return formats which doesn't allow " +"automatic journal detection." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:271 +#, python-format +msgid "Already imported items" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:203 +#, python-format +msgid "Can not determine journal for import." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:199 +#, python-format +msgid "Can not find the account number %s." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Cancel" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:141 +#, python-format +msgid "" +"Could not make sense of the given file.\n" +"Did you install the module to support this type of file?" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: account_payment_return_import +#: field:payment.return.import,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: account_payment_return_import +#: field:payment.return.import,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.import,data_file:0 +msgid "" +"Get you bank payment returns in electronic format from your bank and select " +"them here." +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,hide_journal_field:0 +msgid "Hide the journal field in the view" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "How to import your payment return :" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_payment_return_import +#: field:payment.return.line,unique_import_id:0 +msgid "Import ID" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.actions.act_window,name:account_payment_return_import.action_account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_import +#: model:ir.ui.menu,name:account_payment_return_import.menu_account_payment_return_import +msgid "Import Payment Return" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "Import Payment Returns" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.import,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_payment_return_import +#: field:payment.return.import,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_payment_return_import +#: field:payment.return.import,data_file:0 +msgid "Payment Return File" +msgstr "" + +#. module: account_payment_return_import +#: model:ir.model,name:account_payment_return_import.model_payment_return_line +msgid "Payment return lines" +msgstr "" + +#. module: account_payment_return_import +#: field:payment.return.line,raw_import_data:0 +msgid "Raw import data" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:182 +#, python-format +msgid "The account of this payment return is linked to another journal." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:150 +#, python-format +msgid "This file doesn't contain any payment return." +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:156 +#, python-format +msgid "This file doesn't contain any transaction." +msgstr "" + +#. module: account_payment_return_import +#: help:payment.return.line,raw_import_data:0 +msgid "XML RAW data stored for debugging/check purposes" +msgstr "" + +#. module: account_payment_return_import +#: code:addons/account_payment_return_import/wizard/payment_return_import.py:115 +#, python-format +msgid "You have already imported this file." +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "_Import" +msgstr "" + +#. module: account_payment_return_import +#: view:payment.return.import:account_payment_return_import.account_payment_return_import_view +msgid "or" +msgstr "" diff --git a/account_payment_return_import/models/__init__.py b/account_payment_return_import/models/__init__.py index 3e8aa9c19a88..da1e595a65a4 100644 --- a/account_payment_return_import/models/__init__.py +++ b/account_payment_return_import/models/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -from . import account_payment_return_import +from . import payment_return diff --git a/account_payment_return_import/models/payment_return.py b/account_payment_return_import/models/payment_return.py new file mode 100644 index 000000000000..92a7d20b94c7 --- /dev/null +++ b/account_payment_return_import/models/payment_return.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2016 Carlos Dauden +# © 2016 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp import fields, models + + +class PaymentReturnLine(models.Model): + _inherit = 'payment.return.line' + + # Ensure transactions can be imported only once (if the import format + # provides unique transaction ids) + unique_import_id = fields.Char('Import ID', readonly=True, copy=False) + raw_import_data = fields.Char( + help="XML RAW data stored for debugging/check purposes") + + _sql_constraints = [ + ('unique_import_id', + 'unique (unique_import_id)', + 'A bank account transactions can be imported only once !') + ] diff --git a/account_payment_return_import/parserlib.py b/account_payment_return_import/parserlib.py deleted file mode 100644 index 5d31f8acb7e8..000000000000 --- a/account_payment_return_import/parserlib.py +++ /dev/null @@ -1,166 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Carlos Dauden -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - - -class ReturnTransaction(dict): - """Single transaction that is part of a bank payment_return.""" - - @property - def value_date(self): - """property getter""" - return self['date'] - - @value_date.setter - def value_date(self, value_date): - """property setter""" - self['date'] = value_date - - @property - def returned_amount(self): - """property getter""" - return self['amount'] - - @returned_amount.setter - def returned_amount(self, returned_amount): - """property setter""" - self['amount'] = returned_amount - - @property - def reference(self): - """property getter""" - return self['reference'] - - @reference.setter - def reference(self, reference): - """property setter""" - self['reference'] = reference - - @property - def concept(self): - """property getter""" - return self['concept'] - - @concept.setter - def concept(self, concept): - """property setter""" - self['concept'] = concept - - @property - def remote_owner(self): - """property getter""" - return self['partner_name'] - - @remote_owner.setter - def remote_owner(self, remote_owner): - """property setter""" - self['partner_name'] = remote_owner - - @property - def remote_account(self): - """property getter""" - return self['account_number'] - - @remote_account.setter - def remote_account(self, remote_account): - """property setter""" - self['account_number'] = remote_account - - @property - def reason_code(self): - return self['reason_code'] - - @reason_code.setter - def reason_code(self, reason_code): - self['reason_code'] = reason_code - - @property - def reason(self): - return self['reason'] - - @reason.setter - def reason(self, reason): - self['reason'] = reason - - def __init__(self): - """Define and initialize attributes. - - Not all attributes are already used in the actual import. - """ - super(ReturnTransaction, self).__init__() - self.concept = False - self.reason_code = False - self.reason = '' - self.remote_account = False # The account of the other party - self.name = '' - self.reference = False # end to end reference for transactions - self.move_line_ids = False # related move with original ref - self.remote_owner = False # name of the other party - self.remote_bank_bic = False # bic of other party's bank - self.value_date = False # Date at which the creditor requests that the - # amount of money is to be collected from the debtor. - self.error_message = False # error message for interaction with user - self.data = '' # Raw data from which the transaction has been parsed - - -class PaymentReturn(dict): - """A bank payment_return groups data about several bank transactions.""" - - @property - def payment_return_name(self): - """property getter""" - return self['name'] - - def _set_transaction_ids(self): - """Set transaction ids to payment_return_name with sequence-number.""" - subno = 0 - for transaction in self['transactions']: - subno += 1 - transaction['unique_import_id'] = ( - self.payment_return_name + str(subno).zfill(4)) - - @payment_return_name.setter - def payment_return_name(self, payment_return_name): - """property setter""" - self['name'] = payment_return_name - self._set_transaction_ids() - - @property - def date(self): - """property getter""" - return self['date'] - - @date.setter - def date(self, date): - """property setter""" - self['date'] = date - - @property - def local_account(self): - """property getter""" - return self['account_number'] - - @local_account.setter - def local_account(self, local_account): - """property setter""" - self['account_number'] = local_account - - def create_transaction(self): - """Create and append transaction. - This should only be called after payment_return_name has been set, - because payment_return_name will become part of the unique - transaction_id. - """ - transaction = ReturnTransaction() - self['transactions'].append(transaction) - # Fill default id, but might be overruled - transaction['unique_import_id'] = ( - self.payment_return_name + str(len(self['transactions'])).zfill(4)) - return transaction - - def __init__(self): - super(PaymentReturn, self).__init__() - self['transactions'] = [] - self.payment_return_name = '' - self.date = False - self.local_account = False diff --git a/account_payment_return_import/wizard/__init__.py b/account_payment_return_import/wizard/__init__.py new file mode 100644 index 000000000000..18f42c52507e --- /dev/null +++ b/account_payment_return_import/wizard/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import payment_return_import diff --git a/account_payment_return_import/models/account_payment_return_import.py b/account_payment_return_import/wizard/payment_return_import.py similarity index 78% rename from account_payment_return_import/models/account_payment_return_import.py rename to account_payment_return_import/wizard/payment_return_import.py index 986eb3f34e4e..d9189df9674b 100644 --- a/account_payment_return_import/models/account_payment_return_import.py +++ b/account_payment_return_import/wizard/payment_return_import.py @@ -1,9 +1,8 @@ # -*- coding: utf-8 -*- # © 2016 Carlos Dauden +# © 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -"""Framework for importing payment return files.""" -import logging import base64 from StringIO import StringIO from zipfile import ZipFile, BadZipfile # BadZipFile in Python >= 3.2 @@ -14,23 +13,6 @@ from openerp.addons.base_iban.base_iban import _pretty_iban -_logger = logging.getLogger(__name__) - - -class PaymentReturnLine(models.Model): - """Extend model payment.return.line.""" - _inherit = 'payment.return.line' - - # Ensure transactions can be imported only once (if the import format - # provides unique transaction ids) - unique_import_id = fields.Char('Import ID', readonly=True, copy=False) - - _sql_constraints = [ - ('unique_import_id', - 'unique (unique_import_id)', - 'A bank account transactions can be imported only once !') - ] - class PaymentReturnImport(models.TransientModel): _name = 'payment.return.import' @@ -64,27 +46,28 @@ def import_file(self): payment_returns, notifications = self.with_context( active_id=self.id )._import_file(data_file) - result = self.env.ref( 'account_payment_return.payment_return_action').read()[0] if len(payment_returns) != 1: result['domain'] = "[('id', 'in', %s)]" % payment_returns.ids else: - form_view_id = self.ref( - 'account_payment_return.payment_return_form_view', False) + form_view = self.env.ref( + 'account_payment_return.payment_return_form_view') result.update({ - 'views': [(form_view_id, 'form')], + 'views': [(form_view.id, 'form')], 'res_id': payment_returns.id, 'context': { - 'notifications': notifications + 'notifications': notifications, }, }) return result @api.model def _parse_all_files(self, data_file): - """Parse one file or multiple files from zip-file. - Return array of payment returns for further processing. + """Parse one or multiple files from zip-file. + + :param data_file: Decoded raw content of the file + :return: List of payment returns dictionaries for further processing. """ payment_return_raw_list = [] files = [data_file] @@ -99,54 +82,39 @@ def _parse_all_files(self, data_file): # Parse the file(s) for import_file in files: # The appropriate implementation module(s) returns the payment - # returns. Actually we don't care wether all the files have the + # returns. We support a list of dictionaries or a simple + # dictionary. + + # Actually we don't care wether all the files have the # same format. - payment_return_raw_list.append(self._parse_file(import_file)) + vals = self._parse_file(import_file) + if isinstance(vals, list): + payment_return_raw_list += vals + else: + payment_return_raw_list.append(vals) return payment_return_raw_list @api.model def _import_file(self, data_file): """ Create bank payment return(s) from file.""" # The appropriate implementation module returns the required data - payment_returns = self.env['payment.return.import'] + payment_returns = self.env['payment.return'] notifications = [] payment_return_raw_list = self._parse_all_files(data_file) # Check raw data: self._check_parsed_data(payment_return_raw_list) # Import all payment returns: for payret_vals in payment_return_raw_list: - (payment_return, new_notifications) = ( - self._import_payment_return(payret_vals)) + payret_vals = self._complete_payment_return(payret_vals) + payment_return, new_notifications = self._create_payment_return( + payret_vals) if payment_return: - payment_returns.append(payment_return) + payment_returns += payment_return notifications.extend(new_notifications) if not payment_returns: - raise UserError(_('You have already imported that file.')) + raise UserError(_('You have already imported this file.')) return payment_returns, notifications - @api.model - def _import_payment_return(self, payret_vals): - """Import a single bank payment return. - - Return ids of created payment returns and notifications. - """ - account_number = payret_vals.pop('account_number') - bank_account_id = self._find_bank_account_id(account_number) - if not bank_account_id and account_number: - raise UserError( - _('Can not find the account number %s.') % account_number - ) - # Find the bank journal - journal_id = self._get_journal(bank_account_id) - # By now journal and account_number must be known - if not journal_id: - raise UserError(_('Can not determine journal for import.')) - # Prepare payment return data to be used for payment returns creation - payret_vals = self._complete_payment_return( - payret_vals, journal_id, account_number) - # Create the bank payret_vals - return self._create_payment_return(payret_vals) - @api.model def _parse_file(self, data_file): """ Each module adding a file support must extends this method. It @@ -182,7 +150,7 @@ def _check_parsed_data(self, payment_returns): raise UserError(_( 'This file doesn\'t contain any payment return.')) for payret_vals in payment_returns: - if not payret_vals.get('transactions'): + if payret_vals.get('transactions'): return # If we get here, no transaction was found: raise UserError(_('This file doesn\'t contain any transaction.')) @@ -221,15 +189,23 @@ def _get_journal(self, bank_account_id): return journal_id @api.model - def _complete_payment_return( - self, payret_vals, journal_id, account_number): + def _complete_payment_return(self, payret_vals): """Complete payment return from information passed.""" - payret_vals['journal_id'] = journal_id + account_number = payret_vals.pop('account_number') + if not payret_vals.get('journal_id'): + bank_account_id = self._find_bank_account_id(account_number) + if not bank_account_id and account_number: + raise UserError( + _('Can not find the account number %s.') % account_number) + payret_vals['journal_id'] = self._get_journal(bank_account_id) + # By now journal and account_number must be known + if not payret_vals['journal_id']: + raise UserError(_('Can not determine journal for import.')) for line_vals in payret_vals['transactions']: unique_import_id = line_vals.get('unique_import_id', False) if unique_import_id: line_vals['unique_import_id'] = ( - (account_number and account_number + '-' or '') + + (account_number and (account_number + '-') or '') + unique_import_id ) if not line_vals.get('reason'): @@ -241,10 +217,8 @@ def _complete_payment_return( # if the parser found a date but didn't set a period for this date, # do this now try: - payret_vals['period_id'] =\ - self.env['account.period']\ - .with_context(account_period_prefer_normal=True)\ - .find(dt=payret_vals['date']).id + payret_vals['period_id'] = ( + self.env['account.period'].find(dt=payret_vals['date']).id) except RedirectWarning: # if there's no period for the date, ignore resulting exception pass diff --git a/account_payment_return_import/views/account_payment_return_import_view.xml b/account_payment_return_import/wizard/payment_return_import_view.xml similarity index 89% rename from account_payment_return_import/views/account_payment_return_import_view.xml rename to account_payment_return_import/wizard/payment_return_import_view.xml index 79bad75ac56e..d47f144da4dd 100644 --- a/account_payment_return_import/views/account_payment_return_import_view.xml +++ b/account_payment_return_import/wizard/payment_return_import_view.xml @@ -12,9 +12,10 @@