mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[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
This commit is contained in:
committed by
Rocío Vega
parent
19f4b514db
commit
b949a64ea2
@@ -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 <https://github.com/OCA/bank-statement-import/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 <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_txt_xlsx%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_sheet_file%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
@@ -84,11 +84,12 @@ Contributors
|
||||
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Sebastien BEAU <sebastien.beau@akretion.com>
|
||||
* Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
|
||||
* 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 <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-alexey-pelykh|
|
||||
|
||||
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_txt_xlsx>`_ project on GitHub.
|
||||
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_sheet_file>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
from . import models
|
||||
from . import wizards
|
||||
|
||||
@@ -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",
|
||||
],
|
||||
}
|
||||
|
||||
@@ -7,12 +7,15 @@
|
||||
<odoo noupdate="1">
|
||||
<record id="sample_statement_map" model="account.statement.import.sheet.mapping">
|
||||
<field name="name">Sample Statement</field>
|
||||
<field name="footer_lines_skip_count">0</field>
|
||||
<field name="header_lines_skip_count">1</field>
|
||||
<field name="float_thousands_sep">comma</field>
|
||||
<field name="float_decimal_sep">dot</field>
|
||||
<field name="delimiter">comma</field>
|
||||
<field name="quotechar">"</field>
|
||||
<field name="timestamp_format">%m/%d/%Y</field>
|
||||
<field name="timestamp_column">Date</field>
|
||||
<field name="amount_type">simple_value</field>
|
||||
<field name="amount_column">Amount</field>
|
||||
<field name="original_currency_column">Currency</field>
|
||||
<field name="original_amount_column">Amount Currency</field>
|
||||
|
||||
@@ -0,0 +1,563 @@
|
||||
# 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-19 08:42+0000\n"
|
||||
"PO-Revision-Date: 2023-10-19 08:42+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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 amount column\n"
|
||||
"Absolute Value: use a same column for debit and credit\n"
|
||||
"(absolute value + indicate sign)\n"
|
||||
"Distinct Credit/debit Column: use a distinct column 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
|
||||
#. odoo-python
|
||||
#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py:0
|
||||
#, python-format
|
||||
msgid "Use amount_column if you have set Amount type = 'Single value'"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_sheet_file
|
||||
#. odoo-python
|
||||
#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Use amount_debit_column and amount_credit_column if you have set Amount type"
|
||||
" = 'Distinct Credit/debit Column'"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_sheet_file
|
||||
#. odoo-python
|
||||
#: code:addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py:0
|
||||
#, python-format
|
||||
msgid "Use debit_credit_column if you have set Amount type = 'Absolute value'"
|
||||
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 ""
|
||||
@@ -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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
@@ -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 <pere@aquarian.tech>\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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> indicate the column number in the "
|
||||
"Columns section. The first column is 0."
|
||||
@@ -47,258 +49,222 @@ msgstr ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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_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 "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
|
||||
#. 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 ""
|
||||
"Some statement formats use absolute amount value and indicate signof the "
|
||||
"transaction by specifying if it was a debit or a credit one"
|
||||
"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 "Mapeo de importación de extracto"
|
||||
|
||||
#. 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_terms:ir.ui.view,arch_db:account_statement_import_txt_xlsx.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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
#, 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
|
||||
#, 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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__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"
|
||||
|
||||
@@ -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 <ibuioli@gmail.com>\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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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_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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> indicate the column number in the "
|
||||
"Columns section. The first column is 0."
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 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 ""
|
||||
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 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 "El fichero no contiene una línea de cabecera"
|
||||
|
||||
#. 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__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__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_wizard__header
|
||||
msgid "Header"
|
||||
msgstr "Cabecera"
|
||||
|
||||
#. 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 ""
|
||||
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
|
||||
#, 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
|
||||
#. 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 ""
|
||||
"Some statement formats use absolute amount value and indicate signof the "
|
||||
"transaction by specifying if it was a debit or a credit one"
|
||||
"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 "Mapeo de Importación de Estados"
|
||||
|
||||
#. 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_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_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_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_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 "Columna de marca de tiempo"
|
||||
|
||||
#. 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_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_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_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_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_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_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_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_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_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,field_description:account_statement_import_txt_xlsx.field_account_statement_import_sheet_mapping_wizard__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. 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 "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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Timestamp Column"
|
||||
#. 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,field_description:account_statement_import_txt_xlsx.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
|
||||
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
|
||||
#, 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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__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 ""
|
||||
"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_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 "tabulación"
|
||||
|
||||
@@ -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 <francesco.foresti@ooops404.com>\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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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"
|
||||
|
||||
@@ -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 <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>\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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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"
|
||||
#. 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,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 ""
|
||||
|
||||
#. 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_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__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__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__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 "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_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"
|
||||
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"
|
||||
|
||||
@@ -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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
|
||||
#. 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
|
||||
#: 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,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 ""
|
||||
|
||||
#. 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 ""
|
||||
msgstr "Última Atualização Feita em"
|
||||
|
||||
#. 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"
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Some statement formats use absolute amount value and indicate signof the "
|
||||
"transaction by specifying if it was a debit or a credit one"
|
||||
"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: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
|
||||
#. 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"
|
||||
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 ""
|
||||
|
||||
@@ -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 <dong@freshoo.cn>\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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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 ""
|
||||
"<span class=\"fa fa-info-circle\"/> 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_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"
|
||||
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 ""
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright 2023 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
# Add amount_type column and set values to keep the same functionality as in v15
|
||||
if not openupgrade.column_exists(
|
||||
env.cr, "account_statement_import_sheet_mapping", "amount_type"
|
||||
):
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
ALTER TABLE account_statement_import_sheet_mapping
|
||||
ADD COLUMN IF NOT EXISTS amount_type VARCHAR;
|
||||
""",
|
||||
)
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
UPDATE account_statement_import_sheet_mapping
|
||||
SET amount_type = 'simple_value'
|
||||
WHERE amount_column IS NOT NULL
|
||||
""",
|
||||
)
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
UPDATE account_statement_import_sheet_mapping
|
||||
SET amount_type = 'distinct_credit_debit'
|
||||
WHERE amount_debit_column != amount_credit_column
|
||||
AND amount_debit_column IS NOT NULL
|
||||
AND amount_credit_column IS NOT NULL
|
||||
""",
|
||||
)
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
UPDATE account_statement_import_sheet_mapping
|
||||
SET amount_type = 'absolute_value'
|
||||
WHERE debit_credit_column IS NOT NULL
|
||||
""",
|
||||
)
|
||||
@@ -34,7 +34,7 @@ class AccountStatementImport(models.TransientModel):
|
||||
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
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
# Copyright 2020 CorporateHub (https://corporatehub.eu)
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class AccountStatementImportSheetMapping(models.Model):
|
||||
@@ -95,10 +96,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 amount column\n"
|
||||
"Absolute Value: use a same column for debit and credit\n"
|
||||
"(absolute value + indicate sign)\n"
|
||||
"Distinct Credit/debit Column: use a distinct column 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,19 +149,47 @@ 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 = [
|
||||
(
|
||||
"check_amount_columns",
|
||||
(
|
||||
"CHECK("
|
||||
"amount_column IS NULL "
|
||||
"OR (amount_debit_column IS NULL AND amount_credit_column IS NULL)"
|
||||
")"
|
||||
),
|
||||
"Use amount_column OR (amount_debit_column AND amount_credit_column).",
|
||||
),
|
||||
]
|
||||
@api.constrains(
|
||||
"amount_type",
|
||||
"amount_column",
|
||||
"debit_credit_column",
|
||||
"amount_debit_column",
|
||||
"amount_credit_column",
|
||||
)
|
||||
def _check_amount_type(self):
|
||||
for item in self:
|
||||
if item.amount_type == "simple_value" and not item.amount_column:
|
||||
raise ValidationError(
|
||||
_("Use amount_column if you have set Amount type = 'Single value'")
|
||||
)
|
||||
elif item.amount_type == "absolute_value" and not item.debit_credit_column:
|
||||
raise ValidationError(
|
||||
_(
|
||||
"Use debit_credit_column if you have set Amount type = 'Absolute value'"
|
||||
)
|
||||
)
|
||||
elif item.amount_type == "distinct_credit_debit" and (
|
||||
not item.amount_debit_column or not item.amount_credit_column
|
||||
):
|
||||
raise ValidationError(
|
||||
_(
|
||||
"Use amount_debit_column and amount_credit_column if you "
|
||||
"have set Amount type = 'Distinct Credit/debit Column'"
|
||||
)
|
||||
)
|
||||
|
||||
@api.onchange("float_thousands_sep")
|
||||
def onchange_thousands_separator(self):
|
||||
|
||||
@@ -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):
|
||||
@@ -170,15 +172,24 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
||||
csv_or_xlsx = reader(StringIO(decoded_file), **csv_options)
|
||||
header = False
|
||||
if not mapping.no_header:
|
||||
header_line = mapping.header_lines_skip_count - 1
|
||||
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(header_line)
|
||||
]
|
||||
else:
|
||||
[next(csv_or_xlsx) for _i in range(header_line)]
|
||||
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 +206,38 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
||||
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):
|
||||
rows = range(1, csv_or_xlsx[1].nrows)
|
||||
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(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 +331,7 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
||||
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 +453,7 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
||||
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, ".")
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Sebastien BEAU <sebastien.beau@akretion.com>
|
||||
* Katherine Zaoral
|
||||
* Tecnativa (https://www.tecnativa.com)
|
||||
|
||||
* Vicent Cubells
|
||||
* Victor M.M. Torres
|
||||
* Víctor Martínez
|
||||
|
||||
* ForgeFlow (https://www.forgeflow.com)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_txt_xlsx"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/bank-statement-import-16-0/bank-statement-import-16-0-account_statement_import_txt_xlsx"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/174/16.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_sheet_file"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/bank-statement-import-16-0/bank-statement-import-16-0-account_statement_import_sheet_file"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/174/16.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows you to import any TXT/CSV or XLSX file in Odoo as bank
|
||||
statements.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
@@ -421,7 +421,7 @@ statements.</p>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/bank-statement-import/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_txt_xlsx%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_sheet_file%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
@@ -438,10 +438,11 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
||||
<ul class="simple">
|
||||
<li>Alexis de Lattre <<a class="reference external" href="mailto:alexis.delattre@akretion.com">alexis.delattre@akretion.com</a>></li>
|
||||
<li>Sebastien BEAU <<a class="reference external" href="mailto:sebastien.beau@akretion.com">sebastien.beau@akretion.com</a>></li>
|
||||
<li>Mourad EL HADJ MIMOUNE <<a class="reference external" href="mailto:mourad.elhadj.mimoune@akretion.com">mourad.elhadj.mimoune@akretion.com</a>></li>
|
||||
<li>Katherine Zaoral</li>
|
||||
<li>Tecnativa (<a class="reference external" href="https://www.tecnativa.com">https://www.tecnativa.com</a>)<ul>
|
||||
<li>Vicent Cubells</li>
|
||||
<li>Victor M.M. Torres</li>
|
||||
<li>Víctor Martínez</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>ForgeFlow (<a class="reference external" href="https://www.forgeflow.com">https://www.forgeflow.com</a>)<ul>
|
||||
@@ -464,7 +465,7 @@ mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external" href="https://github.com/alexey-pelykh"><img alt="alexey-pelykh" src="https://github.com/alexey-pelykh.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_txt_xlsx">OCA/bank-statement-import</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_sheet_file">OCA/bank-statement-import</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -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
|
||||
|
||||
10
account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv
vendored
Normal file
10
account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.csv
vendored
Normal file
@@ -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",
|
||||
|
BIN
account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.xlsx
vendored
Normal file
BIN
account_statement_import_sheet_file/tests/fixtures/meta_data_separated_credit_debit.xlsx
vendored
Normal file
Binary file not shown.
@@ -8,9 +8,10 @@ from os import path
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
# 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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
"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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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)
|
||||
@@ -433,6 +386,7 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
)
|
||||
statement_map = self.sample_statement_map.copy(
|
||||
{
|
||||
"amount_type": "distinct_credit_debit",
|
||||
"amount_debit_column": "Debit",
|
||||
"amount_credit_column": "Credit",
|
||||
"balance_column": "Balance",
|
||||
@@ -450,7 +404,7 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
}
|
||||
)
|
||||
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 +412,97 @@ class TestAccountBankStatementImportTxtXlsx(common.TransactionCase):
|
||||
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)
|
||||
@@ -10,7 +10,7 @@
|
||||
<field name="model">account.statement.import</field>
|
||||
<field
|
||||
name="inherit_id"
|
||||
ref="account_statement_import.account_statement_import_form"
|
||||
ref="account_statement_import_file.account_statement_import_form"
|
||||
/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//ul[@id='statement_format']" position="inside">
|
||||
|
||||
@@ -63,10 +63,14 @@
|
||||
attrs="{'required': [('debit_credit_column', '!=', False)]}"
|
||||
/>
|
||||
</group>
|
||||
<group>
|
||||
<field name="header_lines_skip_count" />
|
||||
<field name="footer_lines_skip_count" />
|
||||
</group>
|
||||
</group>
|
||||
<group string="Columns">
|
||||
<group colspan="4" col="2">
|
||||
<div class="alert alert-info" role="alert">
|
||||
<group colspan="2" col="2">
|
||||
<div class="alert alert-info" role="alert" colspan="2">
|
||||
<span
|
||||
class="fa fa-info-circle"
|
||||
/> Add the column names or column number (when the file has no header).
|
||||
@@ -77,13 +81,38 @@
|
||||
<group>
|
||||
<field name="timestamp_column" />
|
||||
<field name="currency_column" />
|
||||
<field name="amount_column" />
|
||||
<field name="amount_debit_column" />
|
||||
<field name="amount_credit_column" />
|
||||
<field name="amount_type" />
|
||||
<field
|
||||
name="amount_column"
|
||||
attrs="{
|
||||
'required': [('amount_type', '!=', 'distinct_credit_debit'),],
|
||||
'invisible': [('amount_type', '=', 'distinct_credit_debit')],
|
||||
}"
|
||||
/>
|
||||
<field
|
||||
name="amount_debit_column"
|
||||
attrs="{
|
||||
'required': [('amount_type', '=', 'distinct_credit_debit')],
|
||||
'invisible': [('amount_type', '!=', 'distinct_credit_debit')],
|
||||
}"
|
||||
/>
|
||||
<field
|
||||
name="amount_credit_column"
|
||||
attrs="{
|
||||
'required': [('amount_type', '=', 'distinct_credit_debit')],
|
||||
'invisible': [('amount_type', '!=', 'distinct_credit_debit')],
|
||||
}"
|
||||
/>
|
||||
<field name="balance_column" />
|
||||
<field name="original_currency_column" />
|
||||
<field name="original_amount_column" />
|
||||
<field name="debit_credit_column" />
|
||||
<field
|
||||
name="debit_credit_column"
|
||||
attrs="{
|
||||
'required': [('amount_type', '=', 'absolute_value')],
|
||||
'invisible': [('amount_type', '!=', 'absolute_value')],
|
||||
}"
|
||||
/>
|
||||
<field name="transaction_id_column" />
|
||||
<field name="description_column" />
|
||||
<field name="notes_column" />
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import account_statement_import_sheet_mapping_wizard
|
||||
@@ -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",
|
||||
}
|
||||
@@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright 2019 ForgeFlow, S.L.
|
||||
Copyright 2020 CorporateHub (https://corporatehub.eu)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="account_statement_import_sheet_mapping_wizard_form" model="ir.ui.view">
|
||||
<field name="name">account.statement.import.sheet.mapping.wizard.form</field>
|
||||
<field name="model">account.statement.import.sheet.mapping.wizard</field>
|
||||
<field name="mode">primary</field>
|
||||
<field name="inherit_id" ref="multi_step_wizard.multi_step_wizard_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//footer" position="before">
|
||||
<h2>Select a statement file to import mapping</h2>
|
||||
<group name="start" attrs="{'invisible': [('state', '!=', 'start')]}">
|
||||
<group colspan="2">
|
||||
<field
|
||||
name="attachment_ids"
|
||||
widget="many2many_binary"
|
||||
colspan="2"
|
||||
string="Upload Files"
|
||||
nolabel="1"
|
||||
/>
|
||||
</group>
|
||||
<group string="Options" colspan="2">
|
||||
<field name="file_encoding" />
|
||||
<field name="delimiter" />
|
||||
<field name="quotechar" />
|
||||
</group>
|
||||
</group>
|
||||
<group name="final" attrs="{'invisible': [('state', '!=', 'final')]}">
|
||||
<group colspan="2">
|
||||
<field name="header" invisible="1" />
|
||||
<field
|
||||
name="timestamp_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
attrs="{'required': [('state', '=', 'final')]}"
|
||||
/>
|
||||
<field
|
||||
name="currency_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="amount_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="amount_debit_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="amount_credit_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="balance_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="original_currency_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="original_amount_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="debit_credit_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="transaction_id_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="description_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="notes_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="reference_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="partner_name_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="bank_name_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
<field
|
||||
name="bank_account_column"
|
||||
widget="dynamic_dropdown"
|
||||
values="statement_columns"
|
||||
context="{'header': header}"
|
||||
/>
|
||||
</group>
|
||||
<group
|
||||
string="Debit/Credit column"
|
||||
colspan="2"
|
||||
attrs="{'invisible': [('debit_credit_column', '=', False)]}"
|
||||
>
|
||||
<field
|
||||
name="debit_value"
|
||||
attrs="{'required': [('debit_credit_column', '!=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="credit_value"
|
||||
attrs="{'required': [('debit_credit_column', '!=', False)]}"
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
</xpath>
|
||||
<xpath expr="//div[@name='states_buttons']/button" position="before">
|
||||
<button
|
||||
name="import_mapping"
|
||||
string="Import"
|
||||
type="object"
|
||||
class="btn-primary"
|
||||
attrs="{'invisible': [('state', '!=', 'final')]}"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<record
|
||||
id="action_account_statement_import_sheet_mapping_wizard"
|
||||
model="ir.actions.act_window"
|
||||
>
|
||||
<field name="name">Import Mapping</field>
|
||||
<field name="res_model">account.statement.import.sheet.mapping.wizard</field>
|
||||
<field
|
||||
name="binding_model_id"
|
||||
ref="model_account_statement_import_sheet_mapping"
|
||||
/>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user