From 4c7afd42faf458d20bd60d686698b2292d4f7fd9 Mon Sep 17 00:00:00 2001 From: Iryna Vyshnevska Date: Mon, 11 Jan 2021 15:35:19 +0200 Subject: [PATCH] [MIG][14.0] account_statement_import_camt_oca --- ...account_bank_statement_import_camt_oca.pot | 76 --------------- .../i18n/de.po | 84 ----------------- .../i18n/es.po | 84 ----------------- .../i18n/fa.po | 85 ----------------- .../i18n/fi.po | 83 ----------------- .../i18n/fr.po | 83 ----------------- .../i18n/fr_CH.po | 84 ----------------- .../i18n/gl.po | 83 ----------------- .../i18n/hr.po | 85 ----------------- .../i18n/lt_LT.po | 84 ----------------- .../i18n/nb_NO.po | 84 ----------------- .../i18n/nl.po | 88 ------------------ .../i18n/pt_BR.po | 83 ----------------- .../i18n/pt_PT.po | 83 ----------------- .../i18n/sl.po | 84 ----------------- .../README.rst | 0 .../__init__.py | 0 .../__manifest__.py | 4 +- account_statement_import_camt/i18n/de.po | 84 +++++++++++++++++ account_statement_import_camt/i18n/es.po | 84 +++++++++++++++++ account_statement_import_camt/i18n/fa.po | 85 +++++++++++++++++ account_statement_import_camt/i18n/fi.po | 83 +++++++++++++++++ account_statement_import_camt/i18n/fr.po | 83 +++++++++++++++++ account_statement_import_camt/i18n/fr_CH.po | 84 +++++++++++++++++ account_statement_import_camt/i18n/gl.po | 83 +++++++++++++++++ account_statement_import_camt/i18n/hr.po | 85 +++++++++++++++++ account_statement_import_camt/i18n/lt_LT.po | 84 +++++++++++++++++ account_statement_import_camt/i18n/nb_NO.po | 84 +++++++++++++++++ account_statement_import_camt/i18n/nl.po | 88 ++++++++++++++++++ account_statement_import_camt/i18n/pt_BR.po | 83 +++++++++++++++++ account_statement_import_camt/i18n/pt_PT.po | 83 +++++++++++++++++ account_statement_import_camt/i18n/sl.po | 84 +++++++++++++++++ .../models/__init__.py | 4 +- .../models/account_bank_statement_line.py | 2 +- .../models/account_journal.py | 0 .../models/account_statement_import.py | 6 +- .../models/bank_statement.py | 0 .../models/parser.py | 12 ++- .../readme/CONTRIBUTORS.rst | 0 .../readme/DESCRIPTION.rst | 0 .../static/description/icon.png | Bin .../static/description/index.html | 0 .../test_files/golden-camt053-no-ntry.pydata | 0 .../test_files/golden-camt053-txdtls.pydata | 2 +- .../test_files/golden-camt053.pydata | 10 +- .../test_files/test-camt053 | 0 .../test_files/test-camt053-no-ntry | 0 .../test_files/test-camt053-txdtls | 0 .../test_files/test-camt053.zip | Bin .../tests/__init__.py | 0 .../tests/test_import_bank_statement.py | 48 +++++++--- .../views/account_bank_statement_import.xml | 6 +- .../odoo/addons/account_statement_import_camt | 1 + setup/account_statement_import_camt/setup.py | 6 ++ 54 files changed, 1242 insertions(+), 1289 deletions(-) delete mode 100644 account_bank_statement_import_camt_oca/i18n/account_bank_statement_import_camt_oca.pot delete mode 100644 account_bank_statement_import_camt_oca/i18n/de.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/es.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/fa.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/fi.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/fr.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/fr_CH.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/gl.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/hr.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/lt_LT.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/nb_NO.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/nl.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/pt_BR.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/pt_PT.po delete mode 100644 account_bank_statement_import_camt_oca/i18n/sl.po rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/README.rst (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/__init__.py (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/__manifest__.py (83%) create mode 100644 account_statement_import_camt/i18n/de.po create mode 100644 account_statement_import_camt/i18n/es.po create mode 100644 account_statement_import_camt/i18n/fa.po create mode 100644 account_statement_import_camt/i18n/fi.po create mode 100644 account_statement_import_camt/i18n/fr.po create mode 100644 account_statement_import_camt/i18n/fr_CH.po create mode 100644 account_statement_import_camt/i18n/gl.po create mode 100644 account_statement_import_camt/i18n/hr.po create mode 100644 account_statement_import_camt/i18n/lt_LT.po create mode 100644 account_statement_import_camt/i18n/nb_NO.po create mode 100644 account_statement_import_camt/i18n/nl.po create mode 100644 account_statement_import_camt/i18n/pt_BR.po create mode 100644 account_statement_import_camt/i18n/pt_PT.po create mode 100644 account_statement_import_camt/i18n/sl.po rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/models/__init__.py (73%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/models/account_bank_statement_line.py (93%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/models/account_journal.py (100%) rename account_bank_statement_import_camt_oca/models/account_bank_statement_import.py => account_statement_import_camt/models/account_statement_import.py (86%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/models/bank_statement.py (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/models/parser.py (96%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/readme/CONTRIBUTORS.rst (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/readme/DESCRIPTION.rst (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/static/description/icon.png (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/static/description/index.html (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/golden-camt053-no-ntry.pydata (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/golden-camt053-txdtls.pydata (99%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/golden-camt053.pydata (77%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/test-camt053 (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/test-camt053-no-ntry (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/test-camt053-txdtls (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/test_files/test-camt053.zip (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/tests/__init__.py (100%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/tests/test_import_bank_statement.py (76%) rename {account_bank_statement_import_camt_oca => account_statement_import_camt}/views/account_bank_statement_import.xml (59%) create mode 120000 setup/account_statement_import_camt/odoo/addons/account_statement_import_camt create mode 100644 setup/account_statement_import_camt/setup.py diff --git a/account_bank_statement_import_camt_oca/i18n/account_bank_statement_import_camt_oca.pot b/account_bank_statement_import_camt_oca/i18n/account_bank_statement_import_camt_oca.pot deleted file mode 100644 index ee3037e4..00000000 --- a/account_bank_statement_import_camt_oca/i18n/account_bank_statement_import_camt_oca.pot +++ /dev/null @@ -1,76 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 13.0\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -msgid "Bank Statement" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -msgid "Bank Statement Line" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/de.po b/account_bank_statement_import_camt_oca/i18n/de.po deleted file mode 100644 index abf80b3d..00000000 --- a/account_bank_statement_import_camt_oca/i18n/de.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2015-10-04 11:43+0200\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-bank-statement-" -"import-8-0/language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.3\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Kontoauszug importieren" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Kontoauszug importieren" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Kontoauszug importieren" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/es.po b/account_bank_statement_import_camt_oca/i18n/es.po deleted file mode 100644 index 69ad7b80..00000000 --- a/account_bank_statement_import_camt_oca/i18n/es.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2018-06-08 08:27+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -#, fuzzy -msgid "Account Bank Statement Import CAMT parser" -msgstr "account.bank.statement.import.camt.parser" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "CAMT" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "Nombre a mostrar" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "ID" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "CAMT en .zip" diff --git a/account_bank_statement_import_camt_oca/i18n/fa.po b/account_bank_statement_import_camt_oca/i18n/fa.po deleted file mode 100644 index 06e55f14..00000000 --- a/account_bank_statement_import_camt_oca/i18n/fa.po +++ /dev/null @@ -1,85 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# Mehdi Zarrinkolah , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2018-07-22 10:30+0000\n" -"Last-Translator: derKonig \n" -"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.0.1\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -#, fuzzy -msgid "Account Bank Statement Import CAMT parser" -msgstr "گزارش .حساب بانکی .وارد کننده .تقسیم کننده .تجزیه کننده" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "ورود بیانیه بانکی" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "ورود بیانیه بانکی" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "CAMT" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "نام صفحه نمایش" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "شناسه" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "ورود بیانیه بانکی" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "آخرین تغییر در" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "CAMT زیپ شده" diff --git a/account_bank_statement_import_camt_oca/i18n/fi.po b/account_bank_statement_import_camt_oca/i18n/fi.po deleted file mode 100644 index 87db7a99..00000000 --- a/account_bank_statement_import_camt_oca/i18n/fi.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# Jarmo Kortetjärvi , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2016-12-10 05:00+0000\n" -"Last-Translator: Jarmo Kortetjärvi , 2017\n" -"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Tuo pankkiaineisto" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Tuo pankkiaineisto" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Tuo pankkiaineisto" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/fr.po b/account_bank_statement_import_camt_oca/i18n/fr.po deleted file mode 100644 index 1a139ea1..00000000 --- a/account_bank_statement_import_camt_oca/i18n/fr.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2018-06-08 08:27+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importer Relevé Bancaire" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importer Relevé Bancaire" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "CAMT" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "Nom affiché" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "ID" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importer Relevé Bancaire" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "CAMT zippé" diff --git a/account_bank_statement_import_camt_oca/i18n/fr_CH.po b/account_bank_statement_import_camt_oca/i18n/fr_CH.po deleted file mode 100644 index e162dd03..00000000 --- a/account_bank_statement_import_camt_oca/i18n/fr_CH.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# OCA Transbot , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2016-12-09 17:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" -"teams/23907/fr_CH/)\n" -"Language: fr_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importer Relevé" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importer Relevé" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importer Relevé" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/gl.po b/account_bank_statement_import_camt_oca/i18n/gl.po deleted file mode 100644 index de73bf2c..00000000 --- a/account_bank_statement_import_camt_oca/i18n/gl.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# Alejandro Santana , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2016-12-09 17:00+0000\n" -"Last-Translator: Alejandro Santana , 2016\n" -"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importar extracto bancario" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/hr.po b/account_bank_statement_import_camt_oca/i18n/hr.po deleted file mode 100644 index cc390350..00000000 --- a/account_bank_statement_import_camt_oca/i18n/hr.po +++ /dev/null @@ -1,85 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2018-06-08 08:27+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \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_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -#, fuzzy -msgid "Account Bank Statement Import CAMT parser" -msgstr "account.bank.statement.import.camt.parser" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Uvoz bankovnog izvoda" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Uvoz bankovnog izvoda" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "CAMT" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "Naziv" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "ID" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Uvoz bankovnog izvoda" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "kompresirani CAMT" diff --git a/account_bank_statement_import_camt_oca/i18n/lt_LT.po b/account_bank_statement_import_camt_oca/i18n/lt_LT.po deleted file mode 100644 index 082684e4..00000000 --- a/account_bank_statement_import_camt_oca/i18n/lt_LT.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2015-07-24 07:41+0000\n" -"Last-Translator: <>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-bank-" -"statement-import-8-0/language/lt_LT/)\n" -"Language: lt_LT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \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_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importuoti banko išrašą" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importuoti banko išrašą" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importuoti banko išrašą" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/nb_NO.po b/account_bank_statement_import_camt_oca/i18n/nb_NO.po deleted file mode 100644 index 4dcd4fc0..00000000 --- a/account_bank_statement_import_camt_oca/i18n/nb_NO.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# Imre Kristoffer Eilertsen , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2016-12-09 17:00+0000\n" -"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" -"teams/23907/nb_NO/)\n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importer bankutsagn" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importer bankutsagn" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importer bankutsagn" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/nl.po b/account_bank_statement_import_camt_oca/i18n/nl.po deleted file mode 100644 index a497cfa3..00000000 --- a/account_bank_statement_import_camt_oca/i18n/nl.po +++ /dev/null @@ -1,88 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -# Erwin van der Ploeg , 2015 -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2018-12-03 10:43+0000\n" -"Last-Translator: Yung-Wa \n" -"Language-Team: Dutch (http://www.transifex.com/oca/OCA-bank-statement-" -"import-8-0/language/nl/)\n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.3\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -#, fuzzy -msgid "Account Bank Statement Import CAMT parser" -msgstr "account.bank.statement.import.camt.parser" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importeer bankafschrift" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importeer bankafschrift" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -#, fuzzy -msgid "CAMT" -msgstr "CAMT" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "Weergave naam" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -#, fuzzy -msgid "ID" -msgstr "ID" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importeer bankafschrift" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "Laatst gewijzigd op" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "zip formaat CAMT" diff --git a/account_bank_statement_import_camt_oca/i18n/pt_BR.po b/account_bank_statement_import_camt_oca/i18n/pt_BR.po deleted file mode 100644 index acb3aaa4..00000000 --- a/account_bank_statement_import_camt_oca/i18n/pt_BR.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2015-10-09 00:26+0000\n" -"Last-Translator: danimaribeiro \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-bank-" -"statement-import-8-0/language/pt_BR/)\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/pt_PT.po b/account_bank_statement_import_camt_oca/i18n/pt_PT.po deleted file mode 100644 index 8637d57a..00000000 --- a/account_bank_statement_import_camt_oca/i18n/pt_PT.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2015-07-24 07:41+0000\n" -"Last-Translator: <>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-bank-" -"statement-import-8-0/language/pt_PT/)\n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Importar Extrato Bancário" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/i18n/sl.po b/account_bank_statement_import_camt_oca/i18n/sl.po deleted file mode 100644 index 9b42f1ae..00000000 --- a/account_bank_statement_import_camt_oca/i18n/sl.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_bank_statement_import_camt_oca -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: bank-statement-import (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-16 08:08+0000\n" -"PO-Revision-Date: 2015-07-25 12:19+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-statement-" -"import-8-0/language/sl/)\n" -"Language: sl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \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_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import_camt_parser -msgid "Account Bank Statement Import CAMT parser" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement -#, fuzzy -msgid "Bank Statement" -msgstr "Uvoz bančnega izpiska" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_line -#, fuzzy -msgid "Bank Statement Line" -msgstr "Uvoz bančnega izpiska" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "CAMT" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__display_name -msgid "Display Name" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser__id -msgid "ID" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_bank_statement_import -msgid "Import Bank Statement" -msgstr "Uvoz bančnega izpiska" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model,name:account_bank_statement_import_camt_oca.model_account_journal -msgid "Journal" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model:ir.model.fields,field_description:account_bank_statement_import_camt_oca.field_account_bank_statement_import_camt_parser____last_update -msgid "Last Modified on" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.053.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: code:addons/account_bank_statement_import_camt_oca/models/account_journal.py:0 -#, python-format -msgid "camt.054.001.02" -msgstr "" - -#. module: account_bank_statement_import_camt_oca -#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_camt_oca.account_bank_statement_import_view -msgid "zipped CAMT" -msgstr "" diff --git a/account_bank_statement_import_camt_oca/README.rst b/account_statement_import_camt/README.rst similarity index 100% rename from account_bank_statement_import_camt_oca/README.rst rename to account_statement_import_camt/README.rst diff --git a/account_bank_statement_import_camt_oca/__init__.py b/account_statement_import_camt/__init__.py similarity index 100% rename from account_bank_statement_import_camt_oca/__init__.py rename to account_statement_import_camt/__init__.py diff --git a/account_bank_statement_import_camt_oca/__manifest__.py b/account_statement_import_camt/__manifest__.py similarity index 83% rename from account_bank_statement_import_camt_oca/__manifest__.py rename to account_statement_import_camt/__manifest__.py index a6e72748..9048d6e5 100644 --- a/account_bank_statement_import_camt_oca/__manifest__.py +++ b/account_statement_import_camt/__manifest__.py @@ -2,11 +2,11 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "CAMT Format Bank Statements Import", - "version": "13.0.1.0.1", + "version": "14.0.1.0.0", "license": "AGPL-3", "author": "Therp BV, Odoo Community Association (OCA)", "website": "https://github.com/OCA/bank-statement-import", "category": "Banking addons", - "depends": ["account_bank_statement_import"], + "depends": ["account_statement_import"], "data": ["views/account_bank_statement_import.xml"], } diff --git a/account_statement_import_camt/i18n/de.po b/account_statement_import_camt/i18n/de.po new file mode 100644 index 00000000..7aea5f96 --- /dev/null +++ b/account_statement_import_camt/i18n/de.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2015-10-04 11:43+0200\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-bank-statement-" +"import-8-0/language/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 1.8.3\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Kontoauszug importieren" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Kontoauszug importieren" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Kontoauszug importieren" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/es.po b/account_statement_import_camt/i18n/es.po new file mode 100644 index 00000000..d12ce6e3 --- /dev/null +++ b/account_statement_import_camt/i18n/es.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2018-06-08 08:27+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +#, fuzzy +msgid "Account Bank Statement Import CAMT parser" +msgstr "account.bank.statement.import.camt.parser" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "CAMT" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "ID" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "CAMT en .zip" diff --git a/account_statement_import_camt/i18n/fa.po b/account_statement_import_camt/i18n/fa.po new file mode 100644 index 00000000..261e7a4e --- /dev/null +++ b/account_statement_import_camt/i18n/fa.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# Mehdi Zarrinkolah , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2018-07-22 10:30+0000\n" +"Last-Translator: derKonig \n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +#, fuzzy +msgid "Account Bank Statement Import CAMT parser" +msgstr "گزارش .حساب بانکی .وارد کننده .تقسیم کننده .تجزیه کننده" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "ورود بیانیه بانکی" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "ورود بیانیه بانکی" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "CAMT" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "نام صفحه نمایش" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "شناسه" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "ورود بیانیه بانکی" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "CAMT زیپ شده" diff --git a/account_statement_import_camt/i18n/fi.po b/account_statement_import_camt/i18n/fi.po new file mode 100644 index 00000000..d873bb81 --- /dev/null +++ b/account_statement_import_camt/i18n/fi.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# Jarmo Kortetjärvi , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2016-12-10 05:00+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Tuo pankkiaineisto" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Tuo pankkiaineisto" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Tuo pankkiaineisto" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/fr.po b/account_statement_import_camt/i18n/fr.po new file mode 100644 index 00000000..9477f27b --- /dev/null +++ b/account_statement_import_camt/i18n/fr.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2018-06-08 08:27+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importer Relevé Bancaire" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importer Relevé Bancaire" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "CAMT" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "ID" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importer Relevé Bancaire" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "CAMT zippé" diff --git a/account_statement_import_camt/i18n/fr_CH.po b/account_statement_import_camt/i18n/fr_CH.po new file mode 100644 index 00000000..52c19c9c --- /dev/null +++ b/account_statement_import_camt/i18n/fr_CH.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2016-12-09 17:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importer Relevé" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importer Relevé" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importer Relevé" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/gl.po b/account_statement_import_camt/i18n/gl.po new file mode 100644 index 00000000..67739253 --- /dev/null +++ b/account_statement_import_camt/i18n/gl.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# Alejandro Santana , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2016-12-09 17:00+0000\n" +"Last-Translator: Alejandro Santana , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importar extracto bancario" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/hr.po b/account_statement_import_camt/i18n/hr.po new file mode 100644 index 00000000..75686b44 --- /dev/null +++ b/account_statement_import_camt/i18n/hr.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2018-06-08 08:27+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +#, fuzzy +msgid "Account Bank Statement Import CAMT parser" +msgstr "account.bank.statement.import.camt.parser" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Uvoz bankovnog izvoda" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Uvoz bankovnog izvoda" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "CAMT" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "ID" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Uvoz bankovnog izvoda" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "kompresirani CAMT" diff --git a/account_statement_import_camt/i18n/lt_LT.po b/account_statement_import_camt/i18n/lt_LT.po new file mode 100644 index 00000000..51bf2454 --- /dev/null +++ b/account_statement_import_camt/i18n/lt_LT.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2015-07-24 07:41+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-bank-" +"statement-import-8-0/language/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importuoti banko išrašą" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importuoti banko išrašą" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importuoti banko išrašą" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/nb_NO.po b/account_statement_import_camt/i18n/nb_NO.po new file mode 100644 index 00000000..15357443 --- /dev/null +++ b/account_statement_import_camt/i18n/nb_NO.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2016-12-09 17:00+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importer bankutsagn" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importer bankutsagn" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importer bankutsagn" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/nl.po b/account_statement_import_camt/i18n/nl.po new file mode 100644 index 00000000..460cf903 --- /dev/null +++ b/account_statement_import_camt/i18n/nl.po @@ -0,0 +1,88 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +# Erwin van der Ploeg , 2015 +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2018-12-03 10:43+0000\n" +"Last-Translator: Yung-Wa \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-bank-statement-" +"import-8-0/language/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.3\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +#, fuzzy +msgid "Account Bank Statement Import CAMT parser" +msgstr "account.bank.statement.import.camt.parser" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importeer bankafschrift" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importeer bankafschrift" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +#, fuzzy +msgid "CAMT" +msgstr "CAMT" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "Weergave naam" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +#, fuzzy +msgid "ID" +msgstr "ID" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importeer bankafschrift" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "zip formaat CAMT" diff --git a/account_statement_import_camt/i18n/pt_BR.po b/account_statement_import_camt/i18n/pt_BR.po new file mode 100644 index 00000000..cff2bac5 --- /dev/null +++ b/account_statement_import_camt/i18n/pt_BR.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2015-10-09 00:26+0000\n" +"Last-Translator: danimaribeiro \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-bank-" +"statement-import-8-0/language/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/pt_PT.po b/account_statement_import_camt/i18n/pt_PT.po new file mode 100644 index 00000000..d3ca5b03 --- /dev/null +++ b/account_statement_import_camt/i18n/pt_PT.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2015-07-24 07:41+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-bank-" +"statement-import-8-0/language/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importar Extrato Bancário" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_statement_import_camt/i18n/sl.po b/account_statement_import_camt/i18n/sl.po new file mode 100644 index 00000000..af0791d5 --- /dev/null +++ b/account_statement_import_camt/i18n/sl.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_statement_import_camt +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-import (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-16 08:08+0000\n" +"PO-Revision-Date: 2015-07-25 12:19+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-statement-" +"import-8-0/language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import_camt_parser +msgid "Account Bank Statement Import CAMT parser" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement +#, fuzzy +msgid "Bank Statement" +msgstr "Uvoz bančnega izpiska" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_line +#, fuzzy +msgid "Bank Statement Line" +msgstr "Uvoz bančnega izpiska" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "CAMT" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser__id +msgid "ID" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Uvoz bančnega izpiska" + +#. module: account_statement_import_camt +#: model:ir.model,name:account_statement_import_camt.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_statement_import_camt +#: model:ir.model.fields,field_description:account_statement_import_camt.field_account_bank_statement_import_camt_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.053.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: code:addons/account_statement_import_camt/models/account_journal.py:0 +#, python-format +msgid "camt.054.001.02" +msgstr "" + +#. module: account_statement_import_camt +#: model_terms:ir.ui.view,arch_db:account_statement_import_camt.account_bank_statement_import_view +msgid "zipped CAMT" +msgstr "" diff --git a/account_bank_statement_import_camt_oca/models/__init__.py b/account_statement_import_camt/models/__init__.py similarity index 73% rename from account_bank_statement_import_camt_oca/models/__init__.py rename to account_statement_import_camt/models/__init__.py index db3c4e5c..1fe7a2a7 100644 --- a/account_bank_statement_import_camt_oca/models/__init__.py +++ b/account_statement_import_camt/models/__init__.py @@ -1,5 +1,5 @@ from . import parser -from . import account_bank_statement_import +from . import account_bank_statement_line +from . import account_statement_import from . import account_journal from . import bank_statement -from . import account_bank_statement_line diff --git a/account_bank_statement_import_camt_oca/models/account_bank_statement_line.py b/account_statement_import_camt/models/account_bank_statement_line.py similarity index 93% rename from account_bank_statement_import_camt_oca/models/account_bank_statement_line.py rename to account_statement_import_camt/models/account_bank_statement_line.py index 63022be1..9846f90a 100644 --- a/account_bank_statement_import_camt_oca/models/account_bank_statement_line.py +++ b/account_statement_import_camt/models/account_bank_statement_line.py @@ -24,4 +24,4 @@ class AccountBankStatementLine(models.Model): and self.name == "/" ): return True - return super(AccountBankStatementLine, self).write(vals) + return super().write(vals) diff --git a/account_bank_statement_import_camt_oca/models/account_journal.py b/account_statement_import_camt/models/account_journal.py similarity index 100% rename from account_bank_statement_import_camt_oca/models/account_journal.py rename to account_statement_import_camt/models/account_journal.py diff --git a/account_bank_statement_import_camt_oca/models/account_bank_statement_import.py b/account_statement_import_camt/models/account_statement_import.py similarity index 86% rename from account_bank_statement_import_camt_oca/models/account_bank_statement_import.py rename to account_statement_import_camt/models/account_statement_import.py index ec02ff2c..a213da96 100644 --- a/account_bank_statement_import_camt_oca/models/account_bank_statement_import.py +++ b/account_statement_import_camt/models/account_statement_import.py @@ -10,12 +10,12 @@ _logger = logging.getLogger(__name__) class AccountBankStatementImport(models.TransientModel): - _inherit = "account.bank.statement.import" + _inherit = "account.statement.import" def _parse_file(self, data_file): """Parse a CAMT053 XML file.""" try: - parser = self.env["account.bank.statement.import.camt.parser"] + parser = self.env["account.statement.import.camt.parser"] _logger.debug("Try parsing with camt.") return parser.parse(data_file) except ValueError: @@ -34,4 +34,4 @@ class AccountBankStatementImport(models.TransientModel): pass # Not a camt file, returning super will call next candidate: _logger.debug("Statement file was not a camt file.", exc_info=True) - return super(AccountBankStatementImport, self)._parse_file(data_file) + return super()._parse_file(data_file) diff --git a/account_bank_statement_import_camt_oca/models/bank_statement.py b/account_statement_import_camt/models/bank_statement.py similarity index 100% rename from account_bank_statement_import_camt_oca/models/bank_statement.py rename to account_statement_import_camt/models/bank_statement.py diff --git a/account_bank_statement_import_camt_oca/models/parser.py b/account_statement_import_camt/models/parser.py similarity index 96% rename from account_bank_statement_import_camt_oca/models/parser.py rename to account_statement_import_camt/models/parser.py index a149b917..2c66b7a2 100644 --- a/account_bank_statement_import_camt_oca/models/parser.py +++ b/account_statement_import_camt/models/parser.py @@ -10,7 +10,7 @@ from odoo import models class CamtParser(models.AbstractModel): - _name = "account.bank.statement.import.camt.parser" + _name = "account.statement.import.camt.parser" _description = "Account Bank Statement Import CAMT parser" def parse_amount(self, ns, node): @@ -44,7 +44,9 @@ class CamtParser(models.AbstractModel): for search_str in xpath_str: found_node = node.xpath(search_str, namespaces={"ns": ns}) if found_node: - if join_str is None: + if isinstance(found_node[0], str): + attr_value = found_node[0] + elif join_str is None: attr_value = found_node[0].text else: attr_value = join_str.join([x.text for x in found_node]) @@ -68,7 +70,7 @@ class CamtParser(models.AbstractModel): ) # name self.add_value_from_node( - ns, node, ["./ns:AddtlTxInf"], transaction, "note", join_str="\n" + ns, node, ["./ns:AddtlTxInf"], transaction, "payment_ref", join_str="\n" ) # eref self.add_value_from_node( @@ -199,7 +201,9 @@ class CamtParser(models.AbstractModel): "account_number", ) self.add_value_from_node(ns, node, "./ns:Id", result, "name") - self.add_value_from_node(ns, node, "./ns:Acct/ns:Ccy", result, "currency") + self.add_value_from_node( + ns, node, ["./ns:Acct/ns:Ccy", "./ns:Bal/ns:Amt/@Ccy"], result, "currency" + ) result["balance_start"], result["balance_end_real"] = self.get_balance_amounts( ns, node ) diff --git a/account_bank_statement_import_camt_oca/readme/CONTRIBUTORS.rst b/account_statement_import_camt/readme/CONTRIBUTORS.rst similarity index 100% rename from account_bank_statement_import_camt_oca/readme/CONTRIBUTORS.rst rename to account_statement_import_camt/readme/CONTRIBUTORS.rst diff --git a/account_bank_statement_import_camt_oca/readme/DESCRIPTION.rst b/account_statement_import_camt/readme/DESCRIPTION.rst similarity index 100% rename from account_bank_statement_import_camt_oca/readme/DESCRIPTION.rst rename to account_statement_import_camt/readme/DESCRIPTION.rst diff --git a/account_bank_statement_import_camt_oca/static/description/icon.png b/account_statement_import_camt/static/description/icon.png similarity index 100% rename from account_bank_statement_import_camt_oca/static/description/icon.png rename to account_statement_import_camt/static/description/icon.png diff --git a/account_bank_statement_import_camt_oca/static/description/index.html b/account_statement_import_camt/static/description/index.html similarity index 100% rename from account_bank_statement_import_camt_oca/static/description/index.html rename to account_statement_import_camt/static/description/index.html diff --git a/account_bank_statement_import_camt_oca/test_files/golden-camt053-no-ntry.pydata b/account_statement_import_camt/test_files/golden-camt053-no-ntry.pydata similarity index 100% rename from account_bank_statement_import_camt_oca/test_files/golden-camt053-no-ntry.pydata rename to account_statement_import_camt/test_files/golden-camt053-no-ntry.pydata diff --git a/account_bank_statement_import_camt_oca/test_files/golden-camt053-txdtls.pydata b/account_statement_import_camt/test_files/golden-camt053-txdtls.pydata similarity index 99% rename from account_bank_statement_import_camt_oca/test_files/golden-camt053-txdtls.pydata rename to account_statement_import_camt/test_files/golden-camt053-txdtls.pydata index 9b73d97f..6b7fc096 100644 --- a/account_bank_statement_import_camt_oca/test_files/golden-camt053-txdtls.pydata +++ b/account_statement_import_camt/test_files/golden-camt053-txdtls.pydata @@ -1,4 +1,4 @@ -(None, +('CHF', 'CH1111000000123456789', [{'balance_end_real': 79443.15, 'balance_start': 75960.15, diff --git a/account_bank_statement_import_camt_oca/test_files/golden-camt053.pydata b/account_statement_import_camt/test_files/golden-camt053.pydata similarity index 77% rename from account_bank_statement_import_camt_oca/test_files/golden-camt053.pydata rename to account_statement_import_camt/test_files/golden-camt053.pydata index 4bcdee9b..c51d6bb7 100644 --- a/account_bank_statement_import_camt_oca/test_files/golden-camt053.pydata +++ b/account_statement_import_camt/test_files/golden-camt053.pydata @@ -1,4 +1,4 @@ -(None, +('EUR', 'NL77ABNA0574908765', [{'balance_end_real': 15121.12, 'balance_start': 15568.27, @@ -8,27 +8,27 @@ 'amount': -754.25, 'date': '2014-01-05', 'name': 'Insurance policy 857239PERIOD 01.01.2014 - 31.12.2014', - 'note': 'MKB Insurance 859239PERIOD 01.01.2014 - 31.12.2014', 'partner_name': 'INSURANCE COMPANY TESTX', + 'payment_ref': 'MKB Insurance 859239PERIOD 01.01.2014 - 31.12.2014', 'ref': '435005714488-ABNO33052620'}, {'account_number': 'NL46ABNA0499998748', 'amount': -564.05, 'date': '2014-01-05', 'name': 'Direct Debit S14 0410', - 'note': 'Direct debit S14 0410 AC07 Rek.nummer blokkade TESTBANK/NL/20141229/01206408', 'partner_name': 'Test Customer', + 'payment_ref': 'Direct debit S14 0410 AC07 Rek.nummer blokkade TESTBANK/NL/20141229/01206408', 'ref': 'TESTBANK/NL/20141229/01206408'}, {'account_number': 'NL46ABNA0499998748', 'amount': -100.0, 'date': '2014-01-05', 'name': 'Direct Debit S14 0410', - 'note': 'Direct debit S14 0410 AC07 Rek.nummer blokkade TESTBANK/NL/20141229/01206408', 'partner_name': 'Test Customer', + 'payment_ref': 'Direct debit S14 0410 AC07 Rek.nummer blokkade TESTBANK/NL/20141229/01206408', 'ref': 'TESTBANK/NL/20141229/01206407'}, {'account_number': 'NL69ABNA0522123643', 'amount': 1405.31, 'date': '2014-01-05', 'name': 'INNDNL2U20140105000217200000708', - 'note': '#RD PARTY MEDIA CUSNO 90782 4210773', 'partner_name': '3rd party Media', + 'payment_ref': '#RD PARTY MEDIA CUSNO 90782 4210773', 'ref': '115'}]}]) diff --git a/account_bank_statement_import_camt_oca/test_files/test-camt053 b/account_statement_import_camt/test_files/test-camt053 similarity index 100% rename from account_bank_statement_import_camt_oca/test_files/test-camt053 rename to account_statement_import_camt/test_files/test-camt053 diff --git a/account_bank_statement_import_camt_oca/test_files/test-camt053-no-ntry b/account_statement_import_camt/test_files/test-camt053-no-ntry similarity index 100% rename from account_bank_statement_import_camt_oca/test_files/test-camt053-no-ntry rename to account_statement_import_camt/test_files/test-camt053-no-ntry diff --git a/account_bank_statement_import_camt_oca/test_files/test-camt053-txdtls b/account_statement_import_camt/test_files/test-camt053-txdtls similarity index 100% rename from account_bank_statement_import_camt_oca/test_files/test-camt053-txdtls rename to account_statement_import_camt/test_files/test-camt053-txdtls diff --git a/account_bank_statement_import_camt_oca/test_files/test-camt053.zip b/account_statement_import_camt/test_files/test-camt053.zip similarity index 100% rename from account_bank_statement_import_camt_oca/test_files/test-camt053.zip rename to account_statement_import_camt/test_files/test-camt053.zip diff --git a/account_bank_statement_import_camt_oca/tests/__init__.py b/account_statement_import_camt/tests/__init__.py similarity index 100% rename from account_bank_statement_import_camt_oca/tests/__init__.py rename to account_statement_import_camt/tests/__init__.py diff --git a/account_bank_statement_import_camt_oca/tests/test_import_bank_statement.py b/account_statement_import_camt/tests/test_import_bank_statement.py similarity index 76% rename from account_bank_statement_import_camt_oca/tests/test_import_bank_statement.py rename to account_statement_import_camt/tests/test_import_bank_statement.py index ac0d0688..0ccc1094 100644 --- a/account_bank_statement_import_camt_oca/tests/test_import_bank_statement.py +++ b/account_statement_import_camt/tests/test_import_bank_statement.py @@ -1,5 +1,6 @@ # Copyright 2013-2016 Therp BV # Copyright 2017 Open Net Sàrl +# Copyright 2020 Camptocamp # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). import base64 import difflib @@ -7,6 +8,8 @@ import pprint import tempfile from datetime import date +import mock + from odoo.modules.module import get_module_resource from odoo.tests.common import TransactionCase @@ -16,18 +19,18 @@ class TestParser(TransactionCase): def setUp(self): super(TestParser, self).setUp() - self.parser = self.env["account.bank.statement.import.camt.parser"] + self.parser = self.env["account.statement.import.camt.parser"] def _do_parse_test(self, inputfile, goldenfile): testfile = get_module_resource( - "account_bank_statement_import_camt_oca", "test_files", inputfile + "account_statement_import_camt", "test_files", inputfile ) with open(testfile, "rb") as data: res = self.parser.parse(data.read()) with tempfile.NamedTemporaryFile(mode="w+", suffix=".pydata") as temp: pprint.pprint(res, temp, width=160) goldenfile_res = get_module_resource( - "account_bank_statement_import_camt_oca", "test_files", goldenfile + "account_statement_import_camt", "test_files", goldenfile ) with open(goldenfile_res, "r") as golden: temp.seek(0) @@ -106,20 +109,29 @@ class TestImport(TransactionCase): "code": "TBNKCAMT", "type": "bank", "bank_account_id": bank.id, + "currency_id": self.env.ref("base.EUR").id, } ) - def test_statement_import(self): + @mock.patch( + "odoo.addons.account.models.sequence_mixin." + "SequenceMixin._constrains_date_sequence", + side_effect=False, + ) + def test_statement_import(self, constraint): """Test correct creation of single statement.""" testfile = get_module_resource( - "account_bank_statement_import_camt_oca", "test_files", "test-camt053" + "account_statement_import_camt", "test_files", "test-camt053" ) with open(testfile, "rb") as datafile: camt_file = base64.b64encode(datafile.read()) - self.env["account.bank.statement.import"].create( - {"attachment_ids": [(0, 0, {"name": "test file", "datas": camt_file})]} - ).import_file() + self.env["account.statement.import"].create( + { + "statement_filename": "test import", + "statement_file": camt_file, + } + ).import_file_button() bank_st_record = self.env["account.bank.statement"].search( [("name", "=", "1234Test/1")], limit=1 @@ -131,22 +143,28 @@ class TestImport(TransactionCase): line[key] == self.transactions[0][key] for key in ["amount", "date", "ref"] ) - and line.bank_account_id.acc_number - == self.transactions[0]["account_number"] + # TODO and bank_account_id was removed from line + # and line.bank_account_id.acc_number + # == self.transactions[0]["account_number"] for line in statement_lines ) ) - def test_zip_import(self): + @mock.patch( + "odoo.addons.account.models.sequence_mixin." + "SequenceMixin._constrains_date_sequence", + side_effect=False, + ) + def test_zip_import(self, constraint): """Test import of multiple statements from zip file.""" testfile = get_module_resource( - "account_bank_statement_import_camt_oca", "test_files", "test-camt053.zip" + "account_statement_import_camt", "test_files", "test-camt053.zip" ) with open(testfile, "rb") as datafile: camt_file = base64.b64encode(datafile.read()) - self.env["account.bank.statement.import"].create( - {"attachment_ids": [(0, 0, {"name": "test file", "datas": camt_file})]} - ).import_file() + self.env["account.statement.import"].create( + {"statement_filename": "test import", "statement_file": camt_file} + ).import_file_button() bank_st_record = self.env["account.bank.statement"].search( [("name", "in", ["1234Test/2", "1234Test/3"])] ) diff --git a/account_bank_statement_import_camt_oca/views/account_bank_statement_import.xml b/account_statement_import_camt/views/account_bank_statement_import.xml similarity index 59% rename from account_bank_statement_import_camt_oca/views/account_bank_statement_import.xml rename to account_statement_import_camt/views/account_bank_statement_import.xml index 6a01e4fc..f3044a28 100644 --- a/account_bank_statement_import_camt_oca/views/account_bank_statement_import.xml +++ b/account_statement_import_camt/views/account_bank_statement_import.xml @@ -1,10 +1,10 @@ - - account.bank.statement.import + + account.statement.import
    diff --git a/setup/account_statement_import_camt/odoo/addons/account_statement_import_camt b/setup/account_statement_import_camt/odoo/addons/account_statement_import_camt new file mode 120000 index 00000000..26302a85 --- /dev/null +++ b/setup/account_statement_import_camt/odoo/addons/account_statement_import_camt @@ -0,0 +1 @@ +../../../../account_statement_import_camt \ No newline at end of file diff --git a/setup/account_statement_import_camt/setup.py b/setup/account_statement_import_camt/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_statement_import_camt/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)