mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Merge pull request #420 from QANSEE/9.0-account_chart_update-migration
9.0 account chart update migration
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
Adds a wizard to update a company account chart from a chart template.
|
||||
======================================================================
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
===========================================================
|
||||
Detect changes and update the Account Chart from a template
|
||||
===========================================================
|
||||
|
||||
This is a pretty useful tool to update Odoo installations after tax reforms
|
||||
on the official charts of accounts, or to apply fixes performed on the chart
|
||||
@@ -17,15 +22,32 @@ The wizard:
|
||||
Usage
|
||||
=====
|
||||
|
||||
The wizard, accesible from *Accounting > Configuration > Accounts > Update
|
||||
chart of accounts*, lets the user select what kind of objects must
|
||||
be checked/updated, and whether old records must be checked for changes and
|
||||
updates.
|
||||
The wizard, accesible from *Accounting > Configuration > Settings > Chart of
|
||||
Accounts > Update chart of accounts*, lets the user select what kind of objects
|
||||
must be checked/updated, and whether old records must be checked for changes
|
||||
and updates.
|
||||
|
||||
It will display all the objects to be created / updated with some information
|
||||
about the detected differences, and allow the user to exclude records
|
||||
individually.
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/92/9.0
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* Add tests.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues
|
||||
<https://github.com/OCA/account-financial-tools/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.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
@@ -34,11 +56,13 @@ Contributors
|
||||
|
||||
* Jordi Esteve
|
||||
* Borja López Soilán
|
||||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Joaquín Gutierrez <joaquingpedrosa@gmail.com>
|
||||
* invitu
|
||||
* Stéphane Bidoul <stephane.bidoul@acsone.eu>
|
||||
* Antonio Espinosa <antonioea@antiun.com>
|
||||
* Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||
* Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
* Jacques-Etienne Baudoux <je@bcim.be>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
@@ -53,4 +77,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
To contribute to this module, please visit https://odoo-community.org.
|
||||
|
||||
@@ -1,28 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.
|
||||
# (http://www.pexego.es)
|
||||
# @authors: Jordi Esteve (Zikzakmedia), Borja López Soilán (Pexego)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
"""
|
||||
Account Chart Update Wizard
|
||||
"""
|
||||
# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import model
|
||||
from . import wizard
|
||||
|
||||
@@ -1,51 +1,37 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# OpenERP, Open Source Management Solution
|
||||
# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
|
||||
# Copyright (c) 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
|
||||
# Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# 2013/09/08 - Joaquín Gutierrez: Adaptación a la versión
|
||||
#
|
||||
##############################################################################
|
||||
# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
|
||||
# © 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
|
||||
# © 2015 Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# © 2016 Jacques-Etienne Baudoux <je@bcim.be>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': "Detect changes and update the Account Chart from a template",
|
||||
'version': "8.0.1.2.0",
|
||||
"summary": "Wizard to update a company's account chart from a template",
|
||||
'version': "9.0.1.0.0",
|
||||
'author': "Zikzakmedia SL, "
|
||||
"Pexego, "
|
||||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
||||
"ACSONE A/V, "
|
||||
"Tecnativa, "
|
||||
"BCIM,"
|
||||
"Odoo Community Association (OCA)",
|
||||
'website': "http://odoo-community.org",
|
||||
'depends': ["account"],
|
||||
'category': "Generic Modules/Accounting",
|
||||
'category': "Accounting & Finance",
|
||||
'contributors': [
|
||||
'Joaquín Gutierrez',
|
||||
'Pedro M. Baeza',
|
||||
'invitu',
|
||||
'Stéphane Bidoul',
|
||||
'Jairo Llopis',
|
||||
'Jacques-Etienne Baudoux',
|
||||
],
|
||||
'license': "AGPL-3",
|
||||
"demo": [],
|
||||
"data": [
|
||||
'wizard/wizard_chart_update_view.xml',
|
||||
'views/account_tax_code_view.xml',
|
||||
'views/account_config_settings_view.xml',
|
||||
],
|
||||
"active": False,
|
||||
'installable': False
|
||||
}
|
||||
|
||||
852
account_chart_update/i18n/am.po
Normal file
852
account_chart_update/i18n/am.po
Normal file
@@ -0,0 +1,852 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,account_id:0
|
||||
msgid "Account template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Existing accounts are updated. Accounts are searched by code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Existing tax codes are updated. Tax codes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
msgid "Fiscal position to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
msgid "Fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,log:0
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Not all the fields are tested for changes, just the main ones"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
msgid "Tax code to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,tax_id:0
|
||||
msgid "Tax template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
#: model:ir.ui.menu,name:account_chart_update.menu_wizard
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update chart of accounts from a template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
msgid "Update chart wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Update tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "نشِط"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "إغلاق"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "الملاحظات"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Zabilješke"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeig de compte no trobat en la instància de posició fiscal: %s -> %s.\n"
|
||||
@@ -38,6 +38,11 @@ msgstr "Plantilla de comptes"
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr "Comptes"
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr "Crea/Actualitza"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Creat compte %s.\n"
|
||||
@@ -104,65 +120,67 @@ msgstr "Creat compte %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Creada o actualitzada posició fiscal %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Creat impost %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Creat codi d'impost %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Excepció creant compte %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Excepció establint el pare dels fills del compte %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Excepció escrivint compte %s: %s - %s.\n"
|
||||
@@ -189,6 +207,24 @@ msgstr "Els codis d'impostos existents seran actualitzats. Els codis d'impostos
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Els impostos existents seran actualitzats. Els impostos es cercaran per nom."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,11 +257,12 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
@@ -249,20 +286,22 @@ msgstr "Idioma"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Missatges i errors"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr "Anterior"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Registres a crear/actualitzar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Resum d'objectes actualitzats"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Impost %s: No s'ha pogut establir el compte a rebre.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Impost %s: No s'ha pogut establir el compte a pagar.\n"
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr "Codis d'impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeig de compte no trobat en la instància de la posició fiscal: %s -> %s.\n"
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr "Impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "El camp import és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "El camp tipus aplicable és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "El camp signe base és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "El camp impost en fills és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "El camp codi és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "El camp domini és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "El camp incloure en import base és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "El camp info és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "El nom és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "El camp càlcul Python és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "El camp reconciliar és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "El camp seqüència és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "El camp signe és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "El camp signe d'impost és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla té comptes que la instància de posició fiscal no.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla té impostos que la instància de posició fiscal no té.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "El camp tipus és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "El tipus és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "El camp aplicació impost és diferent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "El tipus d'usuari és diferent.\n"
|
||||
@@ -661,19 +718,20 @@ msgstr "El tipus d'usuari és diferent.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr "Assistent per a actualitzar el pla comptable"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Actualitza pare dels comptes fills"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr "Actualitza codis d'impostos"
|
||||
msgid "Update taxes"
|
||||
msgstr "Actualitza impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr "Actualitza el pare dels comptes que semblen (basant-se en el codi) ser fills dels comptes acabats de crear. Si teniu un compte 430 amb un fill 4300000 i es crea un compte 4300, el compte 4300 serà el nou pare del compte 4300000."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Actualitzat compte %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Actualitzat impost %s.\n"
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Actualitzat codi d'impost %s.\n"
|
||||
@@ -767,6 +836,11 @@ msgstr "Actualitzat codi d'impost %s.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Plantilla actualitzada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
@@ -775,4 +849,4 @@ msgstr "Assistent completat"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
msgstr "o"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr "Comptes"
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr "Crea/Actualitza"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr "Els codis d'impostos existents seran actualitzats. Els codis d'impostos
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Els impostos existents seran actualitzats. Els impostos es cercaran per nom."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr "Anterior"
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr "Codis d'impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr "Impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr "Assistent per a actualitzar el pla comptable"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr "Actualitza codis d'impostos"
|
||||
msgid "Update taxes"
|
||||
msgstr "Actualitza impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -3,12 +3,13 @@
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +24,7 @@ msgid "# of digits"
|
||||
msgstr "Anz. Ziffern"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Kontenzuordnung in dieser Instanz der Bilanzposition nicht gefunden: %s -> %s.\n"
|
||||
@@ -36,6 +37,11 @@ msgstr "Kontovorlage"
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr "Konto, welches aktualisiert werden muss (neue oder geänderte Vorlage)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -54,6 +60,17 @@ msgstr "Konten"
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +92,7 @@ msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr "Schlüssel nicht gefunden."
|
||||
@@ -96,7 +113,7 @@ msgid "Create/Update"
|
||||
msgstr "Anlegen/Aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Konto %s angelegt.\n"
|
||||
@@ -104,65 +121,67 @@ msgstr "Konto %s angelegt.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Angelegt oder aktualisierte Bilanzposition %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Angelegte Steuer %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Steuerschlüssel %s angelegt.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
msgstr "%d Steuerschlüssel deaktiviert\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
msgstr "%d Steuern deaktiviert\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Ausnahme bei Kontenanlage %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Ausnahme beim Setzen des Übergeordneten von Konto %s, Untergeordnete %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Ausnahme beim Schreiben des Kontos %s: %s - %s.\n"
|
||||
@@ -189,6 +208,24 @@ msgstr "Bestehende Steuerschlüssel sind aktualisiert. Steuerschlüssel werden n
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Bestehende Steuern sind aktualisiert. Steuern werden nach Name gesucht."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -198,7 +235,7 @@ msgstr "Vorlage zur Bilanzposition"
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
msgstr "Steuerzuordnung, die aktualisiert werden muss (neue oder geänderte Vorlage)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
@@ -221,11 +258,12 @@ msgstr "Bei Datensätzen die nach Name gesucht werden (Steuer, Steuerschlüssel,
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
@@ -249,20 +287,22 @@ msgstr "Sprache"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Zuletzt geändert von"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Meldungen und Fehler"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr "Name nicht gefunden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr "Name oder Schlüssel nicht gefunden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Name oder Beschreibung nicht gefunden."
|
||||
@@ -295,7 +335,7 @@ msgstr "Name oder Beschreibung nicht gefunden."
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr ""
|
||||
msgstr "Neuer Steuerschlüssel"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
@@ -317,7 +357,7 @@ msgid ""
|
||||
msgstr "Anzahl Ziffern für den Kontoschlüssel. Stellen Sie bitte sicher, dass diese mit bestehenden Konten übereinstimmt."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
@@ -329,6 +369,7 @@ msgstr "Hinweis: Nicht alle Felder wurden auf Änderungen hin geprüft, nur die
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +377,7 @@ msgid "Notes"
|
||||
msgstr "Hinweise"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +400,17 @@ msgstr "Voriger"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Zu aktualisierende/erstellende Datensätze"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -382,7 +434,7 @@ msgstr "Zusammenfassung erstellter Objekte"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr ""
|
||||
msgstr "Übersicht gelöschter Objekte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Zusammenfassung aktualisierter Objekte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Steuer %s: Das gefundene Konto kann nicht gesetzt werden.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Steuer %s: Das Konto Bezahlt kann nicht gesetzt werden.\n"
|
||||
@@ -404,7 +456,7 @@ msgstr "Steuer %s: Das Konto Bezahlt kann nicht gesetzt werden.\n"
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
msgstr "Steuerschlüssel"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
@@ -414,12 +466,12 @@ msgstr "Steuerschlüssel-Vorlage"
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
msgstr "Steuerschlüssel, der aktualisiert werden muss (neue oder geänderte Vorlage)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr ""
|
||||
msgstr "Zu deaktivierender Steuerschlüssel"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
@@ -433,13 +485,13 @@ msgid "Tax codes"
|
||||
msgstr "Steuerschlüssel"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
msgstr "Steuer ist deaktiviert.\n\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Steuerzuordnung für die Bilanzposition der Instanz nicht gefunden: %s -> %s.\n"
|
||||
@@ -452,12 +504,12 @@ msgstr "Steuervorlage"
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
msgstr "Steuer, die aktualisiert werden muss (neue oder geänderte Vorlage)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr ""
|
||||
msgstr "Zu deaktivierende Steuer"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
@@ -471,189 +523,195 @@ msgid "Taxes"
|
||||
msgstr "Steuern"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das account_collected -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das account_paid -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "Das Feld Betrag weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "Das Feld Anwendbare Art weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "Das Basis-Vorzeichen-Feld weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das base_code_id -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "Das Feld Abhängig Untergeordnet weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "Das Schlüsselfeld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das description -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "Das Feld Domäne weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "Das Feld \"Basisbetrag einschließen\" weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "Das Info-Feld weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das name -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "Der Name weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das notprintable -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das parent -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das parent_id -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "Das Feld Python-Berechnung weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "Der Ausgleich weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das ref_base_code_id -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das ref_tax_code_id -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "Das Folgen-Feld weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "Das Feld Vorzeichen weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "Das Feld Steuervorzeichen weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
msgstr "Das tax_code_id -Feld unterscheidet sich.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "Die Vorlage enthält Konten, die diese Instanz der Bilanz nicht beinhaltet.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "Die Vorlage beinhaltet Steuern, die in der aktuellen Bilanzposition nicht vorhanden sind.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "Das Art-Feld weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "Die Art weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "Das Feld Steuerartverwendung weicht ab.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "Die Anwenderart weicht ab.\n"
|
||||
@@ -661,19 +719,20 @@ msgstr "Die Anwenderart weicht ab.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
msgstr "Der Assistent wird Ihre Konten, Steuern und Bilanzzuordnungen gemäß der Kontenplanvorlage, aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "Zum Deaktivieren: Nicht in der Vorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +757,7 @@ msgstr "Kontenplan aus Vorlage aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +769,11 @@ msgstr "Kontenplan-Assistent"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Aktualisiere übergeordnete Konten"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +794,11 @@ msgstr "Aktualisierte Steuerschlüssel"
|
||||
msgid "Update taxes"
|
||||
msgstr "Steuern aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +808,13 @@ msgid ""
|
||||
msgstr "Aktualisiere die übergeordneten Konten, die (basierend auf dem Schlüssel) als untergeordnete der neu angelegten erscheinen. Wenn Sie ein Konto 430 mit einem untergeordneten 4300000 hätten und Konto 4300 wird angelegt, dann wird das Übergeordnete zu 4300000 auf 4300 gesetzt."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Aktualisiertes Konto %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Aktualisierte Steuer %s.\n"
|
||||
@@ -752,10 +822,10 @@ msgstr "Aktualisierte Steuer %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr ""
|
||||
msgstr "Steuerschlüssel aktualisiert"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Aktualisierter Steuerschlüssel %s.\n"
|
||||
@@ -767,6 +837,11 @@ msgstr "Aktualisierter Steuerschlüssel %s.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Aktualisierte Vorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
852
account_chart_update/i18n/el_GR.po
Normal file
852
account_chart_update/i18n/el_GR.po
Normal file
@@ -0,0 +1,852 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,account_id:0
|
||||
msgid "Account template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Εταιρεία"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Existing accounts are updated. Accounts are searched by code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Existing tax codes are updated. Tax codes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
msgid "Fiscal position to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
msgid "Fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,log:0
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Not all the fields are tested for changes, just the main ones"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
msgid "Tax code to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,tax_id:0
|
||||
msgid "Tax template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
#: model:ir.ui.menu,name:account_chart_update.menu_wizard
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update chart of accounts from a template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
msgid "Update chart wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Update tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -1,36 +1,32 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Alejandro Santana <alejandrosantana@anubia.es>, 2015
|
||||
# * account_chart_update
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-09-01 23:59+0000\n"
|
||||
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
|
||||
"POT-Creation-Date: 2017-08-14 17:37+0000\n"
|
||||
"PO-Revision-Date: 2017-08-14 17:37+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"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr "Nº de dígitos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeo de cuenta no encontrado en la instancia de posición fiscal: %s -> %s.\n"
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr "<span states=\"init,ready\"> or </span>"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,account_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
msgid "Account template"
|
||||
msgstr "Plantilla de cuenta"
|
||||
|
||||
@@ -40,263 +36,260 @@ msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr "Cuenta que necesita actualizarse (nueva o actualizada en la plantilla)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr "Cuenta a actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_ids
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Accounts"
|
||||
msgstr "Cuentas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr "Plantilla plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr "Plantillas de cuentas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr "Plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr "Código no encontrado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr "Continuar tras errores"
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr "Continuar tras algún error"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr "Crear/Actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:645
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Creada cuenta %s.\n"
|
||||
msgid "Created account %s."
|
||||
msgstr "Creada cuenta %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_create_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_create_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_create_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_create_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_create_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_create_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:728
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Creada o actualizada posición fiscal %s.\n"
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr "Creada o actualizada posición fiscal %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Creado impuesto %s.\n"
|
||||
msgid "Created tax %s."
|
||||
msgstr "Creado impuesto %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:600
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Creado código de impuesto %s.\n"
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr "Desactivado impuesto %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr "Desactivados %d códigos de impuestos\n"
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr "Impuestos desactivados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr "Desactivados %d impuestos\n"
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
msgid "Deleted template"
|
||||
msgstr "Plantilla borrada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Excepción creando cuenta %s: %s - %s.\n"
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Determines where the tax is selectable. Note : 'None' means a tax can't be used by itself, however it can still be used in a group."
|
||||
msgstr "Determina dónde puede seleccionarse un impuesto. Nota : 'Ninguno' significa que un impuesto no puede ser usado por sí mismo; aun así, puede utilizarse en un grupo."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:474
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Excepción estableciendo el padre de los hijos de la cuenta %s: %s - %s.\n"
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr "Diferencias en este(os) campo(s)s: %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Excepción escribiendo cuenta %s: %s - %s.\n"
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_display_name
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_display_name
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_display_name
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_account:0
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr "Excepción creando cuenta %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:661
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr "Excepción escribiendo cuenta %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Existing accounts are updated. Accounts are searched by code."
|
||||
msgstr "Las cuentas contables existentes serán actualizadas. Las cuentas se buscarán por código."
|
||||
msgstr "Las cuentas existentes son actualizadas. Las cuentas se buscan por código."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr "Las posiciones fiscales existentes serán actualizadas. Las posiciones fiscales se buscarán por nombre."
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Existing fiscal positions are updated. Fiscal positions are searched by name."
|
||||
msgstr "Las posiciones fiscales existentes son actualizadas. Las posiciones fiscales se buscan por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Existing tax codes are updated. Tax codes are searched by name."
|
||||
msgstr "Los códigos de impuestos existentes serán actualizados. Los códigos de impuestos se buscarán por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax:0
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Los impuestos existentes serán actualizados. Los impuestos se buscarán por nombre."
|
||||
msgstr "Los impuestos existentes son actualizados. Los impuestos se buscan por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
msgid "Fiscal position template"
|
||||
msgstr "Plantilla de posición fiscal"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgid "Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr "Posición fiscal que necesita actualizarse (nueva o actualizada en la plantilla)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_update_fiscal_position_id
|
||||
msgid "Fiscal position to update"
|
||||
msgstr "Posición fiscal a actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_ids
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Fiscal positions"
|
||||
msgstr "Posiciones fiscales"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr "Para los registros de impuestos, códigos de impuestos y posiciones fiscales, sus nombres se comparan con los de la plantilla seleccionada."
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "For records searched by name (taxes, fiscal positions), the template name will be matched against the record name on this language."
|
||||
msgstr "Para registros buscados por nombre (impuestos, posiciones fiscales), el nombre de la plantilla se casará contra el nombre del registro en este idioma."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_id
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_id
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_id
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr "Si está marcado, el asistente continuará al paso siguiente incluso si hay errores menores (por ejemplo, no se pudo establecer la cuenta padre de una nueva cuenta)."
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "If set, the wizard will continue to the next step even if there are minor errors."
|
||||
msgstr "Si está establecido, este asistente continuará al siguiente paso incluso si hay errores menores."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)"
|
||||
msgstr "Si deja esta opción marcada, el asistente creará no sólo nuevos registros, si no que también actualizará aquellos con cambios (por ejemplo, diferente porcentaje de impuesto)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr "Incluye todos los planes de cuenta."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts___last_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account___last_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position___last_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_write_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_write_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_write_uid
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_write_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_write_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_write_date
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr "Registro"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,log:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr "Mensajes y errores"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr "Nombre no encontrado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr "Nombre o código no encontrado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:499
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Nombre o descripción no encontrada."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr "Nuevos códigos de impuesto"
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr "Nuevas cuentas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_fps
|
||||
msgid "New fiscal positions"
|
||||
msgstr "New fiscal positions"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
msgstr "Nuevos impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
@@ -306,147 +299,97 @@ msgid "New template"
|
||||
msgstr "Nueva plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr "Siguiente"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que este número es el mismo que el de las cuentas existentes."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:545
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr "Ninguno"
|
||||
msgid "No account found with this code."
|
||||
msgstr "No se ha encontrado una cuenta con este código."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Not all the fields are tested for changes, just the main ones"
|
||||
msgstr "Nota: No se comprueban todos los campos, sólo los importantes"
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:577
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr "No se ha encontrado un posición fiscal con este nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "No. of digits to use for account code. Make sure it is the same number as existing accounts."
|
||||
msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que es el mismo número que el de las cuentas existentes."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Only the changed fields are updated."
|
||||
msgstr "Nota: Sólo los campos cambiados son actualizados."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_notes
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_notes
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_notes
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
msgid "One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr "¡Uno o más errores detectados!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr "¡Uno o más errores detectados!\n\n%s"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr "Otras opciones"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr "Registros a crear/actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr "Selecciones registros a actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr "Paso 1"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr "Paso 2"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr "Resumen de objetos creados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr "Resumen de objetos eliminados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr "Resumen de objetos actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr "Ámbito del impuesto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:479
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Impuesto %s: No se pudo establecer la cuenta a recibir.\n"
|
||||
msgid "Tax is disabled."
|
||||
msgstr "El impuesto está deshabilitado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Impuesto %s: No se pudo establecer la cuenta a pagar.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr "Código de impuesto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr "Plantilla de código de impuesto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr "Código de impuesto que necesita actualizarse (nuevo o actualizado en la plantilla)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr "Código de impuesto a desactivar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
msgid "Tax code to update"
|
||||
msgstr "Código de impuesto a actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr "Códigos de impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr "Impuesto está desactivado.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeo de cuenta no encontrado en la instancia de la posición fiscal: %s -> %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,tax_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
msgid "Tax template"
|
||||
msgstr "Plantilla de impuesto"
|
||||
|
||||
@@ -461,305 +404,97 @@ msgid "Tax to deactivate"
|
||||
msgstr "Impuesto a desactivar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr "Impuesto a actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_ids
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr "El campo account_collected es diferente.\n"
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "This wizard will update your accounts, taxes and fiscal positions according to the selected chart template"
|
||||
msgstr "Este asistente actualizará sus cuentas, impuestos y posiciones fiscales de acuerdo con el plan contable seleccionado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr "El campo account_paid es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "El campo importe es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "El campo tipo aplicable es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "El campo signo base es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr "El campo base_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "El campo impuesto en hijos es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "El campo código es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr "El campo descripción es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "El campo dominio es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "El campo incluir en importe base es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "El campo info es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr "El campo nombre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "El nombre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr "El campo no se imprime en factura es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr "El campo padre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr "El campo parent_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "El campo cálculo python es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "El campo reconciliar es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr "El campo ref_base_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr "El campo ref_tax_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "El campo secuencia es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "El campo signo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "El campo signo de impuesto es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr "El campo tax_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla tiene cuentas que la instancia de posición fiscal no.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla tiene impuestos que la instancia de posición fiscal no.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "El campo tipo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "El tipo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "El campo aplicación impuesto es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "El tipo de usuario es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
msgstr "Este asistente actualizará sus cuentas, impuestos y posiciones fiscales de acuerdo a la plantilla de plan contable seleccionada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:527
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "A desactivar: no está en la plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_type
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_type
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_account:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr "Actualizar cuentas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
#: model:ir.ui.menu,name:account_chart_update.menu_wizard
|
||||
msgid "Update chart of accounts"
|
||||
msgstr "Actualizar plan de cuentas"
|
||||
msgstr "Actualizar plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update chart of accounts from a template"
|
||||
msgstr "Actualizar plan contable desde una plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_chart_wizard_id
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_update_chart_wizard_id
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_chart_wizard_id
|
||||
msgid "Update chart wizard"
|
||||
msgstr "Asistente para actualizar el plan contable"
|
||||
msgstr "Asistente de actualización de plan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Actualizar padre de cuentas hijas"
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr "Actualizar plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr "Actualizar posiciones fiscales"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr "¿Actualizar registros?"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Update tax codes"
|
||||
msgstr "Actualizar códigos de impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax:0
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr "Actualizar impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr "Actualizar el padre de las cuentas que parecen (basándose en el código) ser hijas de las cuentas recién creadas. Si tiene una cuenta 430 con una hija 4300000, y se crea una cuenta 4300, se establecerá la cuenta 4300 como padre de la cuenta 4300000."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:658
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Actualizada cuenta %s.\n"
|
||||
msgid "Updated account %s."
|
||||
msgstr "Cuentas %s actualizada."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr "Cuentas actualizadas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_fps
|
||||
msgid "Updated fiscal positions"
|
||||
msgstr "Posiciones fiscales actualizadas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Actualizado impuesto %s.\n"
|
||||
msgid "Updated tax %s."
|
||||
msgstr "Impuesto %s actualizado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr "Códigos de impuesto actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Actualizado código de impuesto %s.\n"
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
msgstr "Impuestos actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
@@ -774,6 +509,7 @@ msgid "Wizard completed"
|
||||
msgstr "Asistente completado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr "wizard.update.charts.accounts"
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr "Nº de dígitos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeo de cuenta no encontrado en la instancia de posición fiscal: %s -> %s.\n"
|
||||
@@ -38,6 +38,11 @@ msgstr "Plantilla de cuenta"
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr "Cuentas"
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr "Código no encontrado."
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr "Crear/Actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Creada cuenta %s.\n"
|
||||
@@ -104,6 +120,7 @@ msgstr "Creada cuenta %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr "Creado por"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Creada o actualizada posición fiscal %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Creado impuesto %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Creado código de impuesto %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr "Desactivados %d códigos de impuestos\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr "Desactivados %d impuestos\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Excepción creando cuenta %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Excepción estableciendo el padre de los hijos de la cuenta %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Excepción escribiendo cuenta %s: %s - %s.\n"
|
||||
@@ -189,6 +207,24 @@ msgstr "Los códigos de impuestos existentes serán actualizados. Los códigos d
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Los impuestos existentes serán actualizados. Los impuestos se buscarán por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr "Para los registros de impuestos, códigos de impuestos y posiciones fis
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr "Idioma"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr "Última actualización por"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Mensajes y errores"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr "Nombre no encontrado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr "Nombre o código no encontrado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Nombre o descripción no encontrada."
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que este número es el mismo que el de las cuentas existentes."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr "Ninguno"
|
||||
@@ -329,6 +368,7 @@ msgstr "Nota: No se comprueban todos los campos, sólo los importantes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr "Anterior"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Registros a crear/actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Resumen de objetos actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Impuesto %s: No se pudo establecer la cuenta a recibir.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Impuesto %s: No se pudo establecer la cuenta a pagar.\n"
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr "Códigos de impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr "Impuesto está desactivado.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeo de cuenta no encontrado en la instancia de la posición fiscal: %s -> %s.\n"
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr "El campo account_collected es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr "El campo account_paid es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "El campo importe es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "El campo tipo aplicable es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "El campo signo base es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr "El campo base_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "El campo impuesto en hijos es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "El campo código es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr "El campo descripción es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "El campo dominio es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "El campo incluir en importe base es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "El campo info es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr "El campo nombre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "El nombre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr "El campo no se imprime en factura es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr "El campo padre es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr "El campo parent_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "El campo cálculo python es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "El campo reconciliar es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr "El campo ref_base_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr "El campo ref_tax_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "El campo secuencia es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "El campo signo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "El campo signo de impuesto es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr "El campo tax_code_id es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla tiene cuentas que la instancia de posición fiscal no.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "La plantilla tiene impuestos que la instancia de posición fiscal no.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "El campo tipo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "El tipo es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "El campo aplicación impuesto es diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "El tipo de usuario es diferente.\n"
|
||||
@@ -661,19 +718,20 @@ msgstr "El tipo de usuario es diferente.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
msgstr "Este asistente actualizará sus cuentas, impuestos y posiciones fiscales de acuerdo a la plantilla de plan contable seleccionada"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "A desactivar: no está en la plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr "Actualizar plan contable desde una plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr "Asistente para actualizar el plan contable"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Actualizar padre de cuentas hijas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr "Actualizar códigos de impuestos"
|
||||
msgid "Update taxes"
|
||||
msgstr "Actualizar impuestos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr "Actualizar el padre de las cuentas que parecen (basándose en el código) ser hijas de las cuentas recién creadas. Si tiene una cuenta 430 con una hija 4300000, y se crea una cuenta 4300, se establecerá la cuenta 4300 como padre de la cuenta 4300000."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Actualizada cuenta %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Actualizado impuesto %s.\n"
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr "Códigos de impuesto actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Actualizado código de impuesto %s.\n"
|
||||
@@ -767,6 +836,11 @@ msgstr "Actualizado código de impuesto %s.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Plantilla actualizada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiivne"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Sulge"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Märkmed"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -1,19 +1,21 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-06-08 08:38+0000\n"
|
||||
"PO-Revision-Date: 2015-06-08 08:38+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
@@ -21,10 +23,9 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:784
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -32,6 +33,16 @@ msgstr ""
|
||||
msgid "Account template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -48,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -69,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:725
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -77,7 +99,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
msgstr "Yritys"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
@@ -90,84 +112,77 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1020
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1111
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:932
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:868
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:877
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:947
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
""
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:968
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -177,7 +192,9 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Existing fiscal positions are updated. Fiscal positions are searched by name."
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -190,11 +207,35 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
msgid "Fiscal position to update"
|
||||
@@ -208,26 +249,33 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid "For records searched by name (taxes, tax codes, fiscal positions), the template name will be matched against the record name on this language."
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "If set, the wizard will continue to the next step even if there are minor errors (for example the parent account of a new account couldn't be set)."
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)"
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -238,20 +286,22 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -264,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:818
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:530
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:647
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -300,11 +350,13 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid "No. of digits to use for account code. Make sure it is the same number as existing accounts."
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:762
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -316,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -323,9 +376,10 @@ msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:373
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid "One or more errors detected!\n"
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
@@ -345,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -376,17 +441,15 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1056
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1059
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -399,6 +462,11 @@ msgstr ""
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
@@ -416,17 +484,15 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:570
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:763
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -434,6 +500,11 @@ msgstr ""
|
||||
msgid "Tax template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
@@ -451,238 +522,216 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:621
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:618
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:605
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:494
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:689
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
""
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:611
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
""
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
""
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:790
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:768
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "This wizard will update your accounts, taxes and fiscal positions according to the selected chart template"
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:560
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:682
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -707,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -718,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -739,22 +794,28 @@ msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update the parent of accounts that seem (based on the code) to be children of the newly created ones. If you had an account 430 with a child 4300000, and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1029
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:937
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -763,10 +824,9 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:872
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
@@ -776,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
@@ -785,4 +850,3 @@ msgstr ""
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-07-06 10:01+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "La correspondance des comptes n'a pas été trouvée dans la poosition fiscale: %s -> %s.\n"
|
||||
@@ -38,6 +38,11 @@ msgstr "Modèle de compte"
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr "Comptes"
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr "Creation/Mise à jour"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Compte créé %s.\n"
|
||||
@@ -104,6 +120,7 @@ msgstr "Compte créé %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr "Créer par"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr "Créer le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Positions fiscales créées ou mises à jour %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Taxes créées %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Code de taxe créé: %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Exception creating account %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Exception writing account %s: %s - %s.\n"
|
||||
@@ -189,6 +207,24 @@ msgstr "Les codes de taxe sont mis à jour. Les codes de taxe sont recherchés p
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Les taxes existantes sont mises à jour. Les taxes sont recherchées par nom."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr "Pour les enregistrements recherchés par nom (taxes, codes de taxe, posi
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr "Langue"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr "Mis à jour par"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Messages et Erreurs"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr "Précédent"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Enregistrement à créer/mettre à jour"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Résumé des objets mis à jour"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Taxe %s: Le compte collecté ne peut pas être réglé.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Taxe %s: Le compte de paiement ne peut pas être mis à jour.\n"
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr "Codes de taxe"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "La correspondance de taxe n'a pas été trouvée sur la position fiscale: %s -> %s.\n"
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr "Taxes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "Le champ montant est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "The champ type à appliquer est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "Le champ signe de la base est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "Le champ enfant est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "Le champ field est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "Le champ domaine est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "La champ montant de base est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "Le champ info est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "Le nom est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "Le champ de calcul python est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "Le rapprochement est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "Le champ sequence est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "Le champ signe est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "Le champ signe taxe est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "Le modèle possède des comptes et la position fiscale n'en a pas.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "Le modèle possède des taxes et la position fiscale n'en a pas.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "Le champ type est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "Le type est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "Le champ type de la taxe est différent.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "Le type de l'utisateur est différent.\n"
|
||||
@@ -661,19 +718,20 @@ msgstr "Le type de l'utisateur est différent.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr "Assistant de mise à jour de plan comptable"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Mettre à jour les comptes parents"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr "Codes de taxe mis à jour"
|
||||
msgid "Update taxes"
|
||||
msgstr "Taxes mises à jour"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr "Mettre à jour le parent des comptes qui semblent (selon leur code) être des enfants de nouveaux comptes créés. Si vous avez déjà un compte parent 430 avec un enfant 430000, et qu'un nouveau compte 4300 est créé, le champ parent du compte 430000 sera mis à jour avec 4300."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Champ mis à jour %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Taxe mise à jour %s.\n"
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Code de taxe mis à jour %s.\n"
|
||||
@@ -767,6 +836,11 @@ msgstr "Code de taxe mis à jour %s.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Modèle mis à jour"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-09-02 00:15+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr "Creado por"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr "ültima actualización por"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-09-02 00:17+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Gujarati (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "નોંધ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -3,12 +3,13 @@
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Davor Bojkić <bole@dajmi5.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +24,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,22 +39,38 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
msgstr "Konta za ažuriranje"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
msgstr "Konta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -62,12 +79,12 @@ msgstr "Odustani"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
msgstr "Predložak kontnog plana"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
msgstr "Kontni plan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -75,10 +92,10 @@ msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
msgstr "Šifra nije pronađena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
@@ -88,7 +105,7 @@ msgstr "Organizacija"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
msgstr "Nastavi nakon grešaka"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -96,7 +113,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +121,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +131,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +139,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
msgstr "Kreiran porez %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
msgstr "Kreiran porezni kod %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
msgstr "Deaktivirano %d poreza\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,10 +208,28 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
msgstr "Predložak fiskalne pozicije"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
@@ -209,7 +246,7 @@ msgstr ""
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
msgid "Fiscal positions"
|
||||
msgstr ""
|
||||
msgstr "Fiskalne pozicije"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
@@ -221,11 +258,12 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
@@ -244,11 +282,12 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
msgstr "Jezik"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +297,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
msgstr "Naziv nije pronađen."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -302,12 +342,12 @@ msgstr ""
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr ""
|
||||
msgstr "Novi predložak"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
msgstr "Sljedeći"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
@@ -317,7 +357,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +369,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +377,7 @@ msgid "Notes"
|
||||
msgstr "Bilješke"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -347,18 +388,29 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
msgstr "Ostale opcije"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
msgstr "Prethodni"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -367,12 +419,12 @@ msgstr "Status"
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
msgstr "Korak 1"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
msgstr "Korak 2"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -404,12 +456,12 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
msgstr "Porezni kod"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
msgstr "Predložak poreznog koda"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
@@ -430,16 +482,16 @@ msgstr ""
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr ""
|
||||
msgstr "Porezni kodovi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -468,192 +520,198 @@ msgstr ""
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
msgid "Taxes"
|
||||
msgstr "Porezi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +719,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +757,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +769,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +794,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +808,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +825,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +837,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Lezár"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Megjegyzések"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -3,12 +3,13 @@
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-04-23 00:52+0000\n"
|
||||
"PO-Revision-Date: 2016-05-12 08:07+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +24,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +39,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -47,13 +53,24 @@ msgstr ""
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
msgstr "Conti"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +92,7 @@ msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +113,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +121,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +131,7 @@ msgstr "Creato da"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +139,49 @@ msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +208,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +258,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +287,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +297,7 @@ msgstr "Last Updated by"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +357,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +369,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +377,7 @@ msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +400,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +485,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +523,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +719,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +757,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +769,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +794,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +808,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +825,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +837,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "有効"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "注記"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Uždaryta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Pastabos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Белешки"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Идэвхитэй"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Хаах"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Тэмдэглэл"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Lukke"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notater"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notities"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Opmerkingen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktywny"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Zamknięte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Uwagi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -24,7 +24,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeamento da conta não encontrada na instância da posição fiscal: %s -> %s.\n"
|
||||
@@ -39,6 +39,11 @@ msgstr "Modelo conta"
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -55,6 +60,17 @@ msgstr "Contas"
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -76,7 +92,7 @@ msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -97,7 +113,7 @@ msgid "Create/Update"
|
||||
msgstr "Criar/Actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Conta criada %s.\n"
|
||||
@@ -105,65 +121,67 @@ msgstr "Conta criada %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Posição fiscal criada ou actualizada %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Imposto criado %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Código de imposto %s criado.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Excepção da criação da conta %s :%s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Excepção na definição ascendente da conta descendente %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Excepção ao escrever a conta %s: %s - %s.\n"
|
||||
@@ -190,6 +208,24 @@ msgstr "Os códigos de imposto existentes estão actualizados. O Código de impo
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Os impostos existenstes estão actualizados. Os impostos são localizados pelo nome."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -222,11 +258,12 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
@@ -250,20 +287,22 @@ msgstr "Linguagem"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
@@ -276,19 +315,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Mensagens e Erros"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -318,7 +357,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -330,6 +369,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -337,7 +377,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -360,6 +400,17 @@ msgstr "Anterior"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Gravações para criar/actualizar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -391,13 +442,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Resumo de objectos actualizados"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Imposto %s: A conta colectada não pode ser definida.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Imposto %s: A conta paga não pode ser definida.\n"
|
||||
@@ -434,13 +485,13 @@ msgid "Tax codes"
|
||||
msgstr "Códigos do imposto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Mapeamento de imposto não encontrado na instância da posição fiscal: %s -> %s.\n"
|
||||
@@ -472,189 +523,195 @@ msgid "Taxes"
|
||||
msgstr "Impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "O campo montante é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "O campo tipo aplicável é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "O campo sinal base é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "O campo descendente dependente é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "O campo código é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "O campo domíno é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "O campo montante inclui base é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "O campo informação é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "O nome é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "O campo processamento python é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "A conciliação é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "O campo sequência é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "O campo sinal é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "O campo sinal de imposto é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "O modelo tem contas que a instância da posição fiscal não tem.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "O modelo tem impostos que a instância da posição fiscal não tem.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "O campo tipo é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "O tipo é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "O campo tipo de imposto utilizado é diferente.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "O tipo de utilizador é diferente.\n"
|
||||
@@ -662,19 +719,20 @@ msgstr "O tipo de utilizador é diferente.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -699,6 +757,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -710,6 +769,11 @@ msgstr "Actualizar lista de assistente"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Actualizar contas ascendentes de dependentes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -730,6 +794,11 @@ msgstr "Actualizar códigos de imposto"
|
||||
msgid "Update taxes"
|
||||
msgstr "Actualizar impostos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -739,13 +808,13 @@ msgid ""
|
||||
msgstr "Actualize contas ascendente que parecem (com base no código) a ser descendentes dos recém-criado. Se tiver uma conta de 430 com uma descendente 4.300.000, e uma conta de 4300 é criado, ascendente 4.300.000 serão definidos para 4300."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Conta %s actualizada.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Imposto actualizado %s.\n"
|
||||
@@ -756,7 +825,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Código de imposto actualizado %s.\n"
|
||||
@@ -768,6 +837,11 @@ msgstr "Código de imposto actualizado %s.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Actualizar modelo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
852
account_chart_update/i18n/pt_PT.po
Normal file
852
account_chart_update/i18n/pt_PT.po
Normal file
@@ -0,0 +1,852 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,account_id:0
|
||||
msgid "Account template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Existing accounts are updated. Accounts are searched by code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Existing tax codes are updated. Tax codes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
msgid "Fiscal position to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
msgid "Fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,log:0
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Not all the fields are tested for changes, just the main ones"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
msgid "Tax code to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,tax_id:0
|
||||
msgid "Tax template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
#: model:ir.ui.menu,name:account_chart_update.menu_wizard
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update chart of accounts from a template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
msgid "Update chart wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Update tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activ(a)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Inchide"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активное"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Примечания"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
852
account_chart_update/i18n/sk.po
Normal file
852
account_chart_update/i18n/sk.po
Normal file
@@ -0,0 +1,852 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-04-14 02:46+0000\n"
|
||||
"PO-Revision-Date: 2016-04-21 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,code_digits:0
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,account_id:0
|
||||
msgid "Account template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,account_ids:0
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:account.tax.code,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,chart_template_id:0
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Existing accounts are updated. Accounts are searched by code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid ""
|
||||
"Existing fiscal positions are updated. Fiscal positions are searched by "
|
||||
"name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Existing tax codes are updated. Tax codes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
|
||||
msgid ""
|
||||
"Fiscal position that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
|
||||
msgid "Fiscal position to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
|
||||
msgid "Fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,lang:0
|
||||
msgid ""
|
||||
"For records searched by name (taxes, tax codes, fiscal positions), the "
|
||||
"template name will be matched against the record name on this language."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,continue_on_errors:0
|
||||
msgid ""
|
||||
"If set, the wizard will continue to the next step even if there are minor "
|
||||
"errors (for example the parent account of a new account couldn't be set)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"If you leave these options set, the wizard will not just create new records,"
|
||||
" but also update records with changes (i.e. different tax amount)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,lang:0
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravil"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravené"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,log:0
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "New tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,code_digits:0
|
||||
msgid ""
|
||||
"No. of digits to use for account code. Make sure it is the same number as "
|
||||
"existing accounts."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Note: Not all the fields are tested for changes, just the main ones"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of deleted objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_account_tax_code
|
||||
msgid "Tax Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
|
||||
msgid "Tax code template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
|
||||
msgid "Tax code that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Tax code to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
|
||||
msgid "Tax code to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_code_ids:0
|
||||
msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,tax_id:0
|
||||
msgid "Tax template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
|
||||
msgid "Tax that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,tax_ids:0
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_account:0
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
#: model:ir.ui.menu,name:account_chart_update.menu_wizard
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update chart of accounts from a template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
msgid "Update chart wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax_code:0
|
||||
msgid "Update tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_tax:0
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
"Update the parent of accounts that seem (based on the code) to be children "
|
||||
"of the newly created ones. If you had an account 430 with a child 4300000, "
|
||||
"and a 4300 account is created, the 4300000 parent will be set to 4300."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax.code,type:0
|
||||
msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.account,type:0
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
@@ -3,13 +3,13 @@
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-07-01 12:24+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-22 05:31+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -24,7 +24,7 @@ msgid "# of digits"
|
||||
msgstr "# znakov"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Za instanco fiskalnega položaja: %s -> %s ni najdeno kontno mapiranje.\n"
|
||||
@@ -39,6 +39,11 @@ msgstr "Kontna predloga"
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr "Konto, ki ga je potrebno posodobiti (nov ali posodobljen iz predloge)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr "Konto, ki bo spremenjen na finančnem poročilu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -55,6 +60,17 @@ msgstr "Konti"
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr "Dodaj konto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr "Konto %s dodan v finančno poročilo %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -76,7 +92,7 @@ msgid "Close"
|
||||
msgstr "Zaključi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr "Koda ni najdena."
|
||||
@@ -97,7 +113,7 @@ msgid "Create/Update"
|
||||
msgstr "Ustvari/posodobi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr "Ustvarjen konto %s.\n"
|
||||
@@ -105,6 +121,7 @@ msgstr "Ustvarjen konto %s.\n"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -114,6 +131,7 @@ msgstr "Ustvaril"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -121,49 +139,49 @@ msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr "Ustvarjen ali posodobljen fiskalni položaj %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr "Ustvarjen davek %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr "Ustvarjena davčna koda %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr "Deaktivirano %d davčnih kod.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr "Deaktiviranih %d davkov\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr "Izjema pri ustvarjanju konta %s: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr "Izjema pri nastavljanju nadrejenega kontu %s podrejenega: %s - %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr "Izjema pri zapisu konta %s: %s - %s.\n"
|
||||
@@ -190,6 +208,24 @@ msgstr "Obstoječe kode davkov so posodobljene. Iskanje kod davkov po nazivu."
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr "Obstoječi davki so posodobljeni. Iskanje davkov po nazivu."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr "Mapiranje finančnega poročila, ki mora biti posodobljeno (novo ali posodobljeno v predlogi)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr "Finančno poročilo za posodobitev"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr "Finančna poročila"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -222,6 +258,7 @@ msgstr "Pri iskanju zapisov po nazivu (davki, kode davkov, fiskalni položaji),
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -250,6 +287,7 @@ msgstr "Jezik"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -259,6 +297,7 @@ msgstr "Zadnjič posodobil"
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -276,19 +315,19 @@ msgid "Messages and Errors"
|
||||
msgstr "Sporočila in napake"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr "Naziv ni najden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr "Naziv ali koda nista najdena."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Naziv ali opis nista najdena."
|
||||
@@ -318,7 +357,7 @@ msgid ""
|
||||
msgstr "Število znakov, ki se uporablja v kontni kodi. Zagotovite, da bo enako tistemu na obstoječih kontih."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr "Noben"
|
||||
@@ -330,6 +369,7 @@ msgstr "Opomba: glede sprememb niso testirana vsa polja, ampak le glavna polja"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -337,7 +377,7 @@ msgid "Notes"
|
||||
msgstr "Opombe"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -360,6 +400,17 @@ msgstr "Prejšnji"
|
||||
msgid "Records to create/update"
|
||||
msgstr "Zapisi, ki se ustvarjajo/posodabljajo"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr "Odstrani konto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr "Konto %s odstranjen iz finančnega poročila %s.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -391,13 +442,13 @@ msgid "Summary of updated objects"
|
||||
msgstr "Povzetek posodobljenih objektov"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr "Davek %s: konta prejetih plačil ni možno nastaviti.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr "Davek %s: konta izdanih plačil ni možno nastaviti.\n"
|
||||
@@ -434,13 +485,13 @@ msgid "Tax codes"
|
||||
msgstr "Kode davkov"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr "Davek je onemogočen.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr "Za instanco fiskalnega položaja: %s -> %s ni najdeno davčno mapiranje.\n"
|
||||
@@ -472,189 +523,195 @@ msgid "Taxes"
|
||||
msgstr "Davki"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr "Polje 'davek vključen v ceni' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr "Polje account_collected je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr "Polje account_paid je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr "Polje znesek je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr "Polje applicable type je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr "Polje base sign je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr "Polje base_code_id je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr "Polje 'podrejeno odvisno' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr "Polje koda je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr "Polje opis je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr "Polje domena je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr "Polje 'vključi osnovni znesek' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr "Polje podrobnosti je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr "Polje naziv je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr "Naziv je drugačen.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr "Polje notprintable je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr "Nadrejeno polje je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr "Nadrejeno polje 'parent_id' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr "Polje 'izvedi python' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr "Uskladitev je drugačna.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr "Polje ref_base_code_id je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr "Polje ref_tax_code_id je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr "Polje 'zaporedje' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr "Polje sign je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr "Polje tax sign je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr "Polje tax_code_id je drugačno..\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr "Predloga vsebuje konte, ki jih instanca fiskalnega položaja ne vsebuje.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr "Predloga vsebuje davke, ki jih instanca fiskalnega položaja ne vsebuje.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr "Polje 'tip' je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr "Tip je drugačen.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr "Polje type tax use je drugačno.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr "Polje 'tip uporabnika' je drugačno.\n"
|
||||
@@ -662,19 +719,20 @@ msgstr "Polje 'tip uporabnika' je drugačno.\n"
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
msgstr "Čarovnik bo posodobil konte, davke in fiskalne položaje glede na izbrano predlogo kontnega plana"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr "Čarovnik bo posodobil konte, davke, fiskalne položaje in finančna poročila glede na izbrano predlogo kontnega plana."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "Za deaktivacijo: ni v predlogi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -699,6 +757,7 @@ msgstr "Posodobitev kontnega plana po predlogi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -710,6 +769,11 @@ msgstr "Čarovnik za posodobitev kontnega plana"
|
||||
msgid "Update children accounts parent"
|
||||
msgstr "Posodobitev nadrejenega konta podrejenim"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr "Posodobi konte finančnega poročila"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -730,6 +794,11 @@ msgstr "Posodobitev davčnih kod"
|
||||
msgid "Update taxes"
|
||||
msgstr "Posodobitev davkov"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr "Posodobi mapiranje kontov finančnega poročila"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -739,13 +808,13 @@ msgid ""
|
||||
msgstr "Posodobitev nadrejenih kontov, ki so (glede na kodo) podrejeni novo ustvarjenim kontom. Če ste imeli konto 430 s podrejenim kontom 4300000, in se ustvari konto 4300, bo 4300 nastavljen kot nadrejeni kontu 4300000."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr "Konto %s posodobljen.\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr "Davek %s posodobljen.\n"
|
||||
@@ -756,7 +825,7 @@ msgid "Updated tax code"
|
||||
msgstr "Davčna koda posodobljena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr "Davčna koda %s posodobljena.\n"
|
||||
@@ -768,6 +837,11 @@ msgstr "Davčna koda %s posodobljena.\n"
|
||||
msgid "Updated template"
|
||||
msgstr "Predloga posodobljena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr "Pozor"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Napomene"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Anteckningar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "ปิด"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "บันทึกย่อ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Notlar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Hoạt động"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "Ðóng"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "Các ghi chú"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "激活"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "报废"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "备注"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-24 14:29+0000\n"
|
||||
"POT-Creation-Date: 2016-03-23 15:38+0000\n"
|
||||
"PO-Revision-Date: 2016-03-21 16:00+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -23,7 +23,7 @@ msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
|
||||
#, python-format
|
||||
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -38,6 +38,11 @@ msgstr ""
|
||||
msgid "Account that needs to be updated (new or updated in the template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,account_id:0
|
||||
msgid "Account to change on financial report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_account_id:0
|
||||
msgid "Account to update"
|
||||
@@ -54,6 +59,17 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "活躍"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Add account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
|
||||
#, python-format
|
||||
msgid "Added account %s to financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid "Cancel"
|
||||
@@ -75,7 +91,7 @@ msgid "Close"
|
||||
msgstr "關閉"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
|
||||
#, python-format
|
||||
msgid "Code not found."
|
||||
msgstr ""
|
||||
@@ -96,7 +112,7 @@ msgid "Create/Update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
|
||||
#, python-format
|
||||
msgid "Created account %s.\n"
|
||||
msgstr ""
|
||||
@@ -104,6 +120,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
|
||||
@@ -113,6 +130,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,create_date:0
|
||||
#: field:wizard.update.charts.accounts.account,create_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,create_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,create_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,create_date:0
|
||||
@@ -120,49 +138,49 @@ msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
|
||||
#, python-format
|
||||
msgid "Created tax %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
|
||||
#, python-format
|
||||
msgid "Created tax code %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
|
||||
#, python-format
|
||||
msgid "Deactivated %d tax codes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
|
||||
#, python-format
|
||||
msgid "Deactivated %d taxes\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
|
||||
#, python-format
|
||||
msgid "Exception creating account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
|
||||
#, python-format
|
||||
msgid "Exception setting the parent of account %s children: %s - %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
|
||||
#, python-format
|
||||
msgid "Exception writing account %s: %s - %s.\n"
|
||||
msgstr ""
|
||||
@@ -189,6 +207,24 @@ msgstr ""
|
||||
msgid "Existing taxes are updated. Taxes are searched by name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
|
||||
msgid ""
|
||||
"Financial report mapping that needs to be updated (new or updated in the "
|
||||
"template)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
|
||||
msgid "Financial report to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
#: field:wizard.update.charts.accounts,financial_report_ids:0
|
||||
msgid "Financial reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
|
||||
msgid "Fiscal position template"
|
||||
@@ -221,6 +257,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,id:0
|
||||
#: field:wizard.update.charts.accounts.account,id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,id:0
|
||||
#: field:wizard.update.charts.accounts.tax,id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,id:0
|
||||
@@ -249,6 +286,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.account,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_uid:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
|
||||
@@ -258,6 +296,7 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,write_date:0
|
||||
#: field:wizard.update.charts.accounts.account,write_date:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,write_date:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax,write_date:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,write_date:0
|
||||
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
|
||||
#, python-format
|
||||
msgid "Name not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
|
||||
#, python-format
|
||||
msgid "Name or code not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
@@ -317,7 +356,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
|
||||
#, python-format
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
@@ -329,6 +368,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,notes:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,notes:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax,notes:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,notes:0
|
||||
@@ -336,7 +376,7 @@ msgid "Notes"
|
||||
msgstr "備註"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
@@ -359,6 +399,17 @@ msgstr ""
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
|
||||
#, python-format
|
||||
msgid "Removed account %s from financial report %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,state:0
|
||||
msgid "Status"
|
||||
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
|
||||
#, python-format
|
||||
msgid "Tax %s: The collected account can not be set.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
|
||||
#, python-format
|
||||
msgid "Tax %s: The paid account can not be set.\n"
|
||||
msgstr ""
|
||||
@@ -433,13 +484,13 @@ msgid "Tax codes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
|
||||
#, python-format
|
||||
msgid "Tax is disabled.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
|
||||
#, python-format
|
||||
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
|
||||
msgstr ""
|
||||
@@ -471,189 +522,195 @@ msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#, python-format
|
||||
msgid "The Tax Included in Price field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
|
||||
#, python-format
|
||||
msgid "The account_collected field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
|
||||
#, python-format
|
||||
msgid "The account_paid field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#, python-format
|
||||
msgid "The amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
|
||||
#, python-format
|
||||
msgid "The applicable type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
|
||||
#, python-format
|
||||
msgid "The base sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
|
||||
#, python-format
|
||||
msgid "The base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#, python-format
|
||||
msgid "The child depend field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#, python-format
|
||||
msgid "The code field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "The description field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
|
||||
#, python-format
|
||||
msgid "The domain field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
|
||||
#, python-format
|
||||
msgid "The include base amount field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
|
||||
#, python-format
|
||||
msgid "The info field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
|
||||
#, python-format
|
||||
msgid "The name field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
|
||||
#, python-format
|
||||
msgid "The name is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
|
||||
#, python-format
|
||||
msgid "The notprintable field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
|
||||
#, python-format
|
||||
msgid "The parent field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
|
||||
#, python-format
|
||||
msgid "The parent_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
|
||||
#, python-format
|
||||
msgid "The python compute field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
|
||||
#, python-format
|
||||
msgid "The reconcile is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
|
||||
#, python-format
|
||||
msgid "The ref_base_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "The ref_tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
|
||||
#, python-format
|
||||
msgid "The sequence field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
|
||||
#, python-format
|
||||
msgid "The sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#, python-format
|
||||
msgid "The tax sign field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
|
||||
#, python-format
|
||||
msgid "The tax_code_id field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
|
||||
#, python-format
|
||||
msgid "The template has accounts the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
|
||||
#, python-format
|
||||
msgid "The template has taxes the fiscal position instance does not.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "The type field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
|
||||
#, python-format
|
||||
msgid "The type is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
|
||||
#, python-format
|
||||
msgid "The type tax use field is different.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "The user type is different.\n"
|
||||
msgstr ""
|
||||
@@ -661,19 +718,20 @@ msgstr ""
|
||||
#. module: account_chart_update
|
||||
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
|
||||
msgid ""
|
||||
"This wizard will update your accounts, taxes and fiscal positions according "
|
||||
"to the selected chart template"
|
||||
"This wizard will update your accounts, taxes, fiscal positions and financial"
|
||||
" reports according to the selected chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,type:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,type:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: field:wizard.update.charts.accounts.tax,type:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,type:0
|
||||
@@ -698,6 +756,7 @@ msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
|
||||
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
|
||||
@@ -709,6 +768,11 @@ msgstr ""
|
||||
msgid "Update children accounts parent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update financial report accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: field:wizard.update.charts.accounts,update_fiscal_position:0
|
||||
msgid "Update fiscal positions"
|
||||
@@ -729,6 +793,11 @@ msgstr ""
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_financial_reports:0
|
||||
msgid "Update the financial reports mapping the accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
|
||||
msgid ""
|
||||
@@ -738,13 +807,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
|
||||
#, python-format
|
||||
msgid "Updated account %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
|
||||
#, python-format
|
||||
msgid "Updated tax %s.\n"
|
||||
msgstr ""
|
||||
@@ -755,7 +824,7 @@ msgid "Updated tax code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
|
||||
#, python-format
|
||||
msgid "Updated tax code %s.\n"
|
||||
msgstr ""
|
||||
@@ -767,6 +836,11 @@ msgstr ""
|
||||
msgid "Updated template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.financial.report,type:0
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
from . import account_tax_code
|
||||
@@ -1,37 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# OpenERP, Open Source Management Solution
|
||||
# Copyright (c) 2014 ACSONE SA/NV (http://acsone.eu)
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
from openerp import models, fields
|
||||
|
||||
|
||||
class AccountTaxCode(models.Model):
|
||||
_inherit = 'account.tax.code'
|
||||
|
||||
active = fields.Boolean('Active', default=True)
|
||||
|
||||
def _sum(self, cr, uid, ids, name, args, context, where='',
|
||||
where_params=()):
|
||||
try:
|
||||
return super(AccountTaxCode, self)._sum(
|
||||
cr, uid, ids, name, args, context, where=where,
|
||||
where_params=where_params)
|
||||
except:
|
||||
cr.rollback()
|
||||
return dict.fromkeys(ids, 0.0)
|
||||
24
account_chart_update/views/account_config_settings_view.xml
Normal file
24
account_chart_update/views/account_config_settings_view.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<record id="view_account_config_settings" model="ir.ui.view">
|
||||
<field name="name">Open Account Chart Update Wizard</field>
|
||||
<field name="model">account.config.settings</field>
|
||||
<field name="inherit_id" ref="account.view_account_config_settings"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='%(account.open_account_charts_modules)d']/.." position="after">
|
||||
<div>
|
||||
<button string="Update chart template"
|
||||
name="%(action_wizard_update_chart)d"
|
||||
context="{'default_company_id': company_id}"
|
||||
type="action"
|
||||
class="oe_link"
|
||||
/>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<record id="view_tax_code_form_active" model="ir.ui.view">
|
||||
<field name="name">account.tax.code.form.active</field>
|
||||
<field name="model">account.tax.code</field>
|
||||
<field name="inherit_id" ref="account.view_tax_code_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="company_id" position="after">
|
||||
<field name="active"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
@@ -1,26 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.
|
||||
# (http://www.pexego.es)
|
||||
# @authors: Jordi Esteve (Zikzakmedia), Borja López Soilán (Pexego)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
"""
|
||||
Account Chart Update Wizard
|
||||
"""
|
||||
# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import wizard_chart_update
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,156 +1,133 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<!-- © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<!-- Wizard for Multi Charts of Accounts -->
|
||||
<record id="view_update_multi_chart" model="ir.ui.view">
|
||||
<field name="name">Update Chart of Accounts from a Chart Template</field>
|
||||
<field name="model">wizard.update.charts.accounts</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<header>
|
||||
<field
|
||||
name="state"
|
||||
select="2"
|
||||
widget="statusbar"
|
||||
statusbar_visible="init,ready,done"
|
||||
statusbar_colors='{"ready":"blue","done":"blue"}' />
|
||||
</header>
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<h3>
|
||||
<p><center>This wizard will update your accounts, taxes and fiscal positions according to the selected chart template</center></p>
|
||||
</h3>
|
||||
</group>
|
||||
<group string="Chart of Accounts" attrs="{'invisible':[('state','!=','init')]}">
|
||||
<field name="company_id"
|
||||
attrs="{'invisible':[('state','!=','init')]}"
|
||||
/>
|
||||
<field name="code_digits" attrs="{'invisible':[('state','!=','init')]}" />
|
||||
<field name="chart_template_id"
|
||||
domain="[('visible', '=', True)]"
|
||||
attrs="{'invisible': [('state','!=','init')], 'required': True}"
|
||||
/>
|
||||
<field name="lang" attrs="{'invisible':[('state','!=','init')]}" />
|
||||
</group>
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<group string="Update records?">
|
||||
<field name="update_tax" />
|
||||
<field name="update_account" />
|
||||
<field name="update_fiscal_position" />
|
||||
</group>
|
||||
<group string="Other options" attrs="{'invisible':[('state','!=','init')]}">
|
||||
<field name="continue_on_errors" />
|
||||
</group>
|
||||
</group>
|
||||
|
||||
<record id="view_update_multi_chart" model="ir.ui.view">
|
||||
<field name="name">Update Chart of Accounts from a Chart Template
|
||||
</field>
|
||||
<field name="model">wizard.update.charts.accounts</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Update chart of accounts from a template" version="7.0">
|
||||
<header>
|
||||
<field name="state" select="2" widget="statusbar"
|
||||
statusbar_visible="init,ready,done" statusbar_colors='{"ready":"blue","done":"blue"}' />
|
||||
</header>
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<h3>
|
||||
<p><center>This wizard will update your accounts, taxes and fiscal positions according to the selected chart template</center></p>
|
||||
</h3>
|
||||
</group>
|
||||
<group string="Chart of Accounts" attrs="{'invisible':[('state','!=','init')]}">
|
||||
<field name="company_id"
|
||||
attrs="{'invisible':[('state','!=','init')]}"
|
||||
/>
|
||||
<field name="code_digits" attrs="{'invisible':[('state','!=','init')]}" />
|
||||
<field name="chart_template_id"
|
||||
domain="[('visible', '=', True)]"
|
||||
attrs="{'invisible': [('state','!=','init')], 'required': True}"
|
||||
/>
|
||||
<field name="lang" attrs="{'invisible':[('state','!=','init')]}" />
|
||||
</group>
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<group string="Update records?">
|
||||
<field name="update_tax_code" />
|
||||
<field name="update_tax" />
|
||||
<field name="update_account" />
|
||||
<field name="update_fiscal_position" />
|
||||
</group>
|
||||
<group string="Other options" attrs="{'invisible':[('state','!=','init')]}">
|
||||
<field name="update_children_accounts_parent" />
|
||||
<field name="continue_on_errors" />
|
||||
</group>
|
||||
</group>
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<h5>
|
||||
<p>If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)</p>
|
||||
<p>Note: Only the changed fields are updated.</p>
|
||||
</h5>
|
||||
</group>
|
||||
<group attrs="{'invisible':[('state','!=','ready'),]}"
|
||||
string="Records to create/update">
|
||||
<notebook colspan="4">
|
||||
<page string="Taxes" attrs="{'invisible': [('update_tax', '=', False)]}">
|
||||
<field name="tax_ids" nolabel="1">
|
||||
<tree string="Taxes" colors="red:type=='updated'">
|
||||
<field name="tax_id" />
|
||||
<field name="update_tax_id" />
|
||||
<field name="type_tax_use"/>
|
||||
<field name="notes"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Accounts" attrs="{'invisible': [('update_account', '=', False)]}">
|
||||
<field name="account_ids" nolabel="1">
|
||||
<tree string="Accounts" colors="red:type=='updated'">
|
||||
<field name="account_id" />
|
||||
<field name="update_account_id" />
|
||||
<field name="notes"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Fiscal positions" attrs="{'invisible': [('update_fiscal_position', '=', False)]}">
|
||||
<field name="fiscal_position_ids" nolabel="1">
|
||||
<tree string="Fiscal positions" colors="red:type=='updated'">
|
||||
<field name="fiscal_position_id" />
|
||||
<field name="update_fiscal_position_id" />
|
||||
<field name="notes"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
|
||||
<group attrs="{'invisible':[('state','!=','init')]}">
|
||||
<h5>
|
||||
<p>If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)</p>
|
||||
<p>Note: Not all the fields are tested for changes, just the main ones</p>
|
||||
</h5>
|
||||
</group>
|
||||
<group attrs="{'invisible':[('state','!=','ready'),]}"
|
||||
string="Records to create/update">
|
||||
<notebook colspan="4">
|
||||
<page string="Tax codes" attrs="{'invisible': [('update_tax_code', '=', False)]}">
|
||||
<field name="tax_code_ids">
|
||||
<tree string="Tax codes" colors="red:type=='updated'">
|
||||
<field name="tax_code_id" />
|
||||
<field name="update_tax_code_id" />
|
||||
<field name="notes" readonly="1" />
|
||||
<field name="type" invisible="1" />
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
</notebook>
|
||||
</group>
|
||||
|
||||
<page string="Taxes" attrs="{'invisible': [('update_tax', '=', False)]}">
|
||||
<field name="tax_ids" nolabel="1">
|
||||
<tree string="Taxes" colors="red:type=='updated'">
|
||||
<field name="tax_id" />
|
||||
<field name="update_tax_id" />
|
||||
<field name="notes" readonly="1"/>
|
||||
<field name="type" invisible="1" />
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Accounts" attrs="{'invisible': [('update_account', '=', False)]}">
|
||||
<field name="account_ids" nolabel="1">
|
||||
<tree string="Accounts" colors="red:type=='updated'">
|
||||
<field name="account_id" />
|
||||
<field name="update_account_id" />
|
||||
<field name="notes" readonly="1"/>
|
||||
<field name="type" invisible="1" />
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Fiscal positions" attrs="{'invisible': [('update_fiscal_position', '=', False)]}">
|
||||
<field name="fiscal_position_ids" nolabel="1">
|
||||
<tree string="Fiscal positions" colors="red:type=='updated'">
|
||||
<field name="fiscal_position_id" />
|
||||
<field name="update_fiscal_position_id" />
|
||||
<field name="notes" readonly="1" />
|
||||
<field name="type" invisible="1" />
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<group col="4" colspan="4"
|
||||
attrs="{'invisible':[('state','!=','done'),]}">
|
||||
<separator colspan="4" string="Log" />
|
||||
<field name="log" colspan="4" nolabel="1" />
|
||||
<group colspan="4">
|
||||
<separator colspan="4" string="Summary of created objects" />
|
||||
<field name="new_taxes" />
|
||||
<field name="new_accounts" />
|
||||
<field name="new_fps" />
|
||||
</group>
|
||||
<group colspan="4">
|
||||
<separator colspan="4" string="Summary of updated objects" />
|
||||
<field name="updated_taxes" />
|
||||
<field name="deleted_taxes" />
|
||||
<field name="updated_accounts" />
|
||||
<field name="updated_fps" />
|
||||
</group>
|
||||
</group>
|
||||
|
||||
</notebook>
|
||||
</group>
|
||||
<footer>
|
||||
<span states="init">
|
||||
<button name="action_find_records" string="Next" class="oe_highlight" type="object" />
|
||||
</span>
|
||||
<span states="ready">
|
||||
<button name="action_init" string="Previous" type="object" />
|
||||
<button name="action_update_records" string="Create/Update" type="object" class="oe_highlight" />
|
||||
</span>
|
||||
<span states="init,ready"> or </span>
|
||||
<button special="cancel" string="Close" class="oe_link" />
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<group col="4" colspan="4"
|
||||
attrs="{'invisible':[('state','!=','done'),]}">
|
||||
<separator colspan="4" string="Log" />
|
||||
<field name="log" colspan="4" nolabel="1" />
|
||||
<group colspan="4">
|
||||
<separator colspan="4" string="Summary of created objects" />
|
||||
<field name="new_tax_codes" />
|
||||
<field name="new_taxes" />
|
||||
<field name="new_accounts" />
|
||||
<field name="new_fps" />
|
||||
</group>
|
||||
<group colspan="4">
|
||||
<separator colspan="4" string="Summary of updated objects" />
|
||||
<field name="updated_tax_codes" />
|
||||
<field name="updated_taxes" />
|
||||
<field name="updated_accounts" />
|
||||
<field name="updated_fps" />
|
||||
</group>
|
||||
<group colspan="4">
|
||||
<separator colspan="4" string="Summary of deleted objects" />
|
||||
<field name="deleted_tax_codes" />
|
||||
</group>
|
||||
</group>
|
||||
<record id="action_wizard_update_chart" model="ir.actions.act_window">
|
||||
<field name="name">Update chart of accounts</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">wizard.update.charts.accounts</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
<footer>
|
||||
<div states="init">
|
||||
<button name="action_find_records" string="Next" class="oe_highlight" type="object" />
|
||||
or
|
||||
<button special="cancel" string="Cancel" class="oe_link" />
|
||||
</div>
|
||||
<div states="ready">
|
||||
<button name="action_init" string="Previous" type="object" />
|
||||
<button name="action_update_records" string="Create/Update" type="object" class="oe_highlight" />
|
||||
or
|
||||
<button special="cancel" string="Cancel" class="oe_link" />
|
||||
</div>
|
||||
<div states="done">
|
||||
<button special="cancel" string="Close" class="oe_link" />
|
||||
</div>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_wizard_update_chart" model="ir.actions.act_window">
|
||||
<field name="name">Update chart of accounts</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">wizard.update.charts.accounts</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
<menuitem sequence="0" parent="account.account_account_menu" action="action_wizard_update_chart" id="menu_wizard" />
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
</odoo>
|
||||
|
||||
Reference in New Issue
Block a user