From 7ecaefd77b14e25cd55249e5dfc78ca4de9e0bb3 Mon Sep 17 00:00:00 2001
From: Katherine Zaoral
Date: Tue, 15 Nov 2022 11:11:17 -0300
Subject: [PATCH] [IMP] account_bank_statement_import_txt_xlsx: CSV
[IMP] add csv meta data management
[FIX] exclude footer meta data
[IMP] import separated credit/debit column file
[FIX] make comptatible with new version of multi_step_wizard module & add migration file
[FIX] all not provided value are handled in_parse_decimal method
[REF] Remove unnecessary \n
Renamed to account_statement_import_sheet_file
Co-authored-by: zaoral
---
.../README.rst | 11 +-
.../__init__.py | 1 -
.../__manifest__.py | 5 +-
.../data/map_data.xml | 3 +
.../account_statement_import_sheet_file.pot | 545 +++++++++++++++
.../account_statement_import_txt_xlsx.pot | 588 ----------------
.../i18n/es.po | 566 +++++++--------
.../i18n/es_AR.po | 644 +++++++++---------
.../i18n/it.po | 562 +++++++--------
.../i18n/nl.po | 549 +++++++--------
.../i18n/pt.po | 557 +++++++--------
.../i18n/zh_CN.po | 555 +++++++--------
.../migrations/16.0.1.0.0/pre-migration.py | 23 +
.../models/account_statement_import.py | 2 +-
.../account_statement_import_sheet_mapping.py | 39 +-
.../account_statement_import_sheet_parser.py | 47 +-
.../readme/CONTRIBUTORS.rst | 2 +
.../security/ir.model.access.csv | 1 -
.../static/description/index.html | 9 +-
.../tests/__init__.py | 2 +-
.../meta_data_separated_credit_debit.csv | 10 +
.../meta_data_separated_credit_debit.xlsx | Bin 0 -> 5355 bytes
...st_account_statement_import_sheet_file.py} | 179 +++--
.../views/account_statement_import.xml | 2 +-
...account_statement_import_sheet_mapping.xml | 41 +-
.../wizards/__init__.py | 3 -
...t_statement_import_sheet_mapping_wizard.py | 186 -----
..._statement_import_sheet_mapping_wizard.xml | 173 -----
requirements.txt | 2 +
.../account_statement_import_sheet_file | 1 +
.../setup.py | 6 +
31 files changed, 2446 insertions(+), 2868 deletions(-)
create mode 100644 account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot
delete mode 100644 account_statement_import_sheet_file/i18n/account_statement_import_txt_xlsx.pot
create mode 100644 account_statement_import_sheet_file/migrations/16.0.1.0.0/pre-migration.py
create mode 100644 account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv
create mode 100644 account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.xlsx
rename account_statement_import_sheet_file/tests/{test_account_statement_import_txt_xlsx.py => test_account_statement_import_sheet_file.py} (74%)
delete mode 100644 account_statement_import_sheet_file/wizards/__init__.py
delete mode 100644 account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.py
delete mode 100644 account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.xml
create mode 120000 setup/account_statement_import_sheet_file/odoo/addons/account_statement_import_sheet_file
create mode 100644 setup/account_statement_import_sheet_file/setup.py
diff --git a/account_statement_import_sheet_file/README.rst b/account_statement_import_sheet_file/README.rst
index b74219224e..a15989bd62 100644
--- a/account_statement_import_sheet_file/README.rst
+++ b/account_statement_import_sheet_file/README.rst
@@ -14,10 +14,10 @@ Bank Statement TXT/CSV/XLSX Import
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
- :target: https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_txt_xlsx
+ :target: https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_sheet_file
:alt: OCA/bank-statement-import
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/bank-statement-import-16-0/bank-statement-import-16-0-account_statement_import_txt_xlsx
+ :target: https://translation.odoo-community.org/projects/bank-statement-import-16-0/bank-statement-import-16-0-account_statement_import_sheet_file
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/174/16.0
@@ -66,7 +66,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues `_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -84,11 +84,12 @@ Contributors
* Alexis de Lattre
* Sebastien BEAU
-* Mourad EL HADJ MIMOUNE
+* Katherine Zaoral
* Tecnativa (https://www.tecnativa.com)
* Vicent Cubells
* Victor M.M. Torres
+ * Víctor Martínez
* ForgeFlow (https://www.forgeflow.com)
@@ -120,6 +121,6 @@ Current `maintainer `__:
|maintainer-alexey-pelykh|
-This module is part of the `OCA/bank-statement-import `_ project on GitHub.
+This module is part of the `OCA/bank-statement-import `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/account_statement_import_sheet_file/__init__.py b/account_statement_import_sheet_file/__init__.py
index aee8895e7a..0650744f6b 100644
--- a/account_statement_import_sheet_file/__init__.py
+++ b/account_statement_import_sheet_file/__init__.py
@@ -1,2 +1 @@
from . import models
-from . import wizards
diff --git a/account_statement_import_sheet_file/__manifest__.py b/account_statement_import_sheet_file/__manifest__.py
index 6eab5d7bdd..34446897ee 100644
--- a/account_statement_import_sheet_file/__manifest__.py
+++ b/account_statement_import_sheet_file/__manifest__.py
@@ -13,9 +13,7 @@
"license": "AGPL-3",
"installable": True,
"depends": [
- "account_statement_import",
- "multi_step_wizard",
- "web_widget_dropdown_dynamic",
+ "account_statement_import_file",
],
"external_dependencies": {"python": ["xlrd", "chardet"]},
"data": [
@@ -24,6 +22,5 @@
"views/account_statement_import_sheet_mapping.xml",
"views/account_statement_import.xml",
"views/account_journal_views.xml",
- "wizards/account_statement_import_sheet_mapping_wizard.xml",
],
}
diff --git a/account_statement_import_sheet_file/data/map_data.xml b/account_statement_import_sheet_file/data/map_data.xml
index f874660158..ea50132080 100644
--- a/account_statement_import_sheet_file/data/map_data.xml
+++ b/account_statement_import_sheet_file/data/map_data.xml
@@ -7,12 +7,15 @@
Sample Statement
+ 0
+ 1
comma
dot
comma
"
%m/%d/%Y
Date
+ simple_value
Amount
Currency
Amount Currency
diff --git a/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot b/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot
new file mode 100644
index 0000000000..69a2f1b1fa
--- /dev/null
+++ b/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot
@@ -0,0 +1,545 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_statement_import_sheet_file
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 16.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 06:13+0000\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_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "%(code)s: %(filename)s"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
+msgid ""
+" Add the column names or column number (when the file has no header).\n"
+" You can concatenate multiple columns in the file into the same field, indicating the\n"
+" column names or numbers separated by comma."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
+msgid ""
+" indicate the column number in the "
+"Columns section. The first column is 0."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "Account: %s; "
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid "Amount column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
+#, python-format
+msgid "Bad file/mapping: "
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
+msgid "Balance Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
+msgid "Balance after transaction in journal's currency"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+msgid "Baltic (Latin-4 / ISO 8859-4)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
+msgid "Bank Account Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
+msgid "Bank Name Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
+msgid "Bank Statement Import Sheet Mapping"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
+msgid "Bank Statement Import Sheet Parser"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "Bank: %s; "
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+msgid "Central European (Latin-2 / ISO 8859-2)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
+msgid "Columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
+msgid "Created by"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
+msgid "Created on"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
+msgid "Credit Value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
+msgid "Credit amount column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
+msgid "Credit amount of transaction in journal's currency"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
+msgid "Currency Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+msgid "Cyrillic (KOI8-R)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+msgid "Cyrillic (KOI8-U)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+msgid "Cyrillic (Windows-1251)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
+msgid "Debit Value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
+msgid "Debit amount column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
+msgid "Debit amount of transaction in journal's currency"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+msgid "Debit/credit column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
+msgid "Decimals Separator"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
+msgid "Default Sheet Mapping"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
+msgid "Delimiter"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
+msgid "Description Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+msgid "Distinct Credit/debit Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
+msgid "Encoding"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
+msgid "File does not contain header line"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
+msgid "ID"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
+msgid "Import Bank Statement Files"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
+msgid ""
+"In case statement is multi-currency, column to get currency of transaction "
+"from"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
+msgid ""
+"In case statement provides original currency for transactions with automatic"
+" currency conversion, column to get original currency of transaction from"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
+msgid ""
+"In case statement provides original currency for transactions with automatic"
+" currency conversion, column to get original transaction amount in original "
+"transaction currency from"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+msgid "Japanese (Shift JIS)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
+msgid "Last Updated by"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
+msgid "Last Updated on"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#, python-format
+msgid "N/A"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
+msgid "Name"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "No valid encoding was found for the attached file"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
+msgid "Notes Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
+msgid "Original Amount Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
+msgid "Original Currency Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
+msgid "Partner Name Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
+msgid "Partner's bank"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
+msgid "Partner's bank account"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
+msgid "Reference Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
+msgid "Sheet mapping"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
+msgid "Statement Import Map"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
+msgid "Statement Sheet Mappings"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
+msgid "TXT/CSV/XLSX mapping:"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
+msgid "Text qualifier"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
+msgid "Thousands Separator"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
+msgid "Timestamp Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
+msgid "Timestamp Format"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
+msgid "Traditional Chinese (big5)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "Transaction ID: %s; "
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+msgid "UTF-16"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+msgid "UTF-16 (with BOM)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+msgid "UTF-8"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+msgid "UTF-8 (with BOM)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+msgid "Unified Chinese (gb18030)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
+msgid "Unique transaction ID column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
+msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
+msgid "Value of debit/credit column that indicates if it's a credit"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
+msgid "Value of debit/credit column that indicates if it's a debit"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+msgid "Western (Latin-1 / ISO 8859-1)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+msgid "Western (Windows-1252)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
+msgid ""
+"When this occurs please indicate the column number in the Columns section "
+"instead of the column name, considering that the first column is 0"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+msgid "comma (,)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+msgid "dot (.)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+msgid "none"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+msgid "semicolon (;)"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
+msgid "space"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
+msgid "tab"
+msgstr ""
diff --git a/account_statement_import_sheet_file/i18n/account_statement_import_txt_xlsx.pot b/account_statement_import_sheet_file/i18n/account_statement_import_txt_xlsx.pot
deleted file mode 100644
index a16e458162..0000000000
--- a/account_statement_import_sheet_file/i18n/account_statement_import_txt_xlsx.pot
+++ /dev/null
@@ -1,588 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_statement_import_txt_xlsx
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Odoo Server 15.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_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "%(code)s: %(filename)s"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
-msgid ""
-" Add the column names or column number (when the file has no header).\n"
-" You can concatenate multiple columns in the file into the same field, indicating the\n"
-" column names or numbers separated by comma."
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
-msgid ""
-" indicate the column number in the "
-"Columns section. The first column is 0."
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "Account: %s; "
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
-#, python-format
-msgid "Bad file/mapping: "
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
-msgid "Balance Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
-msgid "Balance after transaction in journal's currency"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
-msgid "Baltic (Latin-4 / ISO 8859-4)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
-msgid "Bank Account Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
-msgid "Bank Name Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
-msgid "Bank Statement Import Sheet Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
-msgid "Bank Statement Import Sheet Parser"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "Bank: %s; "
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
-msgid "Central European (Latin-2 / ISO 8859-2)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
-msgid "Columns"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
-msgid "Created by"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
-msgid "Created on"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
-msgid "Credit Value"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
-msgid "Credit amount column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
-msgid "Credit amount of transaction in journal's currency"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
-msgid "Currency Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
-msgid "Cyrillic (KOI8-R)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
-msgid "Cyrillic (KOI8-U)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
-msgid "Cyrillic (Windows-1251)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
-msgid "Debit Value"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
-msgid "Debit amount column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
-msgid "Debit amount of transaction in journal's currency"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid "Debit/credit column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
-msgid "Decimals Separator"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
-msgid "Default Sheet Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
-msgid "Delimiter"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
-msgid "Description Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
-msgid "Display Name"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
-msgid "Encoding"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
-msgid "File does not contain header line"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
-msgid "ID"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
-msgid "Import Bank Statement Files"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
-msgid ""
-"In case statement is multi-currency, column to get currency of transaction "
-"from"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
-msgid ""
-"In case statement provides original currency for transactions with automatic"
-" currency conversion, column to get original currency of transaction from"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
-msgid ""
-"In case statement provides original currency for transactions with automatic"
-" currency conversion, column to get original transaction amount in original "
-"transaction currency from"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
-msgid "Japanese (Shift JIS)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
-msgid "Journal"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
-msgid "Last Modified on"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
-msgid "Last Updated by"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
-msgid "Last Updated on"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
-#, python-format
-msgid "N/A"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
-msgid "Name"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "No valid encoding was found for the attached file"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
-msgid "Notes Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
-msgid "Original Amount Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
-msgid "Original Currency Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
-msgid "Partner Name Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
-msgid "Partner's bank"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
-msgid "Partner's bank account"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
-msgid "Reference Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
-msgid "Sheet mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
-msgid "Statement Import Map"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
-msgid "Statement Sheet Mappings"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
-msgid "TXT/CSV/XLSX mapping:"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
-msgid "Text qualifier"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
-msgid "Thousands Separator"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
-msgid "Timestamp Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
-msgid "Timestamp Format"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
-msgid "Traditional Chinese (big5)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "Transaction ID: %s; "
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
-msgid "UTF-16"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
-msgid "UTF-16 (with BOM)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
-msgid "UTF-8"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
-msgid "UTF-8 (with BOM)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
-msgid "Unified Chinese (gb18030)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
-msgid "Unique transaction ID column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
-msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
-msgid "Value of debit/credit column that indicates if it's a credit"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
-msgid "Value of debit/credit column that indicates if it's a debit"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
-msgid "Western (Latin-1 / ISO 8859-1)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
-msgid "Western (Windows-1252)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
-msgid ""
-"When this occurs please indicate the column number in the Columns section "
-"instead of the column name, considering that the first column is 0"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
-msgid "comma (,)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
-msgid "dot (.)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
-msgid "none"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
-msgid "semicolon (;)"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
-msgid "space"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
-msgid "tab"
-msgstr ""
diff --git a/account_statement_import_sheet_file/i18n/es.po b/account_statement_import_sheet_file/i18n/es.po
index 5a6727e738..5ddf815de7 100644
--- a/account_statement_import_sheet_file/i18n/es.po
+++ b/account_statement_import_sheet_file/i18n/es.po
@@ -6,24 +6,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2023-06-23 19:09+0000\n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 08:13+0200\n"
"Last-Translator: pere-aquarian \n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "%(code)s: %(filename)s"
msgstr "%(code)s: %(filename)s"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -38,8 +40,8 @@ msgstr ""
" nombres de columnas o números separados por "
"comas."
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
@@ -47,258 +49,222 @@ msgstr ""
" indique el número de columna en la "
"sección Columnas. La primera columna es 0."
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Account: %s; "
msgstr "Cuenta: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr "Permitir atrás"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+#, fuzzy
+#| msgid "Amount Column"
+msgid "Amount column"
msgstr "Columna de importe"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
-msgstr "Monto de la transacción en la moneda del diario"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance Column"
msgstr "Columna de balance"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr "Saldo después de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr "Baltic (Latin-4 / ISO 8859-4)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Bank Account Column"
msgstr "Columna Cuenta bancaria"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Bank Name Column"
msgstr "Columna Nombre del banco"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
msgid "Bank Statement Import Sheet Mapping"
msgstr "Mapeo de hojas de importación de extractos bancarios"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr "Asistente de hojas de importación de extractos bancarios"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
msgid "Bank Statement Import Sheet Parser"
msgstr "Analizador de hojas de importación de extractos bancarios"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr "Banco: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr "Central European (Latin-2 / ISO 8859-2)"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr "Columnas"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
msgid "Created by"
msgstr "Creado por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
msgid "Created on"
msgstr "Creado el"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Credit Value"
msgstr "Valor de crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount column"
msgstr "Columna de crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount of transaction in journal's currency"
msgstr "Total de crédito de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid "Currency Column"
msgstr "Columna de moneda"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr "Cyrillic (KOI8-R)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr "Cyrillic (KOI8-U)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr "Cyrillic (Windows-1251)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Debit Value"
msgstr "Valor de débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount column"
msgstr "Columna de débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount of transaction in journal's currency"
msgstr "Importe de débito de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr "Columna de débito/crédito"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr "Columna de débito/crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr "Separador de decimales"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr "Mapeo por defecto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr "Delimitador"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
msgid "Description Column"
msgstr "Columna de descripción"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+#, fuzzy
+#| msgid "Debit/Credit column"
+msgid "Distinct Credit/debit Column"
+msgstr "Columna de débito/crédito"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr "Codificación"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid "File does not contain header line"
msgstr "El fichero no contiene una línea de cabecera"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr "Ficheros"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
-msgstr "Cabecera"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
msgid "ID"
msgstr "ID"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr "Importar"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
msgid "Import Bank Statement Files"
msgstr "Importar ficheros de extracto bancario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr "Mapeo de importación"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr "Mapeo importado"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
@@ -306,9 +272,8 @@ msgstr ""
"En caso de que el extracto sea en varias monedas, columna para obtener la "
"moneda de la transacción de"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
@@ -317,9 +282,8 @@ msgstr ""
"con conversión automática de moneda, columna para obtener la moneda original "
"de la transacción"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
@@ -329,249 +293,249 @@ msgstr ""
"con conversión automática de moneda, columna para obtener el monto de la "
"transacción original en la moneda de la transacción original de"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr "Japanese (Shift JIS)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr "Diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
msgid "Last Modified on"
msgstr "Última modificación el"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
msgid "Last Updated by"
msgstr "Última modificación por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
msgid "Last Updated on"
msgstr "Última modificación el"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr "Mapeo de %s"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr "N/A"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr "Nombre"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "No valid encoding was found for the attached file"
msgstr "No hay una codificación válida para el fichero adjunto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
msgid "Notes Column"
msgstr "Columna de Notas"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr "Opciones"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid "Original Amount Column"
msgstr "Columna de importe original"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid "Original Currency Column"
msgstr "Columna de moneda original"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
msgid "Partner Name Column"
msgstr "Columna de contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr "Banco del contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr "Número de cuenta del contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
msgid "Reference Column"
msgstr "Columna de referencia"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
-msgstr "Selecciona un extracto para importar mapeo"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr "Hoja mapeo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-"Algunos formatos de extracto bancario utilizan el valor de la cantidad "
-"absoluta e indican el signo de la transacción especificando si fue de débito "
-"o de crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr "Estado"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr "Mapeo de importación de extracto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr "Mapeos de importación de extractos"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr "Mapeos TXT/CSV/XLSX:"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr "Calificador de texto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr "Separador de miles"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
msgid "Timestamp Column"
msgstr "Columna de marca de tiempo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr "Formato de marca de tiempo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
#, fuzzy
msgid "Traditional Chinese (big5)"
msgstr "Traditional Chinese (big5)"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr "ID de transacción: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr "UTF-16"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr "UTF-16 (with BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr "UTF-8"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr "UTF-8 (with BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr "Unified Chinese (gb18030)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr "Columna de ID único de trasacción"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr "Cargar ficheros"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
msgstr "Usar amount_column OR (amount_debit_column AND amount_credit_column)."
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+#, fuzzy
+#| msgid ""
+#| "Some statement formats use absolute amount value and indicate signof the "
+#| "transaction by specifying if it was a debit or a credit one"
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+"Algunos formatos de extracto bancario utilizan el valor de la cantidad "
+"absoluta e indican el signo de la transacción especificando si fue de débito "
+"o de crédito"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr "Valor de la columna de débito/crédito que indica si es un crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr "Valor de la columna de débito/crédito que indica si es un débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr "Western (Latin-1 / ISO 8859-1)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr "Western (Windows-1252)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
@@ -580,37 +544,37 @@ msgstr ""
"lugar del nombre de la columna, teniendo en cuenta que la primera columna es "
"0"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr "coma (,)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr "punto (.)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr "ninguno"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr "punto y coma (;)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr "espacio"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr "tabulador"
diff --git a/account_statement_import_sheet_file/i18n/es_AR.po b/account_statement_import_sheet_file/i18n/es_AR.po
index e6ac2e0514..45f6929354 100644
--- a/account_statement_import_sheet_file/i18n/es_AR.po
+++ b/account_statement_import_sheet_file/i18n/es_AR.po
@@ -6,24 +6,27 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2022-01-09 05:40+0000\n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 08:15+0200\n"
"Last-Translator: Ignacio Buioli \n"
"Language-Team: none\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3.2\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, fuzzy, python-format
msgid "%(code)s: %(filename)s"
-msgstr ""
+msgstr "%(code)s: %(filename)s"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
+#, fuzzy
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -31,266 +34,250 @@ msgid ""
"file into the same field, indicating the\n"
" column names or numbers separated by comma."
msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+" Agregue los nombres de columna o el "
+"número de columna (cuando el archivo no tiene encabezado).\n"
+" Puede concatenar varias columnas en el "
+"archivo en el mismo campo, indicando el\n"
+" nombres de columnas o números separados por "
+"comas."
+
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
+#, fuzzy
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
msgstr ""
+" indique el número de columna en la "
+"sección Columnas. La primera columna es 0."
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Account: %s; "
msgstr "Cuenta: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr "Permitir Volver"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+#, fuzzy
+msgid "Amount column"
+msgstr "Columna de débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
-msgstr "Monto de la transacción en la moneda del diario"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
+#, fuzzy
msgid "Balance Column"
-msgstr ""
+msgstr "Columna de balance"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr "Saldo despues de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr "Báltico (Latin-4 / ISO 8859-4)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
+#, fuzzy
msgid "Bank Account Column"
-msgstr ""
+msgstr "Columna Cuenta bancaria"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
+#, fuzzy
msgid "Bank Name Column"
-msgstr ""
+msgstr "Columna Nombre del banco"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
msgid "Bank Statement Import Sheet Mapping"
msgstr "Mapeo de Hojas de Importación de Extractos Bancarios"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr "Asistente para el Mapeo de Hojas de Importación de Extractos Bancarios"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
msgid "Bank Statement Import Sheet Parser"
msgstr "Analizador de Hojas de Importación de Extractos Bancarios"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr "Banco: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr "Centro Europeo (Latin-2 / ISO 8859-2)"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr "Columnas"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
msgid "Created by"
msgstr "Creado por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
msgid "Created on"
msgstr "Creado en"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
+#, fuzzy
msgid "Credit Value"
-msgstr ""
+msgstr "Valor de crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
+#, fuzzy
msgid "Credit amount column"
-msgstr ""
+msgstr "Columna de crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
+#, fuzzy
msgid "Credit amount of transaction in journal's currency"
-msgstr ""
+msgstr "Total de crédito de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
+#, fuzzy
msgid "Currency Column"
-msgstr ""
+msgstr "Columna de moneda"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr "Cirílico (KOI8-R)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr "Cirílico (KOI8-U)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr "Cirílico (Windows-1251)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
+#, fuzzy
msgid "Debit Value"
-msgstr ""
+msgstr "Valor de débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
+#, fuzzy
msgid "Debit amount column"
-msgstr ""
+msgstr "Columna de débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
+#, fuzzy
msgid "Debit amount of transaction in journal's currency"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr "Columna de Débito/Crédito"
+msgstr "Importe de débito de la transacción en la moneda del diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr "Columna de Débito/crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr "Separador de Decimales"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr "Mapeo de Hoja Predeterminado"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr "Delimitador"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
+#, fuzzy
msgid "Description Column"
-msgstr ""
+msgstr "Columna de descripción"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+#, fuzzy
+#| msgid "Debit/Credit column"
+msgid "Distinct Credit/debit Column"
+msgstr "Columna de Débito/Crédito"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr "Codificación"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
+#, fuzzy
msgid "File does not contain header line"
-msgstr ""
+msgstr "El fichero no contiene una línea de cabecera"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr "Archivos"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
-msgstr "Cabecera"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
msgid "ID"
msgstr "ID"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr "Importar"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
msgid "Import Bank Statement Files"
msgstr "Importar Archivos de Extractos Bancarios"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr "Importar Mapeo"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr "Mapeo Importado"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
@@ -298,9 +285,8 @@ msgstr ""
"En caso de que el estado de cuenta sea multi-moneda, columna para obtener la "
"moneda de la transacción"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
@@ -309,9 +295,8 @@ msgstr ""
"transacciones con conversión automática de moneda, columna para obtener la "
"moneda original de la transacción"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
@@ -321,284 +306,295 @@ msgstr ""
"transacciones con conversión automática de moneda, columna para obtener el "
"monto de la transacción original en la moneda de la transacción original"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr "Japonés (Shift JIS)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr "Diario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
msgid "Last Updated on"
msgstr "Última actualización el"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr "Mapeo desde %s"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr "N/A"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr "Nombre"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, fuzzy, python-format
msgid "No valid encoding was found for the attached file"
-msgstr ""
+msgstr "No hay una codificación válida para el fichero adjunto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
+#, fuzzy
msgid "Notes Column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr "Opciones"
+msgstr "Columna de Notas"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
+#, fuzzy
msgid "Original Amount Column"
-msgstr ""
+msgstr "Columna de importe original"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
+#, fuzzy
msgid "Original Currency Column"
-msgstr ""
+msgstr "Columna de moneda original"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
+#, fuzzy
msgid "Partner Name Column"
-msgstr ""
+msgstr "Columna de contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr "Banco del contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr "Cuenta bancaria del contacto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
+#, fuzzy
msgid "Reference Column"
+msgstr "Columna de referencia"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
-msgstr "Seleccione un archivo de estado para importar mapeo"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr "Hoja de mapeo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-"Algunos formatos de estado de cuenta usan un valor de monto absoluto e "
-"indican el signo de la transacción especificando si fue de débito o de "
-"crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr "Estado"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr "Mapeo de Importación de Estados"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr "Mapeos de Hojas de Estados"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr "Mapeo TXT/CSV/XLSX:"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr "Calificador de texto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr "Separador de miles"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
+#, fuzzy
msgid "Timestamp Column"
-msgstr ""
+msgstr "Columna de marca de tiempo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr "Formato de Tiempo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
msgid "Traditional Chinese (big5)"
msgstr "Chino Tradicional (big5)"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr "ID de Transacción: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr "UTF-16"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr "UTF-16 (con BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr "UTF-8"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr "UTF-8 (con BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr "Chino Unificado (gb18030)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr "Columna de ID único de transacción"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr "Cargar Archivos"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#, fuzzy
msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
+msgstr "Usar amount_column OR (amount_debit_column AND amount_credit_column)."
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+#, fuzzy
+#| msgid ""
+#| "Some statement formats use absolute amount value and indicate signof the "
+#| "transaction by specifying if it was a debit or a credit one"
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
msgstr ""
+"Algunos formatos de estado de cuenta usan un valor de monto absoluto e "
+"indican el signo de la transacción especificando si fue de débito o de "
+"crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr "Valor de la columna de débito/crédito que indica si es un crédito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr "Valor de la columna de débito/crédito que indica si es un débito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr "Oeste (Latin-1 / ISO 8859-1)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr "Oeste (Windows-1252)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
+#, fuzzy
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+"Cuando esto ocurra, indique el número de columna en la sección Columnas en "
+"lugar del nombre de la columna, teniendo en cuenta que la primera columna es "
+"0"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr "coma (,)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr "punto (.)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr "ninguno"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr "punto-y-coma (;)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr "espacio"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr "tabulación"
diff --git a/account_statement_import_sheet_file/i18n/it.po b/account_statement_import_sheet_file/i18n/it.po
index 068d398eaa..e49711e474 100644
--- a/account_statement_import_sheet_file/i18n/it.po
+++ b/account_statement_import_sheet_file/i18n/it.po
@@ -6,24 +6,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2023-05-24 19:09+0000\n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 08:14+0200\n"
"Last-Translator: Francesco Foresti \n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "%(code)s: %(filename)s"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -32,265 +34,227 @@ msgid ""
" column names or numbers separated by comma."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Account: %s; "
msgstr "Conto: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr "Consenti indietro"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid "Amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
-msgstr "Importo dell'operazione nella valuta del registro"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr "Saldo dopo l'operazione nella valuta del registro"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr "Baltico (Latin-4 / ISO 8859-4)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Bank Account Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Bank Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
msgid "Bank Statement Import Sheet Mapping"
msgstr "Mappatura foglio importazione estratti conto bancari"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr "Procedura per mappatura foglio importazione estratti conto bancari"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
msgid "Bank Statement Import Sheet Parser"
msgstr "Analizzatore foglio importazione estratti conto bancari"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr "Banca: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr "Europeo centrale (Latin-2 / ISO 8859-2)"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr "Colonne"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
msgid "Created by"
msgstr "Creato da"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
msgid "Created on"
msgstr "Creato il"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Credit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid "Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr "Cirillico (KOI8-R)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr "Cirillico (KOI8-U)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr "Cirillico (Windows-1251)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Debit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr "Colonna dare/avere"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr "Colonna dare/avere"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr "Separatore decimali"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr "Mappatura foglio predefinita"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr "Delimitatore"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
msgid "Description Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
msgid "Display Name"
msgstr "Nome visualizzato"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+#, fuzzy
+#| msgid "Debit/Credit column"
+msgid "Distinct Credit/debit Column"
+msgstr "Colonna dare/avere"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr "Codifica"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid "File does not contain header line"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr "Files"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
-msgstr "Intestazione"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
msgid "ID"
msgstr "ID"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr "Importa"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
msgid "Import Bank Statement Files"
msgstr "Importazione file estratto conto bancario"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr "Importa mappatura"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr "Mappatura importata"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
@@ -298,9 +262,8 @@ msgstr ""
"In caso di estratto conto multivaluta, colonna dalla quale ottenere la "
"valuta dell'operazione"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
@@ -309,9 +272,8 @@ msgstr ""
"operazioni con conversione automatica, colonna dalla quale ottenere tale "
"valuta"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
@@ -321,283 +283,283 @@ msgstr ""
"operazioni con conversione automatica, colonna dalla quale ottenere "
"l'importo originario dell'operazione in tale valuta"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr "Giapponese (Shift JIS)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr "Registro"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
msgid "Last Updated on"
msgstr "Ultimo aggiornamento il"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr "Mappatura da %s"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr "N/D"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr "Nome"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "No valid encoding was found for the attached file"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
msgid "Notes Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr "Opzioni"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid "Original Amount Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid "Original Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
msgid "Partner Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr "Banca del partner"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr "Conto banca del partner"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
msgid "Reference Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
-msgstr "Selezionare un file di estratto conto per importare la mappatura"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr "Mappatura foglio"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-"Alcuni formati di estratto conto utilizzano un valore assoluto per l'importo "
-"e indicano il segno dell'operazione specificando se è in dare o in avere"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr "Stato"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr "Mappa di importazione estratti conto"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr "Mappature foglio estratti conto"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr "Mappatura TXT/CSV/XLSX:"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr "Qualificatore testo"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr "Separatore migliaia"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
msgid "Timestamp Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr "Formato marcatura temporale"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
msgid "Traditional Chinese (big5)"
msgstr "Cinese tradizionale (big5)"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr "ID operazione: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr "UTF-16"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr "UTF-16 (con BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr "UTF-8"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr "UTF-8 (con BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr "Cinese unificato (gb18030)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr "Colonna ID operazione univoca"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr "Carica file"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+#, fuzzy
+#| msgid ""
+#| "Some statement formats use absolute amount value and indicate signof the "
+#| "transaction by specifying if it was a debit or a credit one"
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+"Alcuni formati di estratto conto utilizzano un valore assoluto per l'importo "
+"e indicano il segno dell'operazione specificando se è in dare o in avere"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr "Valore della colonna dare/avere che indica se è un credito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr "Valore della colonna dare/avere che indica se è un debito"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr "Occidentale (Latin-1 / ISO 8859-1)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr "Occidentale (Windows-1252)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr "virgola (,)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr "punto (.)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr "nessuno"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr "punto e virgola (;)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr "spazio"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr "tabulazione"
diff --git a/account_statement_import_sheet_file/i18n/nl.po b/account_statement_import_sheet_file/i18n/nl.po
index b0c0d26543..576e8f5b6c 100644
--- a/account_statement_import_sheet_file/i18n/nl.po
+++ b/account_statement_import_sheet_file/i18n/nl.po
@@ -6,24 +6,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2021-01-22 23:45+0000\n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 08:14+0200\n"
"Last-Translator: Bosd \n"
"Language-Team: none\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3.2\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "%(code)s: %(filename)s"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -32,567 +34,520 @@ msgid ""
" column names or numbers separated by comma."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Account: %s; "
msgstr "Rekening: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid "Amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr "Baltic (Latin-4 / ISO 8859-4)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Bank Account Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Bank Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
#, fuzzy
msgid "Bank Statement Import Sheet Mapping"
msgstr "Bankafschrift import mapping"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-#, fuzzy
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr "Bankafschrift mapping guids"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
#, fuzzy
msgid "Bank Statement Import Sheet Parser"
msgstr "Bankafschrift parser"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr "Bank: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr "Central European (Latin-2 / ISO 8859-2)"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr "Kolommen"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
msgid "Created on"
msgstr "Aangemaakt op"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Credit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid "Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr "Cyrillic (KOI8-R)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr "Cyrillic (KOI8-U)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr "Cyrillic (Windows-1251)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Debit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr "Decimaal scheidingsteken"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr "Standaard afschrift mapping"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr "Scheidingsteken"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
msgid "Description Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
msgid "Display Name"
msgstr "Weergavenaam"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+msgid "Distinct Credit/debit Column"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr "Codering"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid "File does not contain header line"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr "Bestanden"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
msgid "ID"
msgstr "ID"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr "Import"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
#, fuzzy
msgid "Import Bank Statement Files"
msgstr "Importeer bankafschrift"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr "Import Mapping"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
"transaction currency from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr "Japanese (Shift JIS)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr "Dagboek"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigt op"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
msgid "Last Updated by"
msgstr "Laatst gewijzigt door"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
#, fuzzy
msgid "Last Updated on"
-msgstr "Laatst bewerkt door"
+msgstr "Laatst bijgewerkt op"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr "Mapping van %s"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr "N.V.T."
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr "Naam"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "No valid encoding was found for the attached file"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
msgid "Notes Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr "opties"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid "Original Amount Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid "Original Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
msgid "Partner Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
msgid "Reference Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr "Status"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
msgid "Timestamp Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
msgid "Traditional Chinese (big5)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr "Transactie ID: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr "UTF-16"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr "UTF-16 (with BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr "UTF-8"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr "UTF-8 (with BOM)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr "Unified Chinese (gb18030)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr "Unieke transactie ID kolom"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr "Upload bestanden"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr "Western (Latin-1 / ISO 8859-1)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr "comma (,)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr "punt (,)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr "geen"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr "puntcomma (;)"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr "spatie"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr "tab"
diff --git a/account_statement_import_sheet_file/i18n/pt.po b/account_statement_import_sheet_file/i18n/pt.po
index 0dd6d20d60..aff26e3bf2 100644
--- a/account_statement_import_sheet_file/i18n/pt.po
+++ b/account_statement_import_sheet_file/i18n/pt.po
@@ -6,22 +6,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "%(code)s: %(filename)s"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -30,562 +34,523 @@ msgid ""
" column names or numbers separated by comma."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#, python-format
-msgid "Account: %s; "
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#, python-format
+msgid "Account: %s; "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid "Amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Bank Account Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Bank Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
msgid "Bank Statement Import Sheet Mapping"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
msgid "Bank Statement Import Sheet Parser"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
+#, fuzzy
msgid "Created by"
-msgstr ""
+msgstr "Criado por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
+#, fuzzy
msgid "Created on"
-msgstr ""
+msgstr "Criado em"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Credit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid "Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Debit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
msgid "Description Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
+#, fuzzy
msgid "Display Name"
+msgstr "Exibir Nome"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+msgid "Distinct Credit/debit Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid "File does not contain header line"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
+#, fuzzy
msgid "ID"
-msgstr ""
+msgstr "ID (Identificação)"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
msgid "Import Bank Statement Files"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
"transaction currency from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
+#, fuzzy
msgid "Last Modified on"
-msgstr ""
+msgstr "Última Modificação Feita em"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
+#, fuzzy
msgid "Last Updated by"
-msgstr ""
+msgstr "Última Atualização Feita por"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
+#, fuzzy
msgid "Last Updated on"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr ""
+msgstr "Última Atualização Feita em"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "No valid encoding was found for the attached file"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
msgid "Notes Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid "Original Amount Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid "Original Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
msgid "Partner Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
msgid "Reference Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
msgid "Timestamp Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
msgid "Traditional Chinese (big5)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
+msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
-msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr ""
diff --git a/account_statement_import_sheet_file/i18n/zh_CN.po b/account_statement_import_sheet_file/i18n/zh_CN.po
index 05b0b9e0db..aeb643cc4c 100644
--- a/account_statement_import_sheet_file/i18n/zh_CN.po
+++ b/account_statement_import_sheet_file/i18n/zh_CN.po
@@ -6,24 +6,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2020-08-07 04:59+0000\n"
+"POT-Creation-Date: 2023-10-18 06:13+0000\n"
+"PO-Revision-Date: 2023-10-18 08:15+0200\n"
"Last-Translator: Dong \n"
"Language-Team: none\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
+"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10\n"
+"X-Generator: Poedit 3.0.1\n"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "%(code)s: %(filename)s"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" Add the column names or column number "
"(when the file has no header).\n"
@@ -32,566 +34,521 @@ msgid ""
" column names or numbers separated by comma."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid ""
" indicate the column number in the "
"Columns section. The first column is 0."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__absolute_value
+msgid "Absolute value"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Account: %s; "
msgstr "账户: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__allow_back
-msgid "Allow Back"
-msgstr "允许返回"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount Column"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid "Amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_column
-msgid "Amount of transaction in journal's currency"
-msgstr "原币的交易金额"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid "Amount type"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import.py:0
#, python-format
msgid "Bad file/mapping: "
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__balance_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__balance_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__balance_column
msgid "Balance after transaction in journal's currency"
msgstr "交易后的原币余额"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-4
msgid "Baltic (Latin-4 / ISO 8859-4)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Bank Account Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Bank Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_mapping
#, fuzzy
msgid "Bank Statement Import Sheet Mapping"
msgstr "银行对帐表格导入方案"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_mapping_wizard
-#, fuzzy
-msgid "Bank Statement Import Sheet Mapping Wizard"
-msgstr "银行对帐表格导入映射向导"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import_sheet_parser
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import_sheet_parser
#, fuzzy
msgid "Bank Statement Import Sheet Parser"
msgstr "银行对帐表格导入解析"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Bank: %s; "
msgstr "银行 %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-2
msgid "Central European (Latin-2 / ISO 8859-2)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_tree
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_sheet_mapping_tree
msgid "Columns"
msgstr "列名"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_uid
msgid "Created by"
msgstr "创建人"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__create_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__create_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__create_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__create_date
msgid "Created on"
msgstr "创建时间"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Credit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_credit_column
msgid "Credit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid "Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_r
msgid "Cyrillic (KOI8-R)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__koi8_u
msgid "Cyrillic (KOI8-U)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1251
msgid "Cyrillic (Windows-1251)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Debit Value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__amount_debit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__amount_debit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_debit_column
msgid "Debit amount of transaction in journal's currency"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Debit/Credit column"
-msgstr "借贷标志列名"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
msgid "Debit/credit column"
msgstr "借贷标志列名"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_decimal_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr "小数分隔符"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_journal__default_sheet_mapping_id
msgid "Default Sheet Mapping"
msgstr "默认表格导入方案"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__delimiter
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__delimiter
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__delimiter
msgid "Delimiter"
msgstr "分隔符"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__description_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__description_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__description_column
msgid "Description Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__display_name
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__display_name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__display_name
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__display_name
msgid "Display Name"
msgstr "显示名称"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__file_encoding
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__file_encoding
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__distinct_credit_debit
+#, fuzzy
+#| msgid "Debit/Credit column"
+msgid "Distinct Credit/debit Column"
+msgstr "借贷标志列名"
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__file_encoding
msgid "Encoding"
msgstr "表格编码格式"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid "File does not contain header line"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__attachment_ids
-msgid "Files"
-msgstr "文件"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid "Footer lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__header
-msgid "Header"
-msgstr "头部"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Header lines skip count"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__id
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__id
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__id
msgid "ID"
msgstr "ID"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Import"
-msgstr "导入"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_statement_import
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_statement_import
#, fuzzy
msgid "Import Bank Statement Files"
msgstr "导入银行对账单"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_account_statement_import_sheet_mapping_wizard
-msgid "Import Mapping"
-msgstr "导入方案"
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Imported Mapping"
-msgstr "已导入方案"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__currency_column
msgid ""
"In case statement is multi-currency, column to get currency of transaction "
"from"
msgstr "如果对账单包含多币别,指定获取交易币别的列名"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original currency of transaction from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid ""
"In case statement provides original currency for transactions with automatic "
"currency conversion, column to get original transaction amount in original "
"transaction currency from"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__shift_jis
msgid "Japanese (Shift JIS)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model,name:account_statement_import_txt_xlsx.model_account_journal
+#. module: account_statement_import_sheet_file
+#: model:ir.model,name:account_statement_import_sheet_file.model_account_journal
msgid "Journal"
msgstr "资金账户"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard____last_update
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser____last_update
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping____last_update
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser____last_update
msgid "Last Modified on"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_uid
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_uid
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_uid
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_uid
msgid "Last Updated by"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__write_date
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_parser__write_date
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__write_date
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_parser__write_date
msgid "Last Updated on"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py:0
-#, python-format
-msgid "Mapping from %s"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__n/a
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__n/a
#, python-format
msgid "N/A"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__name
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__name
msgid "Name"
msgstr "名称"
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "No valid encoding was found for the attached file"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__notes_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__notes_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__notes_column
msgid "Notes Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Options"
-msgstr ""
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_amount_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_amount_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_amount_column
msgid "Original Amount Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__original_currency_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__original_currency_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__original_currency_column
msgid "Original Currency Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__partner_name_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__partner_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__partner_name_column
msgid "Partner Name Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_name_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_name_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_name_column
msgid "Partner's bank"
msgstr "对方开户行"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__bank_account_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__bank_account_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__bank_account_column
msgid "Partner's bank account"
msgstr "对方银行账号"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__reference_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__reference_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__reference_column
msgid "Reference Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Select a statement file to import mapping"
-msgstr "选择要导入的银行对账单"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__footer_lines_skip_count
+msgid ""
+"Set the Footer lines number.Used in some csv/xlsx file that integrate meta "
+"data inlast lines."
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__header_lines_skip_count
+msgid "Set the Header lines number."
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import__sheet_mapping_id
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import__sheet_mapping_id
msgid "Sheet mapping"
msgstr "表格方案"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_credit_column
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_credit_column
-msgid ""
-"Some statement formats use absolute amount value and indicate signof the "
-"transaction by specifying if it was a debit or a credit one"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__amount_type__simple_value
+msgid "Simple value"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
-msgid "State"
-msgstr "状态"
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_type
+msgid ""
+"Simple value: use igned amount in ammount comlumn\n"
+"Absolute Value: use a same comlumn for debit and credit\n"
+"(absolute value + indicate sign)\n"
+"Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.view_account_journal_form_n43
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.view_account_journal_form_n43
msgid "Statement Import Map"
msgstr "银行对账导入方案"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.actions.act_window,name:account_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings
-#: model:ir.ui.menu,name:account_statement_import_txt_xlsx.menu_statement_import_sheet_mapping
+#. module: account_statement_import_sheet_file
+#: model:ir.actions.act_window,name:account_statement_import_sheet_file.action_statement_import_sheet_report_mappings
+#: model:ir.ui.menu,name:account_statement_import_sheet_file.menu_statement_import_sheet_mapping
msgid "Statement Sheet Mappings"
msgstr "银行对账表格导入方案"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_form
+#. module: account_statement_import_sheet_file
+#: model_terms:ir.ui.view,arch_db:account_statement_import_sheet_file.account_statement_import_form
msgid "TXT/CSV/XLSX mapping:"
msgstr "TXT/CSV/XLSX 表格导入方案:"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__quotechar
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__quotechar
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__quotechar
msgid "Text qualifier"
msgstr "文本限定符"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__float_thousands_sep
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr "千位符"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__timestamp_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_column
msgid "Timestamp Column"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__timestamp_format
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__timestamp_format
msgid "Timestamp Format"
msgstr "日期格式"
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__big5
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__big5
msgid "Traditional Chinese (big5)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: code:addons/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py:0
+#. module: account_statement_import_sheet_file
+#. odoo-python
+#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py:0
#, python-format
msgid "Transaction ID: %s; "
msgstr "交易 ID: %s; "
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16
msgid "UTF-16"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-16-sig
msgid "UTF-16 (with BOM)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8
msgid "UTF-8"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__utf-8-sig
msgid "UTF-8 (with BOM)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__gb18030
msgid "Unified Chinese (gb18030)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__transaction_id_column
-#: model:ir.model.fields,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__transaction_id_column
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,field_description:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__transaction_id_column
msgid "Unique transaction ID column"
msgstr "唯一交易ID列名"
-#. module: account_statement_import_txt_xlsx
-#: model_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.account_statement_import_sheet_mapping_wizard_form
-msgid "Upload Files"
-msgstr "上传文件"
-
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.constraint,message:account_statement_import_txt_xlsx.constraint_account_statement_import_sheet_mapping_check_amount_columns
+#. module: account_statement_import_sheet_file
+#: model:ir.model.constraint,message:account_statement_import_sheet_file.constraint_account_statement_import_sheet_mapping_check_amount_columns
msgid "Use amount_column OR (amount_debit_column AND amount_credit_column)."
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__credit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__credit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_credit_column
+msgid ""
+"Used if amount type is \"Absolute value\"\n"
+"Some statement formats use absolute amount value and indicate sign\n"
+"of the transaction by specifying if it was a debit or a credit one"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__amount_column
+msgid ""
+"Used if amount type is \"Simple value\" or \"Absolute value\"\n"
+"Amount of transaction in journal's currency\n"
+"Some statement formats use credit/debit columns"
+msgstr ""
+
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__credit_value
msgid "Value of debit/credit column that indicates if it's a credit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__debit_value
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__debit_value
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__debit_value
msgid "Value of debit/credit column that indicates if it's a debit"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__iso-8859-1
msgid "Western (Latin-1 / ISO 8859-1)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__file_encoding__windows-1252
msgid "Western (Windows-1252)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields,help:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping__no_header
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields,help:account_statement_import_sheet_file.field_account_statement_import_sheet_mapping__no_header
msgid ""
"When this occurs please indicate the column number in the Columns section "
"instead of the column name, considering that the first column is 0"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__comma
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__dot
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_decimal_sep__none
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__float_thousands_sep__none
msgid "none"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__semicolon
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__semicolon
msgid "semicolon (;)"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__space
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__space
msgid "space"
msgstr ""
-#. module: account_statement_import_txt_xlsx
-#: model:ir.model.fields.selection,name:account_statement_import_txt_xlsx.selection__account_statement_import_sheet_mapping__delimiter__tab
+#. module: account_statement_import_sheet_file
+#: model:ir.model.fields.selection,name:account_statement_import_sheet_file.selection__account_statement_import_sheet_mapping__delimiter__tab
msgid "tab"
msgstr ""
diff --git a/account_statement_import_sheet_file/migrations/16.0.1.0.0/pre-migration.py b/account_statement_import_sheet_file/migrations/16.0.1.0.0/pre-migration.py
new file mode 100644
index 0000000000..4be5b89c08
--- /dev/null
+++ b/account_statement_import_sheet_file/migrations/16.0.1.0.0/pre-migration.py
@@ -0,0 +1,23 @@
+# Copyright 2023 Tecnativa - Víctor Martínez
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+from openupgradelib import openupgrade
+
+_field_renames = [
+ (
+ "account.statement.import.sheet.mapping",
+ "account_statement_import_sheet_mapping",
+ "footer_lines_count",
+ "footer_lines_skip_count",
+ )(
+ "account.statement.import.sheet.mapping",
+ "account_statement_import_sheet_mapping",
+ "column_labels_row",
+ "header_lines_skip_count",
+ )
+]
+
+
+@openupgrade.migrate()
+def migrate(env, version):
+ openupgrade.rename_fields(env, _field_renames)
diff --git a/account_statement_import_sheet_file/models/account_statement_import.py b/account_statement_import_sheet_file/models/account_statement_import.py
index cceb90b8ad..4ad3ef42af 100644
--- a/account_statement_import_sheet_file/models/account_statement_import.py
+++ b/account_statement_import_sheet_file/models/account_statement_import.py
@@ -34,7 +34,7 @@ def _parse_file(self, data_file):
data_file, self.sheet_mapping_id, self.statement_filename
)
except BaseException as exc:
- if self.env.context.get("account_statement_import_txt_xlsx_test"):
+ if self.env.context.get("account_statement_import_sheet_file_test"):
raise
_logger.warning("Sheet parser error", exc_info=True)
raise UserError(_("Bad file/mapping: ") + str(exc)) from exc
diff --git a/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py b/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py
index caefa7ac19..1c1ae32445 100644
--- a/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py
+++ b/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py
@@ -95,10 +95,35 @@ class AccountStatementImportSheetMapping(models.Model):
"transaction amount in original transaction currency from"
),
)
+ amount_type = fields.Selection(
+ selection=[
+ ("simple_value", "Simple value"),
+ ("absolute_value", "Absolute value"),
+ ("distinct_credit_debit", "Distinct Credit/debit Column"),
+ ],
+ string="Amount type",
+ required=True,
+ default="simple_value",
+ help=(
+ "Simple value: use igned amount in ammount comlumn\n"
+ "Absolute Value: use a same comlumn for debit and credit\n"
+ "(absolute value + indicate sign)\n"
+ "Distinct Credit/debit Column: use a distinct comlumn for debit and credit"
+ ),
+ )
+ amount_column = fields.Char(
+ string="Amount column",
+ help=(
+ 'Used if amount type is "Simple value" or "Absolute value"\n'
+ "Amount of transaction in journal's currency\n"
+ "Some statement formats use credit/debit columns"
+ ),
+ )
debit_credit_column = fields.Char(
string="Debit/credit column",
help=(
- "Some statement formats use absolute amount value and indicate sign"
+ 'Used if amount type is "Absolute value"\n'
+ "Some statement formats use absolute amount value and indicate sign\n"
"of the transaction by specifying if it was a debit or a credit one"
),
)
@@ -123,6 +148,18 @@ class AccountStatementImportSheetMapping(models.Model):
bank_account_column = fields.Char(
help="Partner's bank account",
)
+ footer_lines_skip_count = fields.Integer(
+ string="Footer lines skip count",
+ help="Set the Footer lines number."
+ "Used in some csv/xlsx file that integrate meta data in"
+ "last lines.",
+ default="0",
+ )
+ header_lines_skip_count = fields.Integer(
+ string="Header lines skip count",
+ help="Set the Header lines number.",
+ default="0",
+ )
_sql_constraints = [
(
diff --git a/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py b/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py
index deee5fd02d..f45137d25f 100644
--- a/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py
+++ b/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py
@@ -36,21 +36,23 @@ class AccountStatementImportSheetParser(models.TransientModel):
_description = "Bank Statement Import Sheet Parser"
@api.model
- def parse_header(self, data_file, encoding, csv_options):
+ def parse_header(self, data_file, encoding, csv_options, header_lines_skip_count=0):
try:
workbook = xlrd.open_workbook(
file_contents=data_file,
encoding_override=encoding if encoding else None,
)
sheet = workbook.sheet_by_index(0)
- values = sheet.row_values(0)
+ values = sheet.row_values(header_lines_skip_count - 1)
return [str(value) for value in values]
except xlrd.XLRDError:
_logger.error("Pass this method")
data = StringIO(data_file.decode(encoding or "utf-8"))
csv_data = reader(data, **csv_options)
- return list(next(csv_data))
+ csv_data_lst = list(csv_data)
+ header = [value.strip() for value in csv_data_lst[header_lines_skip_count - 1]]
+ return header
@api.model
def parse(self, data_file, mapping, filename):
@@ -171,14 +173,25 @@ def _parse_lines(self, mapping, data_file, currency_code):
header = False
if not mapping.no_header:
if isinstance(csv_or_xlsx, tuple):
- header = [str(value) for value in csv_or_xlsx[1].row_values(0)]
+ header = [
+ str(value).strip()
+ for value in csv_or_xlsx[1].row_values(
+ mapping.header_lines_skip_count - 1
+ )
+ ]
else:
+ for _i in range(mapping.header_lines_skip_count - 1):
+ next(csv_or_xlsx)
header = [value.strip() for value in next(csv_or_xlsx)]
+
+ # NOTE no seria necesario debit_column y credit_column ya que tenemos los
+ # respectivos campos related
for column_name in self._get_column_names():
columns[column_name] = self._get_column_indexes(
header, column_name, mapping
)
- return self._parse_rows(mapping, currency_code, csv_or_xlsx, columns)
+ data = csv_or_xlsx, data_file
+ return self._parse_rows(mapping, currency_code, data, columns)
def _get_values_from_column(self, values, columns, column_name):
indexes = columns[column_name]
@@ -195,25 +208,38 @@ def _get_values_from_column(self, values, columns, column_name):
return " ".join(content_l)
return content_l[0]
- def _parse_rows(self, mapping, currency_code, csv_or_xlsx, columns): # noqa: C901
+ def _parse_rows(self, mapping, currency_code, data, columns): # noqa: C901
+ csv_or_xlsx, data_file = data
+
+ # Get the numbers of rows of the file
+ if isinstance(csv_or_xlsx, tuple):
+ numrows = csv_or_xlsx[1].nrows
+ else:
+ numrows = len(str(data_file.strip()).split("\\n"))
+
+ label_line = mapping.header_lines_skip_count
+ footer_line = numrows - mapping.footer_lines_skip_count
+
if isinstance(csv_or_xlsx, tuple):
- rows = range(1, csv_or_xlsx[1].nrows)
+ rows = range(mapping.header_lines_skip_count, footer_line)
else:
rows = csv_or_xlsx
lines = []
- for row in rows:
+ for index, row in enumerate(rows, label_line):
if isinstance(csv_or_xlsx, tuple):
book = csv_or_xlsx[0]
sheet = csv_or_xlsx[1]
values = []
- for col_index in range(sheet.row_len(row)):
+ for col_index in range(0, sheet.row_len(row)):
cell_type = sheet.cell_type(row, col_index)
cell_value = sheet.cell_value(row, col_index)
if cell_type == xlrd.XL_CELL_DATE:
cell_value = xldate_as_datetime(cell_value, book.datemode)
values.append(cell_value)
else:
+ if index >= footer_line:
+ continue
values = list(row)
timestamp = self._get_values_from_column(
@@ -307,7 +333,7 @@ def _decimal(column_name):
else:
balance = None
- if debit_credit:
+ if debit_credit is not None:
amount = amount.copy_abs()
if debit_credit == mapping.debit_value:
amount = -amount
@@ -429,6 +455,7 @@ def _parse_decimal(self, value, mapping):
return value
elif isinstance(value, float):
return Decimal(value)
+ value = value or "0"
thousands, decimal = mapping._get_float_separators()
value = value.replace(thousands, "")
value = value.replace(decimal, ".")
diff --git a/account_statement_import_sheet_file/readme/CONTRIBUTORS.rst b/account_statement_import_sheet_file/readme/CONTRIBUTORS.rst
index d18dd9a9bb..36fc13e148 100644
--- a/account_statement_import_sheet_file/readme/CONTRIBUTORS.rst
+++ b/account_statement_import_sheet_file/readme/CONTRIBUTORS.rst
@@ -1,9 +1,11 @@
* Alexis de Lattre
* Sebastien BEAU
+* Katherine Zaoral
* Tecnativa (https://www.tecnativa.com)
* Vicent Cubells
* Victor M.M. Torres
+ * Víctor Martínez
* ForgeFlow (https://www.forgeflow.com)
diff --git a/account_statement_import_sheet_file/security/ir.model.access.csv b/account_statement_import_sheet_file/security/ir.model.access.csv
index aa8c3d9555..be92c3a142 100644
--- a/account_statement_import_sheet_file/security/ir.model.access.csv
+++ b/account_statement_import_sheet_file/security/ir.model.access.csv
@@ -2,4 +2,3 @@
access_account_statement_import_sheet_mapping_manager,account.statement.import.sheet.mapping:account.group_account_manager,model_account_statement_import_sheet_mapping,account.group_account_manager,1,1,1,1
access_account_statement_import_sheet_mapping_user,account.statement.import.sheet.mapping:account.group_account_user,model_account_statement_import_sheet_mapping,account.group_account_user,1,0,0,0
access_account_statement_import_sheet_parser,account.statement.import.sheet.parser:account.group_account_user,model_account_statement_import_sheet_parser,account.group_account_user,1,1,1,1
-access_account_statement_import_sheet_mapping_wizard,Full access on account.statement.import.sheet.mapping.wizard,model_account_statement_import_sheet_mapping_wizard,account.group_account_user,1,1,1,1
diff --git a/account_statement_import_sheet_file/static/description/index.html b/account_statement_import_sheet_file/static/description/index.html
index 1d6a454114..dcda680a6b 100644
--- a/account_statement_import_sheet_file/static/description/index.html
+++ b/account_statement_import_sheet_file/static/description/index.html
@@ -367,7 +367,7 @@ Bank Statement TXT/CSV/XLSX Import
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-
+
This module allows you to import any TXT/CSV or XLSX file in Odoo as bank
statements.
Table of contents
@@ -421,7 +421,7 @@
Bugs are tracked on GitHub Issues .
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
-feedback .
+feedback .
Do not contact contributors directly about support or help with technical issues.
diff --git a/account_statement_import_sheet_file/tests/__init__.py b/account_statement_import_sheet_file/tests/__init__.py
index 426d68385d..87f2afc5f8 100644
--- a/account_statement_import_sheet_file/tests/__init__.py
+++ b/account_statement_import_sheet_file/tests/__init__.py
@@ -1,3 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-from . import test_account_statement_import_txt_xlsx
+from . import test_account_statement_import_sheet_file
diff --git a/account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv b/account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv
new file mode 100644
index 0000000000..0b38621283
--- /dev/null
+++ b/account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv
@@ -0,0 +1,10 @@
+Bank code : 1001010101,Agency Code : 10000,Download start date : 01/04/2020,Download end date : 02/04/2020,,
+Account Number : 08088804068,Account Name : Account Owner,: EUR,,,
+,,,,,
+Balance at end of period,,,,"+31070,11",
+Date,Operation Number,Label,Debit,Credit,Detail
+01/04/20,UNIQUE OP 1,LABEL 1,"-50,00",,DETAILS 1
+01/04/20,UNIQUE OP 2,LABEL 2,"-100,00",,CLIENTS X
+02/04/20,UNIQUE OP 3,LABEL 3,"-80,68",,DETAILS 2
+02/04/20,UNIQUE OP 4,LABEL 4,,"1300,00",DETAILS 3
+Balance at start of period,,,,"+30000,77",
diff --git a/account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.xlsx b/account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..c7ae2b92e9c730a916127cf5e6b1c1f5a6decfe1
GIT binary patch
literal 5355
zcmaJ_2RK~a*4EqTMxyr`1|eY(L~n^6ogj=h3?qanQ9l#WGkWhKM3-RHi0HjbL_`oJ
zqmzts$M@am#-IP*tn{x`ITGD*Yna7m
zEcH80t!0*MidY&W?LXT4hr3zb$3M4UJ4BQoE;ub
zyQXcSyV3~JhR>y)kdebdEaV`gl8$xt%kok
z^OAl;q84|CO1%56-)XXal;24KM^BrW1X33IdJ(&9Sv(x<@BbATD(oA+*g0TuS34NY
zRm9f~8e`b&J}*YyawJ5s;0CgGVNS+3iA}(9Gw*VS-w<%NuP)XIVS#~uqFMEg)AQx_
zIiA*T5Bf_K{1|LZT%d`jH-9I*Nj!j`^v&{x)j+F!g+JYj+48kj10lpLp>VSqDkGZ;>}cg
zOLLCABKbg_HpRaR5!$_|Oz!Y;o0*~$+`I(wQgUhL_qD;#Pg!AiB7I9@j$hHk8+)UZ
z#UW0V(=IAN)x*l3V&@4uUANU+Z6rw>h67G2DN?J?Wm^#}+DwbSVvIhmveeDA4sP>86^TG=zwBJe#=_k#}kp!MBLO&C>3^~CxE$zC`wm`
zAHkbv^`+9Vc}^(4=V_nVh(RII+&j2zH!6(gI%X$`CFXfA
zcwM#MV+8PaULXC|2E1MYn|57ys?jRm$f<)-daLPf&Svg)K&$tkgc
zZp1rFe9NJ1&M5uHRtF)z@o5OOgyQs|_ByrG*xf!pP=ap_`g68F)%0{HAIegKEW64`
zWt&7tCxApuS4GR0tpoFQ=~S9Pi#wa^8aUP_f*uw9DMHHx_=%pu)rQN1zC&qaH*B@E
zu${b=PT$Tw+g?e$Fh8$bv$*V01;-A@8RTqBoVtMy$0F+>6#=LnK{L^ofkew*bm2SE5h
z?~8pBnxAUs*l3}lvQLI3Vd#w94QTVJuUo2>UA>gy)za&FW@9d#P->9L8(jHG5&X5N
z#7v2kz8y8P7&xJmEmb_tzOF&%2bq2Xc=1R=^_EM50Fbh4mY6
z*qEqvj>}a06_aTme=!i&IGRD0ZrbBqOH|Kn-~uEvxeSk6I96W!3R}N1`&uVvXgXs3
z?WtD1o5wA?Q2haByTb*Gf>iwh0SHhcYF2$X9c+}
zopR+Qli{-c^L&Oo`C8x;A0Az$f9;5Y~XzDz>
zNgF5@DYwJ$z&0c-T6D`4ankAOOZ^47gFEO+Bt+vNNbAviNIA@?mN$pwi$yol@vHLG
zYExa^1j#!A6L4TodWB%RBD%lmc!K5QG>2Sa!=E!wBFI@eC)0H!mx?W&Py7n9+mHm&
zaHgk@v{yM-@D@E#vM_8zPfR)=>bH%x%EweClBJwCBOdo5Du&>TXT0y}F9qcIO1=
z&lB8Q4ASKZ1aOmXQRlX_>d$+>oY-S(8ByxRdnr=h*KDi)?fDJOwpZneeM;*Y+W5@NZV2!?2IhoH;rIPR~jN(5G9c=
zQ;Ho*`TB-TS~5J7YNd^1sW1wBU1k46hswd@S>>;!(FEoo208OPlWox!4Hk4|TlO)^
zPtQ`Oj6eI&DvpU~-r{|u)DEGXdfR6OCf2M{3Rvex8Fn?rZR^rx$lJ|uu=JobKPheEr^(1RXj|uoK-RxV7_uKB2J4&lX|kspUGY_1KgQtZ
zAAC>36~7e$rHD^3d*7SpohbmZPDz_;&EX5&rMs(vud-1XgDXC6Bz}7Zl2q(y?EKR!
zsrXbv2PTEDa`AC}U4gqBRtxumBthho0#2(k4|+FBig5Gm=eu!6=iFR_PZpQcbIgi<
z4BtyX>UAxdZ=zy!+46A+cG_yVc{`w1Yj@`aHO%Usli^ctohJ6Pas44%9$Zb_Gvg)W
zY?LiuSYt!h=fka&VhfviX!f=McjXN_0kgM@F=nfN+reoZicdNOOGZTzTciX!6UbG{
z;@WR-m`>-k8Db~qBdZnM{ZtRDiY0ew46E}h|&gT!4Qa#zHCah;nZ_%U5|omU@$
zGC^^RRcL5QzwpTwx>52a;~qW76$+bui*cjYu|+s^u-(`LH97mOXl9w98tZ}`=^#7nNuJgN{({+9|>@9*8WJ5O#e{iKg#;DhWtlmC){;?D@Oho`jlSn=$$6bg1(nyzN;#B>4kO;E{nZxGD^O5PjR*i%88!_vME@g6}vV4Mwj(0vJEg`4hw>~o(
z59Ti{I`PI;vD3ap(ai*3)f6?a-26A|QHid2Ji}vqoj%VTy(i>J-
z;Mche={0+Go>x7Xrl7oE;GZMbLqR$SXG@S6HHfoY6cQCD-go=)Rqm?-7wZgnUu9U1
zf#f67$@>sC^kV>wbiP6_X!C?;Z})YYYDMM3#{j&G$mnkWcszz(H}4;HHSphZ$jKJ&
zU~l*k?(FXPw<^lIcNexK21KDNs{*WEWZl*dPvnp{AQcS#exr9Ww?m!-=FaY4swKi)45nHaDWxk*54eV3KkCh)LDM
z#4|*Ncb8$(-L=t1$UrJ6RuAA`z^r%HZ=GQdZo5GYVa8XQ;|_i)bOj#t-bMeK7FnQy
zNM0BXFaJIHESs~PrR3sj(D*T`cSbUQ+uxrau)^phL$_YZug&p*)`JbDaNWy!z
z;#B!GiTF2~Q~T0xxLGoH
z^{K_e+cWc7NYem&LZ`{NE%7)Q`e_)ye8aDGz&JyFmv}m5yX~j=njRPBe4HlagNMQV+Xvvqg#JsyPa_8eQ`?5?AcoQo-r%64Wl3Kl}+W%HF)_<$-sRkUy#iBsf?%AsF)U-f_ur?5M
zzSV>wx=1lle>9RG8)d0KrWp0*DBF5?Tm(5QUiX4>-k~wTj{S5nfK%w5=PZLPeS@;3
z58zcr9ot!C1#*9Wcs_T_PfAX1=lTAOPjxX^@y=Xx_6L)jg6*1>b+Y@*fxd#%g&G2x
zwB536y^OT8yRwH@0)r7u1_`7h2g?WsNhF^ifsjFxTS`{1x{z4EZ*EX}UAUvDBY@J`
zaGEuOutQMK;SEkNyC;@?l#)^uj*8+wvxvvl;zGsnLL?r8h~qlR=kO}MFkCYaNYu1L
zq-k2mF(j33LQW?2lgg9jK68Wp$Bo~+UxD0-x=%WAK*`@{Q2ejW~9R)0%aBUxQ69v3h|T$KVo{lU~)
zb0P0Zk_05gcX+SIu-AMXJM$kBG`dGBh(Pq#pj%UPeI(~!@R^0}jjd(gSxe=~1#lO>
zg74P7(H8B6%Jf~a0LXV(Z+RI++Eg;^sZvDwy9hg#BfACJJT|UD{HmAftM+z|L+RCs
zM>r`G!tT^E3;ZY}?cE}Zd(=e2-+S;%RO@TF#e7dFv2d-aLl&4g295iw9t=+j0v8~l
z{sEv01&npa`ntyLvQ**hN8Hw+hstw!c5K^CS-|*#M!=D!Exv!OCIc&2H)X8Y7S;{A
zA8j^v=8D#na1aDg7n=%(>%mw(KD!3zGR?g*@+{R|!&JGoQ&lV^o^kjAw#%*f@H1xi
za<;3Pk3O@UIq$cwPDL)A5$Rn7K2kW-j|Vak(s~j1UuM&$x}UTLTr?Aa7eM20+tYyv5E`_=U;ox0{j2~
literal 0
HcmV?d00001
diff --git a/account_statement_import_sheet_file/tests/test_account_statement_import_txt_xlsx.py b/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py
similarity index 74%
rename from account_statement_import_sheet_file/tests/test_account_statement_import_txt_xlsx.py
rename to account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py
index 563d9058b6..df206bc99b 100644
--- a/account_statement_import_sheet_file/tests/test_account_statement_import_txt_xlsx.py
+++ b/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py
@@ -8,9 +8,10 @@
from odoo import fields
from odoo.exceptions import UserError
from odoo.tests import common
+from odoo.tools import float_round
-class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
+class TestAccountStatementImportSheetFile(common.TransactionCase):
def setUp(self):
super().setUp()
@@ -28,7 +29,7 @@ def setUp(self):
# Activate EUR for unit test, by default is not active
self.currency_eur.active = True
self.sample_statement_map = self.env.ref(
- "account_statement_import_txt_xlsx.sample_statement_map"
+ "account_statement_import_sheet_file.sample_statement_map"
)
self.AccountJournal = self.env["account.journal"]
self.AccountBankStatement = self.env["account.bank.statement"]
@@ -36,16 +37,12 @@ def setUp(self):
self.AccountStatementImportSheetMapping = self.env[
"account.statement.import.sheet.mapping"
]
- self.AccountStatementImportSheetMappingWizard = self.env[
- "account.statement.import.sheet.mapping.wizard"
- ]
+ self.AccountStatementImportWizard = self.env["account.statement.import"]
self.suspense_account = self.env["account.account"].create(
{
"code": "987654",
"name": "Suspense Account",
- "user_type_id": self.env.ref(
- "account.data_account_type_current_assets"
- ).id,
+ "account_type": "asset_current",
}
)
@@ -76,7 +73,7 @@ def test_import_csv_file(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -102,7 +99,7 @@ def test_import_empty_csv_file(self):
)
with self.assertRaises(UserError):
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 0)
@@ -126,7 +123,7 @@ def test_import_xlsx_file(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -152,57 +149,11 @@ def test_import_empty_xlsx_file(self):
)
with self.assertRaises(UserError):
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 0)
- def test_mapping_import_wizard_xlsx(self):
- with common.Form(self.AccountStatementImportSheetMappingWizard) as form:
- attachment = self.env["ir.attachment"].create(
- {
- "name": "fixtures/empty_statement_en.xlsx",
- "datas": self._data_file("fixtures/empty_statement_en.xlsx"),
- }
- )
- form.attachment_ids.add(attachment)
- self.assertEqual(len(form.header), 90)
- self.assertEqual(
- len(
- self.AccountStatementImportSheetMappingWizard.with_context(
- header=form.header,
- ).statement_columns()
- ),
- 7,
- )
- form.timestamp_column = "Date"
- form.amount_column = "Amount"
- wizard = form.save()
- wizard.import_mapping()
-
- def test_mapping_import_wizard_csv(self):
- with common.Form(self.AccountStatementImportSheetMappingWizard) as form:
- attachment = self.env["ir.attachment"].create(
- {
- "name": "fixtures/empty_statement_en.csv",
- "datas": self._data_file("fixtures/empty_statement_en.csv"),
- }
- )
- form.attachment_ids.add(attachment)
- self.assertEqual(len(form.header), 90)
- self.assertEqual(
- len(
- self.AccountStatementImportSheetMappingWizard.with_context(
- header=form.header,
- ).statement_columns()
- ),
- 7,
- )
- form.timestamp_column = "Date"
- form.amount_column = "Amount"
- wizard = form.save()
- wizard.import_mapping()
-
def test_original_currency(self):
journal = self.AccountJournal.create(
{
@@ -222,7 +173,7 @@ def test_original_currency(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -232,7 +183,8 @@ def test_original_currency(self):
self.assertEqual(line.currency_id, self.currency_usd)
self.assertEqual(line.amount, 1525.0)
self.assertEqual(line.foreign_currency_id, self.currency_eur)
- self.assertEqual(line.amount_currency, 1000.0)
+ line_amount_currency = float_round(line.amount_currency, precision_digits=1)
+ self.assertEqual(line_amount_currency, 1000.0)
def test_original_currency_no_header(self):
no_header_statement_map = self.AccountStatementImportSheetMapping.create(
@@ -240,6 +192,7 @@ def test_original_currency_no_header(self):
"name": "Sample Statement",
"float_thousands_sep": "comma",
"float_decimal_sep": "dot",
+ "header_lines_skip_count": 0,
"delimiter": "comma",
"quotechar": '"',
"timestamp_format": "%m/%d/%Y",
@@ -271,7 +224,7 @@ def test_original_currency_no_header(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -302,7 +255,7 @@ def test_original_currency_empty(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -338,7 +291,7 @@ def test_multi_currency(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -374,7 +327,7 @@ def test_balance(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -412,7 +365,7 @@ def test_debit_credit(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -450,7 +403,7 @@ def test_debit_credit_amount(self):
}
)
wizard.with_context(
- account_statement_import_txt_xlsx_test=True
+ account_statement_import_sheet_file_test=True
).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1)
@@ -458,3 +411,97 @@ def test_debit_credit_amount(self):
self.assertEqual(statement.balance_start, 10.0)
self.assertEqual(statement.balance_end_real, 1510.0)
self.assertEqual(statement.balance_end, 1510.0)
+
+ def test_metadata_separated_debit_credit_csv(self):
+ journal = self.AccountJournal.create(
+ {
+ "name": "Bank",
+ "type": "bank",
+ "code": "BANK",
+ "currency_id": self.currency_usd.id,
+ "suspense_account_id": self.suspense_account.id,
+ }
+ )
+ statement_map = self.sample_statement_map.copy(
+ {
+ "footer_lines_skip_count": 1,
+ "header_lines_skip_count": 5,
+ "amount_column": None,
+ "partner_name_column": None,
+ "bank_account_column": None,
+ "float_thousands_sep": "none",
+ "float_decimal_sep": "comma",
+ "timestamp_format": "%m/%d/%y",
+ "original_currency_column": None,
+ "original_amount_column": None,
+ "amount_type": "distinct_credit_debit",
+ "amount_debit_column": "Debit",
+ "amount_credit_column": "Credit",
+ }
+ )
+ data = self._data_file("fixtures/meta_data_separated_credit_debit.csv", "utf-8")
+ wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create(
+ {
+ "statement_filename": "fixtures/meta_data_separated_credit_debit.csv",
+ "statement_file": data,
+ "sheet_mapping_id": statement_map.id,
+ }
+ )
+ wizard.with_context(
+ journal_id=journal.id,
+ account_bank_statement_import_txt_xlsx_test=True,
+ ).import_file_button()
+ statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
+ self.assertEqual(len(statement), 1)
+ self.assertEqual(len(statement.line_ids), 4)
+ line1 = statement.line_ids.filtered(lambda x: x.payment_ref == "LABEL 1")
+ line4 = statement.line_ids.filtered(lambda x: x.payment_ref == "LABEL 4")
+ self.assertEqual(line1.amount, 50)
+ self.assertEqual(line4.amount, -1300)
+
+ def test_metadata_separated_debit_credit_xlsx(self):
+ journal = self.AccountJournal.create(
+ {
+ "name": "Bank",
+ "type": "bank",
+ "code": "BANK",
+ "currency_id": self.currency_usd.id,
+ "suspense_account_id": self.suspense_account.id,
+ }
+ )
+ statement_map = self.sample_statement_map.copy(
+ {
+ "footer_lines_skip_count": 1,
+ "header_lines_skip_count": 5,
+ "amount_column": None,
+ "partner_name_column": None,
+ "bank_account_column": None,
+ "float_thousands_sep": "none",
+ "float_decimal_sep": "comma",
+ "timestamp_format": "%m/%d/%y",
+ "original_currency_column": None,
+ "original_amount_column": None,
+ "amount_type": "distinct_credit_debit",
+ "amount_debit_column": "Debit",
+ "amount_credit_column": "Credit",
+ }
+ )
+ data = self._data_file("fixtures/meta_data_separated_credit_debit.xlsx")
+ wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create(
+ {
+ "statement_filename": "fixtures/meta_data_separated_credit_debit.xlsx",
+ "statement_file": data,
+ "sheet_mapping_id": statement_map.id,
+ }
+ )
+ wizard.with_context(
+ journal_id=journal.id,
+ account_bank_statement_import_txt_xlsx_test=True,
+ ).import_file_button()
+ statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
+ self.assertEqual(len(statement), 1)
+ self.assertEqual(len(statement.line_ids), 4)
+ line1 = statement.line_ids.filtered(lambda x: x.payment_ref == "LABEL 1")
+ line4 = statement.line_ids.filtered(lambda x: x.payment_ref == "LABEL 4")
+ self.assertEqual(line1.amount, 50)
+ self.assertEqual(line4.amount, -1300)
diff --git a/account_statement_import_sheet_file/views/account_statement_import.xml b/account_statement_import_sheet_file/views/account_statement_import.xml
index 4ef359aa77..f9697c3ca8 100644
--- a/account_statement_import_sheet_file/views/account_statement_import.xml
+++ b/account_statement_import_sheet_file/views/account_statement_import.xml
@@ -10,7 +10,7 @@
account.statement.import
diff --git a/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml b/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml
index 62d617dd0b..3165de06d3 100644
--- a/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml
+++ b/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml
@@ -63,10 +63,14 @@
attrs="{'required': [('debit_credit_column', '!=', False)]}"
/>
+
+
+
+
-
-
+
+
Add the column names or column number (when the file has no header).
@@ -77,13 +81,38 @@
-
-
-
+
+
+
+
-
+
diff --git a/account_statement_import_sheet_file/wizards/__init__.py b/account_statement_import_sheet_file/wizards/__init__.py
deleted file mode 100644
index a807f2d62c..0000000000
--- a/account_statement_import_sheet_file/wizards/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-
-from . import account_statement_import_sheet_mapping_wizard
diff --git a/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.py b/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.py
deleted file mode 100644
index d1314edb76..0000000000
--- a/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.py
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright 2019 ForgeFlow, S.L.
-# Copyright 2020 CorporateHub (https://corporatehub.eu)
-# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-
-import json
-from base64 import b64decode
-from os import path
-
-from odoo import _, api, fields, models
-
-
-class AccountStatementImportSheetMappingWizard(models.TransientModel):
- _name = "account.statement.import.sheet.mapping.wizard"
- _description = "Bank Statement Import Sheet Mapping Wizard"
- _inherit = ["multi.step.wizard.mixin"]
-
- attachment_ids = fields.Many2many(
- comodel_name="ir.attachment",
- string="Files",
- required=True,
- relation="account_statement_import_sheet_mapping_wiz_attachment_rel",
- )
- header = fields.Char()
- file_encoding = fields.Selection(
- string="Encoding",
- selection=lambda self: self._selection_file_encoding(),
- )
- delimiter = fields.Selection(
- selection=lambda self: self._selection_delimiter(),
- )
- quotechar = fields.Char(
- string="Text qualifier",
- size=1,
- )
- timestamp_column = fields.Char()
- currency_column = fields.Char(
- help=(
- "In case statement is multi-currency, column to get currency of "
- "transaction from"
- ),
- )
- amount_column = fields.Char(
- help="Amount of transaction in journal's currency",
- )
- amount_debit_column = fields.Char(
- string="Debit amount column",
- help="Debit amount of transaction in journal's currency",
- )
- amount_credit_column = fields.Boolean(
- string="Credit amount column",
- help="Credit amount of transaction in journal's currency",
- )
- balance_column = fields.Char(
- help="Balance after transaction in journal's currency",
- )
- original_currency_column = fields.Char(
- help=(
- "In case statement provides original currency for transactions "
- "with automatic currency conversion, column to get original "
- "currency of transaction from"
- ),
- )
- original_amount_column = fields.Char(
- help=(
- "In case statement provides original currency for transactions "
- "with automatic currency conversion, column to get original "
- "transaction amount in original transaction currency from"
- ),
- )
- debit_credit_column = fields.Char(
- string="Debit/credit column",
- help=(
- "Some statement formats use absolute amount value and indicate sign"
- "of the transaction by specifying if it was a debit or a credit one"
- ),
- )
- debit_value = fields.Char(
- help="Value of debit/credit column that indicates if it's a debit",
- default="D",
- )
- credit_value = fields.Char(
- help="Value of debit/credit column that indicates if it's a credit",
- default="C",
- )
- transaction_id_column = fields.Char(
- string="Unique transaction ID column",
- )
- description_column = fields.Char()
- notes_column = fields.Char()
- reference_column = fields.Char()
- partner_name_column = fields.Char()
- bank_name_column = fields.Char(
- help="Partner's bank",
- )
- bank_account_column = fields.Char(
- help="Partner's bank account",
- )
-
- @api.model
- def _selection_file_encoding(self):
- return (
- self.env["account.statement.import.sheet.mapping"]
- ._fields["file_encoding"]
- .selection
- )
-
- @api.model
- def _selection_delimiter(self):
- return (
- self.env["account.statement.import.sheet.mapping"]
- ._fields["delimiter"]
- .selection
- )
-
- @api.onchange("attachment_ids")
- def _onchange_attachment_ids(self):
- Parser = self.env["account.statement.import.sheet.parser"]
- Mapping = self.env["account.statement.import.sheet.mapping"]
- if not self.attachment_ids:
- return
- csv_options = {}
- if self.delimiter:
- csv_options["delimiter"] = Mapping._decode_column_delimiter_character(
- self.delimiter
- )
- if self.quotechar:
- csv_options["quotechar"] = self.quotechar
- header = []
- for data_file in self.attachment_ids:
- header += Parser.parse_header(
- b64decode(data_file.datas), self.file_encoding, csv_options
- )
- header = list(set(header))
- self.header = json.dumps(header)
-
- @api.model
- def statement_columns(self):
- header = self.env.context.get("header")
- if not header:
- return []
- return [(x, x) for x in json.loads(header)]
-
- def _get_mapping_values(self):
- """Hook for extension"""
- self.ensure_one()
- filename = "& ".join(self.attachment_ids.mapped("name"))
- return {
- "name": _("Mapping from %s") % path.basename(filename),
- "float_thousands_sep": "comma",
- "float_decimal_sep": "dot",
- "file_encoding": self.file_encoding,
- "delimiter": self.delimiter,
- "quotechar": self.quotechar,
- "timestamp_format": "%d/%m/%Y",
- "timestamp_column": self.timestamp_column,
- "currency_column": self.currency_column,
- "amount_column": self.amount_column,
- "balance_column": self.balance_column,
- "original_currency_column": self.original_currency_column,
- "original_amount_column": self.original_amount_column,
- "debit_credit_column": self.debit_credit_column,
- "debit_value": self.debit_value,
- "credit_value": self.credit_value,
- "transaction_id_column": self.transaction_id_column,
- "description_column": self.description_column,
- "notes_column": self.notes_column,
- "reference_column": self.reference_column,
- "partner_name_column": self.partner_name_column,
- "bank_name_column": self.bank_name_column,
- "bank_account_column": self.bank_account_column,
- }
-
- def import_mapping(self):
- self.ensure_one()
- mapping = self.env["account.statement.import.sheet.mapping"].create(
- self._get_mapping_values()
- )
- return {
- "type": "ir.actions.act_window",
- "name": _("Imported Mapping"),
- "res_model": "account.statement.import.sheet.mapping",
- "res_id": mapping.id,
- "view_mode": "form",
- "view_id": False,
- "target": "current",
- }
diff --git a/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.xml b/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.xml
deleted file mode 100644
index dc5021a731..0000000000
--- a/account_statement_import_sheet_file/wizards/account_statement_import_sheet_mapping_wizard.xml
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
- account.statement.import.sheet.mapping.wizard.form
- account.statement.import.sheet.mapping.wizard
- primary
-
-
-
- Select a statement file to import mapping
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Import Mapping
- account.statement.import.sheet.mapping.wizard
-
- form
- new
-
-
diff --git a/requirements.txt b/requirements.txt
index ddf34beb72..d3433a96a0 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,2 +1,4 @@
# generated from manifests external_dependencies
+chardet
ofxparse
+xlrd
diff --git a/setup/account_statement_import_sheet_file/odoo/addons/account_statement_import_sheet_file b/setup/account_statement_import_sheet_file/odoo/addons/account_statement_import_sheet_file
new file mode 120000
index 0000000000..dcfeb61ead
--- /dev/null
+++ b/setup/account_statement_import_sheet_file/odoo/addons/account_statement_import_sheet_file
@@ -0,0 +1 @@
+../../../../account_statement_import_sheet_file
\ No newline at end of file
diff --git a/setup/account_statement_import_sheet_file/setup.py b/setup/account_statement_import_sheet_file/setup.py
new file mode 100644
index 0000000000..28c57bb640
--- /dev/null
+++ b/setup/account_statement_import_sheet_file/setup.py
@@ -0,0 +1,6 @@
+import setuptools
+
+setuptools.setup(
+ setup_requires=['setuptools-odoo'],
+ odoo_addon=True,
+)