mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Merge pull request #658 from amcor/11.0-mig-account_chart_update
11.0 mig account chart update
This commit is contained in:
111
account_chart_update/README.rst
Normal file
111
account_chart_update/README.rst
Normal file
@@ -0,0 +1,111 @@
|
||||
===========================================================
|
||||
Detect changes and update the Account Chart from a template
|
||||
===========================================================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Mature
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/account-financial-tools/tree/11.0/account_chart_update
|
||||
:alt: OCA/account-financial-tools
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/account-financial-tools-11-0/account-financial-tools-11-0-account_chart_update
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/92/11.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
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
|
||||
template.
|
||||
|
||||
The wizard:
|
||||
|
||||
* Allows the user to compare a chart and a template showing differences
|
||||
on accounts, taxes, tax codes and fiscal positions.
|
||||
* It may create the new account, taxes, tax codes and fiscal positions detected
|
||||
on the template.
|
||||
* It can also update (overwrite) the accounts, taxes, tax codes and fiscal
|
||||
positions that got modified on the template.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
The wizard, accesible from *Accounting > Settings > 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 / deactivated with some
|
||||
information about the detected differences, and allow the user to exclude
|
||||
records individually.
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* Generate and update account reconcile models.
|
||||
* Generate XML-ID for fiscal position tax and account mapping lines.
|
||||
* Allow to select independently operations to perform (create, update,
|
||||
deactivate).
|
||||
* Detect fiscal positions to deactivate?
|
||||
|
||||
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 <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_chart_update%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Tecnativa
|
||||
* BCIM
|
||||
* Okia
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
* Jacques-Etienne Baudoux <je@bcim.be>
|
||||
* Sylvain Van Hoof <sylvain@okia.be>
|
||||
* Nacho Muñoz <nacmuro@gmail.com>
|
||||
* Alberto Martín - Guadaltech <alberto.martin@guadaltech.es>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
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.
|
||||
|
||||
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/11.0/account_chart_update>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
6
account_chart_update/__init__.py
Normal file
6
account_chart_update/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# © 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 wizard
|
||||
26
account_chart_update/__manifest__.py
Normal file
26
account_chart_update/__manifest__.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# Copyright 2016 Jacques-Etienne Baudoux <je@bcim.be>
|
||||
# Copyright 2016 Sylvain Van Hoof <sylvain@okia.be>
|
||||
# Copyright 2015-2018 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': "Detect changes and update the Account Chart from a template",
|
||||
"summary": "Wizard to update a company's account chart from a template",
|
||||
'version': "11.0.1.0.0",
|
||||
'author': "Tecnativa, "
|
||||
"BCIM, "
|
||||
"Okia, "
|
||||
"Odoo Community Association (OCA)",
|
||||
'website': "http://github.com/OCA/account-financial-tools",
|
||||
'depends': ["account"],
|
||||
'development_status': 'Mature',
|
||||
'category': "Accounting",
|
||||
'license': "AGPL-3",
|
||||
"data": [
|
||||
'wizard/wizard_chart_update_view.xml',
|
||||
'views/account_config_settings_view.xml',
|
||||
],
|
||||
'installable': True,
|
||||
}
|
||||
526
account_chart_update/i18n/am.po
Normal file
526
account_chart_update/i18n/am.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 por"
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ar.po
Normal file
526
account_chart_update/i18n/ar.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "الشركة"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "أنشئ بواسطة"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "أنشئ في"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "اسم العرض"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "المعرف"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "آخر تعديل في"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "آخر تحديث بواسطة"
|
||||
|
||||
#. 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 "آخر تحديث في"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "الحالة"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "النوع"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/bg.po
Normal file
526
account_chart_update/i18n/bg.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Фирма"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Създадено от"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Създадено на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Име за показване"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Последно обновено на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Последно обновено от"
|
||||
|
||||
#. 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 "Последно обновено на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Вид"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/bs.po
Normal file
526
account_chart_update/i18n/bs.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Kompanija"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirao"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Prikaži naziv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnje mijenjano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnji ažurirao"
|
||||
|
||||
#. 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 "Zadnje ažurirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vrsta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ca.po
Normal file
526
account_chart_update/i18n/ca.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Companyia"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creat per"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creat el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Veure el nom"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Darrera modificació el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Darrera Actualització per"
|
||||
|
||||
#. 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 "Darrera Actualització el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Estat"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tipus"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ca_ES.po
Normal file
526
account_chart_update/i18n/ca_ES.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Companyia"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Estat"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/cs.po
Normal file
526
account_chart_update/i18n/cs.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Společnost"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vytvořil(a)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vytvořeno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zobrazovaný název"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Naposled upraveno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Naposled upraveno"
|
||||
|
||||
#. 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 "Naposled upraveno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Druh"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/da.po
Normal file
526
account_chart_update/i18n/da.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oprettet af"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oprettet den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vist navn"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sidst ændret den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sidst opdateret af"
|
||||
|
||||
#. 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 "Sidst opdateret den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
553
account_chart_update/i18n/de.po
Normal file
553
account_chart_update/i18n/de.po
Normal file
@@ -0,0 +1,553 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-12-22 23:20+0000\n"
|
||||
"PO-Revision-Date: 2017-12-22 23:20+0000\n"
|
||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr "Ziffernanzahl"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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\"> oder </span>"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
msgid "Account template"
|
||||
msgstr "Kontenvorlage"
|
||||
|
||||
#. 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 (neu oder gem. Vorlage aktualisiert)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr "Zu aktualisierendes Konto"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Konten"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr "Kontenrahmenvorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr "Kontenrahmenvorlagen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr "Kontenrahmen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr "Bei Fehlern fortfahren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Create/Update"
|
||||
msgstr "Anlegen/Aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr "Konto %s angelegt."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Erstellt von"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Erstellt am"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr "Steuerkontierung %s angelegt bzw. aktualisiert."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr "Steuer %s angelegt."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr "Steuer %s deaktiviert."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr "Deaktivierte Steuern"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Bestimmt, wo die Steuer ausgewählt werden kann. Hinweis: 'Nie' bedeutet, "
|
||||
"dass eine Steuer nicht selbständig ausgewählt werden kann, sie aber sehr "
|
||||
"wohl noch in einer Gruppe eingesetzt werden kann."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr "Unterschiede in diesen Feldern: %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Anzeigename"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr "Fehler bei Anlage von Konto %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr "Fehler bei Speichern von Konto %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 ""
|
||||
"Bestehende Konten sind aktualisiert. Konten wurden nach Schlüssel gesucht."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Bestehende Steuerkontozuordnungen wurden aktualisiert. Sie wurden nach "
|
||||
"Bezeichnung gesucht."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Bestehende Steuern wurden aktualisiert. Steuern wurden nach Bezeichnung "
|
||||
"gesucht."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
msgid "Fiscal position template"
|
||||
msgstr "Steuerzuordnungsvorlage"
|
||||
|
||||
#. 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 ""
|
||||
"Steuerzuordnung muss aktualisiert werden (neu oder aus Vorlage aktualisiert)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zu aktualisierende Steuerzuordnung"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Steuerzuordnungen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Bei Datensätzen, die nach Bezeichnung gesucht werden (Steuern, Zuordnungen),"
|
||||
" wir die Vorlagenbezeichnung gegen den Satznamen in dieser Sprache "
|
||||
"verglichen."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Wenn gesetzt, setzt der Assistent selbst bei kleinen Fehlern mit dem "
|
||||
"nächsten Schritt fort."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Wenn Sie diese Option gesetzt lassen, erstellt der Assistent nicht nur neue "
|
||||
"Datensätze, sondern aktualisiert auch geänderte (z. B. bei abweichendem "
|
||||
"Steuersatz)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr "Schließt alle Kontenrahmenvorlagen ein."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zuletzt geändert am"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zuletzt geändert von"
|
||||
|
||||
#. 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 "Zuletzt geändert am"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr "Log"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr "Meldungen und Fehler"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Bezeichnung oder Beschreibung nicht gefunden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr "Neue Konten"
|
||||
|
||||
#. 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 "Neue Steuerzuordnungen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
msgstr "Neue Steuern"
|
||||
|
||||
#. 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 "Neue Vorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr "Nächster"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr "Kein Konto mit diesem Schlüssel gefunden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr "Keine Steuerzuordnung mit dieser Bezeichnung gefunden."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Anzahl Ziffern, die für die Kontenschlüssel verwendet werden. Stellen Sie "
|
||||
"bitte sicher, die gleiche Anzahl wie bestehende Konten zu verwenden."
|
||||
|
||||
#. 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 "Hinweis: Nur geänderte Felder werden aktualisiert."
|
||||
|
||||
#. 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 "Hinweise"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ein oder mehrere Fehler entdeckt!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr "Andere Optionen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr "Voriger"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr "Zu aktualisierende Datensätze"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr "Wählen Sie zu aktualisierende Datensätze"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr "Zusammenfassung erstellter Objekte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr "Zusammenfassung aktualisierter Objekte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr "Steuerumfang"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr "Steuer ist ausgeschaltet."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
msgid "Tax template"
|
||||
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 ""
|
||||
"Steuer, die aktualisiert werden muss (neu oder aus Vorlage aktualisiert)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr "Zu deaktivierende Steuer"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr "Zu aktualisierende Steuer"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Steuern"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
"Dieser Assistent aktualisiert Ihre Konten, Steuern und Steuerzuordnungen "
|
||||
"gemäß ausgewählter Kontenrahmenvorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "Zu deaktivieren: Nicht in Vorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Art"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr "Aktualisiere Konten"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr "Aktualisiere Kontenrahmen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr "Aktualisiere Kontenrahmenvorlage"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Assistent für Kontenrahmenaktualisierung"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr "Aktualisiere Steuerzuordnungen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr "Datensätze aktualisieren?"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr "Steuern aktualisieren"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr "Konto %saktualisieren ."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr "Aktualisierte Konten"
|
||||
|
||||
#. 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 "Aktualisierte Steuerzuordnungen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr "Steuer %s aktualisiert."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
msgstr "Steuern aktualisiert"
|
||||
|
||||
#. 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 "Vorlage aktualisiert"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr "Assistent abgeschlossen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr "wizard.update.charts.accounts"
|
||||
526
account_chart_update/i18n/el_GR.po
Normal file
526
account_chart_update/i18n/el_GR.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Εταιρεία"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Δημιουργήθηκε από "
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Κωδικός"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Τελευταία ενημέρωση από"
|
||||
|
||||
#. 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 "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/en_GB.po
Normal file
526
account_chart_update/i18n/en_GB.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Created by"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Created on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Display Name"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Modified on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
525
account_chart_update/i18n/es.po
Normal file
525
account_chart_update/i18n/es.po
Normal file
@@ -0,0 +1,525 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 00:20+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 00:20+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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\"> o </span>"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
msgid "Account template"
|
||||
msgstr "Plantilla de cuenta"
|
||||
|
||||
#. 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 "Cuenta que necesita ser actualizada (nueva o cambiada en la plantilla)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr "Plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr "Planes contables"
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr "Continuar en errores"
|
||||
|
||||
#. 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:613
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr "Creada cuenta %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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 el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:714
|
||||
#, python-format
|
||||
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:580
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr "Creado impuesto %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:575
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr "Deactivado impuesto %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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 si mismo; aun así, puede utilizarse en un grupo."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:451
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr "Diferencias en estos campos: %s."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 a mostrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:622
|
||||
#, 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:644
|
||||
#, 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 existentes serán actualizadas. Las cuentas se buscan por código."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 serán actualizadas. Las posiciones fiscales se buscan por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 buscan por nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 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)."
|
||||
msgstr "Posición fiscal que necesita ser actualizada (nuevo o modificada en la plantilla)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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 será casado contra el nombre del registro en este idioma."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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, el asistente continuará al siguiente paso aunque haya errores."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 estas opciones establecidas, el asistente no solo crearé nuevos registros, si no que también actualizará registros con cambios (por ejemplo, diferente importe de impuesto)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 contables."
|
||||
|
||||
#. 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
|
||||
#: 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
|
||||
#: 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 por"
|
||||
|
||||
#. 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 el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr "Registro (Log)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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:474
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr "Nombre o descripción no encontrada."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nuevas posiciones fiscales"
|
||||
|
||||
#. 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
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "New template"
|
||||
msgstr "Nueva plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr "Siguiente"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr "No se ha encontrado cuenta con este código."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:551
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr "No se ha encontrado posición fiscal con este nombre."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 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: Solo los campos cambiados se actualizan."
|
||||
|
||||
#. 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:246
|
||||
#, python-format
|
||||
msgid "One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr "Se ha detectado uno o más errores\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr "Otras opciones"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:667
|
||||
#, python-format
|
||||
msgid "Post-updated tax %s."
|
||||
msgstr "Impuesto %s post-actualizado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_rejected_new_account_number
|
||||
msgid "Rejected new account number"
|
||||
msgstr "Número de nuevas cuentas rechazadas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_rejected_updated_account_number
|
||||
msgid "Rejected updated account number"
|
||||
msgstr "Número de cuentas a actualizar rechazadas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr "Seleccione 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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:456
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr "Impuesto desactivado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
msgid "Tax template"
|
||||
msgstr "Plantilla de impuesto"
|
||||
|
||||
#. 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 "Impuesto que necesita ser actualizado (nuevo o modificado en la plantilla)."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Tax to deactivate"
|
||||
msgstr "Impuesto a deactivar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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:501
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr "A deactivar: no está en la plantilla"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
msgid "Update chart of accounts"
|
||||
msgstr "Actualizar plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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 de actualización de plan contable"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr "¿Actualizar registros?"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:635
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr "Cuenta %s actualizada."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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:588
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr "Impuesto %s actualizado."
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
|
||||
#: selection:wizard.update.charts.accounts.tax,type:0
|
||||
msgid "Updated template"
|
||||
msgstr "Plantilla actualizada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr "Asistente completado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr "wizard.update.charts.accounts"
|
||||
526
account_chart_update/i18n/es_AR.po
Normal file
526
account_chart_update/i18n/es_AR.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Mostrar Nombre"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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 realizada por"
|
||||
|
||||
#. 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 el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_CL.po
Normal file
526
account_chart_update/i18n/es_CL.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_CO.po
Normal file
526
account_chart_update/i18n/es_CO.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 Público"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 el"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Actualizado por"
|
||||
|
||||
#. 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 "Actualizado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_CR.po
Normal file
526
account_chart_update/i18n/es_CR.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima actualización por"
|
||||
|
||||
#. 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 "Ultima actualización en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_DO.po
Normal file
526
account_chart_update/i18n/es_DO.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
527
account_chart_update/i18n/es_EC.po
Normal file
527
account_chart_update/i18n/es_EC.po
Normal file
@@ -0,0 +1,527 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Cristian Salamea <ovnicraft@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: Cristian Salamea <ovnicraft@gmail.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_ES.po
Normal file
526
account_chart_update/i18n/es_ES.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 para mostrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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 por"
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_MX.po
Normal file
526
account_chart_update/i18n/es_MX.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 desplegado"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima modificacion realizada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima actualizacion por"
|
||||
|
||||
#. 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 "Ultima actualización realizada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_PE.po
Normal file
526
account_chart_update/i18n/es_PE.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 a Mostrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima Modificación en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Actualizado última vez por"
|
||||
|
||||
#. 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 "Ultima Actualización"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_PY.po
Normal file
526
account_chart_update/i18n/es_PY.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima actualización por"
|
||||
|
||||
#. 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 "Ultima actualización en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/es_VE.po
Normal file
526
account_chart_update/i18n/es_VE.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Mostrar nombre"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Modificada por última vez"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 realizada por"
|
||||
|
||||
#. 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 "Ultima actualizacion en"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/et.po
Normal file
526
account_chart_update/i18n/et.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Ettevõte"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Loonud"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Loodud"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Näidatav nimi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Viimati muudetud"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Viimati uuendatud"
|
||||
|
||||
#. 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 "Viimati uuendatud"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Olek"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tüüp"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/eu.po
Normal file
526
account_chart_update/i18n/eu.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nork sortua"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Created on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Izena erakutsi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Mota"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/fa.po
Normal file
526
account_chart_update/i18n/fa.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "ایجاد شده توسط"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "ایجاد شده در"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "نام نمایشی"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "شناسه"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "آخرین به روز رسانی توسط"
|
||||
|
||||
#. 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 "آخرین به روز رسانی در"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "نوع"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/fi.po
Normal file
526
account_chart_update/i18n/fi.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Yritys"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Luonut"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Luotu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nimi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Viimeksi muokattu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Viimeksi päivittänyt"
|
||||
|
||||
#. 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 "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tyyppi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/fr.po
Normal file
526
account_chart_update/i18n/fr.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Comptes"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créer par"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créer le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nom à afficher"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Dernière modification le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Mis à jour par"
|
||||
|
||||
#. 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 "Mis à jour le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "État"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/fr_CA.po
Normal file
526
account_chart_update/i18n/fr_CA.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créé par"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créé le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Afficher le nom"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Identifiant"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Dernière mise à jour par"
|
||||
|
||||
#. 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 "Dernière mise à jour le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/fr_CH.po
Normal file
526
account_chart_update/i18n/fr_CH.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créé par"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Créé le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nom affiché"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Dernière modification le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Modifié par"
|
||||
|
||||
#. 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 "Modifié le"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/gl.po
Normal file
526
account_chart_update/i18n/gl.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: 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:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 por"
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/gl_ES.po
Normal file
526
account_chart_update/i18n/gl_ES.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/gu.po
Normal file
526
account_chart_update/i18n/gu.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "કંપની"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "ઓળખ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/he.po
Normal file
526
account_chart_update/i18n/he.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "נוצר על ידי"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "נוצר ב-"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "השם המוצג"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "מזהה"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "תאריך שינוי אחרון"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "עודכן לאחרונה על ידי"
|
||||
|
||||
#. 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 "עודכן לאחרונה על"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "סוג"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
527
account_chart_update/i18n/hr.po
Normal file
527
account_chart_update/i18n/hr.po
Normal file
@@ -0,0 +1,527 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-23 01:41+0000\n"
|
||||
"PO-Revision-Date: 2018-02-23 01:41+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Konta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Organizacija"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirao"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Prikaži ime"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnja izmjena dana"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnji ažurirao"
|
||||
|
||||
#. 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 "Zadnje ažurirano dana"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr "Sljedeći"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tip"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/hr_HR.po
Normal file
526
account_chart_update/i18n/hr_HR.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Poduzeće"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirao"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Naziv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnje modificirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnji ažurirao"
|
||||
|
||||
#. 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 "Zadnje ažurirano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/hu.po
Normal file
526
account_chart_update/i18n/hu.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Vállalat"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Készítette"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Létrehozás dátuma"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Név megjelenítése"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Utoljára frissítve, által"
|
||||
|
||||
#. 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 "Utoljára frissítve "
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Státusz"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Típus"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/id.po
Normal file
526
account_chart_update/i18n/id.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Dibuat oleh"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Dibuat pada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nama Tampilan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Diperbaharui oleh"
|
||||
|
||||
#. 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 "Diperbaharui pada"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Jenis"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/it.po
Normal file
526
account_chart_update/i18n/it.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creato da"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creato il"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nome da visualizzare"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima modifica il"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ja.po
Normal file
526
account_chart_update/i18n/ja.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "会社"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "作成者"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "作成日"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "表示名"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "最終更新日"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "最終更新者"
|
||||
|
||||
#. 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 "最終更新日"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "タイプ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ko.po
Normal file
526
account_chart_update/i18n/ko.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "작성자"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "작성일"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "표시 이름"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "최근 수정"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "최근 갱신한 사람"
|
||||
|
||||
#. 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 "최근 갱신 날짜"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "유형"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
527
account_chart_update/i18n/lt.po
Normal file
527
account_chart_update/i18n/lt.po
Normal file
@@ -0,0 +1,527 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Viktoras Norkus <viktoras@bmx.lt>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: Viktoras Norkus <viktoras@bmx.lt>, 2018\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sąskaitos"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr "Uždaryti"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Įmonė"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sukūrė"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sukurta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Paskutinį kartą keista"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Paskutinį kartą atnaujino"
|
||||
|
||||
#. 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 "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Būsena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tipas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/lt_LT.po
Normal file
526
account_chart_update/i18n/lt_LT.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sukūrė"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sukurta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Paskutinį kartą atnaujino"
|
||||
|
||||
#. 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 "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/lv.po
Normal file
526
account_chart_update/i18n/lv.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Izveidoja"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Izveidots"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. 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 "Pēdējās izmaiņas"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tips"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/mk.po
Normal file
526
account_chart_update/i18n/mk.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Креирано од"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Креирано на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Прикажи име"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Последна промена на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Последно ажурирање од"
|
||||
|
||||
#. 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 "Последно ажурирање на"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Тип"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/mn.po
Normal file
526
account_chart_update/i18n/mn.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Компани"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Үүсгэгч"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Үүсгэсэн"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. 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 "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Төлөв"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Төрөл"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/nb.po
Normal file
526
account_chart_update/i18n/nb.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Opprettet av"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Opprettet den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Visnings navn"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sist oppdatert "
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sist oppdatert av"
|
||||
|
||||
#. 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 "Sist oppdatert"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/nb_NO.po
Normal file
526
account_chart_update/i18n/nb_NO.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laget av"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laget den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vis navn"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sist endret den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sist oppdatert av"
|
||||
|
||||
#. 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 "Sist oppdatert den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
527
account_chart_update/i18n/nl.po
Normal file
527
account_chart_update/i18n/nl.po
Normal file
@@ -0,0 +1,527 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Frank Schellenberg <opensource@schellenberg.nl>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: Frank Schellenberg <opensource@schellenberg.nl>, 2018\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kostenplaatsen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Aangemaakt door"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Aangemaakt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Te tonen naam"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst bijgewerkt door"
|
||||
|
||||
#. 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 "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/nl_BE.po
Normal file
526
account_chart_update/i18n/nl_BE.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Gemaakt door"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Gemaakt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Schermnaam"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst Aangepast op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst bijgewerkt door"
|
||||
|
||||
#. 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 "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Type"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/nl_NL.po
Normal file
526
account_chart_update/i18n/nl_NL.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# Frank Schellenberg <opensource@schellenberg.nl>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-01-25 11:46+0000\n"
|
||||
"PO-Revision-Date: 2018-01-25 11:46+0000\n"
|
||||
"Last-Translator: Frank Schellenberg <opensource@schellenberg.nl>, 2018\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Rekeningen"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Aangemaakt door"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Aangemaakt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Te tonen naam"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Laatst bijgewerkt door"
|
||||
|
||||
#. 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 "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/pl.po
Normal file
526
account_chart_update/i18n/pl.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Utworzone przez"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Utworzono"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Wyświetlana nazwa "
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ostatnio modyfikowano"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ostatnio modyfikowane przez"
|
||||
|
||||
#. 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 "Ostatnia zmiana"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Typ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/pt.po
Normal file
526
account_chart_update/i18n/pt.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nome"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 Modificação Em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Atualizado pela última vez por"
|
||||
|
||||
#. 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 "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/pt_BR.po
Normal file
526
account_chart_update/i18n/pt_BR.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nome para Mostrar"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Identificação"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 atualização em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 atualização por"
|
||||
|
||||
#. 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 atualização em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Situação"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/pt_PT.po
Normal file
526
account_chart_update/i18n/pt_PT.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado por"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Criado em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nome a exibir"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Modificado pela última vez em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Atualizado pela última vez por"
|
||||
|
||||
#. 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 "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ro.po
Normal file
526
account_chart_update/i18n/ro.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creat de"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Creat la"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Nume Afişat"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima actualizare în"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ultima actualizare făcută 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 "Ultima actualizare la"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Stare"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/ru.po
Normal file
526
account_chart_update/i18n/ru.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Компания"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Создано"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Создан"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Последний раз обновлено"
|
||||
|
||||
#. 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 "Последний раз обновлено"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/sk.po
Normal file
526
account_chart_update/i18n/sk.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vytvoril"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Vytvorené"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zobraziť meno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Posledná modifikácia"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Naposledy upravil"
|
||||
|
||||
#. 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 "Naposledy upravené"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Typ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/sl.po
Normal file
526
account_chart_update/i18n/sl.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ustvaril"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ustvarjeno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Prikazni naziv"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnjič spremenjeno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnjič posodobil"
|
||||
|
||||
#. 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 "Zadnjič posodobljeno"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tip"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/sr.po
Normal file
526
account_chart_update/i18n/sr.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreiran"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tip"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/sr@latin.po
Normal file
526
account_chart_update/i18n/sr@latin.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreirao"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kreiran"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Ime za prikaz"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnja izmjena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Zadnja izmjena"
|
||||
|
||||
#. 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 "Zadnja izmjena"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tip"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/sv.po
Normal file
526
account_chart_update/i18n/sv.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Bolag"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Skapad av"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Skapad den"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Visa namn"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Senast redigerad"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Senast uppdaterad av"
|
||||
|
||||
#. 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 "Senast uppdaterad"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Typ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/th.po
Normal file
526
account_chart_update/i18n/th.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "สร้างโดย"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "สร้างเมื่อ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "รหัส"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. 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 "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "สถานะ"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "ชนิด"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/tr.po
Normal file
526
account_chart_update/i18n/tr.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oluşturan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oluşturuldu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Görünen İsim"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Son değişiklik"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Son güncelleyen"
|
||||
|
||||
#. 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 "Son güncelleme"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Durum"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tipi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
527
account_chart_update/i18n/tr_TR.po
Normal file
527
account_chart_update/i18n/tr_TR.po
Normal file
@@ -0,0 +1,527 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Ediz Duman <neps1192@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2017\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oluşturan"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Oluşturulma tarihi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Görünen ad"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Kimlik"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "En son güncelleme tarihi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "En son güncelleyen "
|
||||
|
||||
#. 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 "En son güncelleme tarihi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "Durumu"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tip"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/uk.po
Normal file
526
account_chart_update/i18n/uk.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Створив"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Дата створення"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Назва для відображення"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Остання модифікація"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Востаннє оновив"
|
||||
|
||||
#. 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 "Останнє оновлення"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Тип"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/vi.po
Normal file
526
account_chart_update/i18n/vi.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Được tạo bởi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Được tạo vào"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tên hiển thị"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Sửa lần cuối vào"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Updated by"
|
||||
|
||||
#. 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 "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Loại"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/vi_VN.po
Normal file
526
account_chart_update/i18n/vi_VN.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-28 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-11-28 23:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tạo bởi"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Tạo vào"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Cập nhật lần cuối bởi"
|
||||
|
||||
#. 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 "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/zh_CN.po
Normal file
526
account_chart_update/i18n/zh_CN.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "创建者"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "创建时间"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Display Name"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "Last Modified on"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "最后更新者"
|
||||
|
||||
#. 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 "上次更新日期"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "类型"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
526
account_chart_update/i18n/zh_TW.po
Normal file
526
account_chart_update/i18n/zh_TW.po
Normal file
@@ -0,0 +1,526 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_chart_update
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-01 03:44+0000\n"
|
||||
"PO-Revision-Date: 2018-02-01 03:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
|
||||
msgid "# of digits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "<span states=\"init,ready\"> or </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
|
||||
msgid "Account to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
|
||||
msgid "Chart Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Chart Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
|
||||
msgid "Continue on errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db: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:625
|
||||
#, python-format
|
||||
msgid "Created account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "建立者"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "建立於"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
|
||||
#, python-format
|
||||
msgid "Created or updated fiscal position %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
|
||||
#, python-format
|
||||
msgid "Created tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
|
||||
#, python-format
|
||||
msgid "Deactivated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
|
||||
msgid "Deactivated taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:453
|
||||
#, python-format
|
||||
msgid "Differences in these fields: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "顯示名稱"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
|
||||
#, python-format
|
||||
msgid "Exception creating account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:641
|
||||
#, python-format
|
||||
msgid "Exception writing account %s."
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "編號"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
|
||||
msgid "Includes all chart templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "最後修改:"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "最後更新:"
|
||||
|
||||
#. 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 "最後更新於"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
|
||||
msgid "Messages and Errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:478
|
||||
#, python-format
|
||||
msgid "Name or description not found."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
|
||||
msgid "New accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
|
||||
msgid "New taxes"
|
||||
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
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:524
|
||||
#, python-format
|
||||
msgid "No account found with this code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:557
|
||||
#, python-format
|
||||
msgid "No fiscal position found with this name."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:233
|
||||
#, python-format
|
||||
msgid ""
|
||||
"One or more errors detected!\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Records to create/update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: selection:wizard.update.charts.accounts,state:0
|
||||
msgid "Select records to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of created objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Summary of updated objects"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
|
||||
msgid "Tax Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:458
|
||||
#, python-format
|
||||
msgid "Tax is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
|
||||
msgid "Tax to update"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
|
||||
#, python-format
|
||||
msgid "To deactivate: not in the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 "類型"
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
|
||||
msgid "Update accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
|
||||
msgid "Update chart of accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
|
||||
msgid "Update chart template"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
|
||||
msgid "Update fiscal positions"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
|
||||
msgid "Update records?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
|
||||
msgid "Update taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:638
|
||||
#, python-format
|
||||
msgid "Updated account %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
|
||||
msgid "Updated accounts"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
|
||||
#, python-format
|
||||
msgid "Updated tax %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
|
||||
msgid "Updated taxes"
|
||||
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,state:0
|
||||
msgid "Wizard completed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_chart_update
|
||||
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
|
||||
msgid "wizard.update.charts.accounts"
|
||||
msgstr ""
|
||||
6
account_chart_update/readme/CONTRIBUTORS.rst
Normal file
6
account_chart_update/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,6 @@
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
* Jacques-Etienne Baudoux <je@bcim.be>
|
||||
* Sylvain Van Hoof <sylvain@okia.be>
|
||||
* Nacho Muñoz <nacmuro@gmail.com>
|
||||
* Alberto Martín - Guadaltech <alberto.martin@guadaltech.es>
|
||||
12
account_chart_update/readme/DESCRIPTION.rst
Normal file
12
account_chart_update/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
template.
|
||||
|
||||
The wizard:
|
||||
|
||||
* Allows the user to compare a chart and a template showing differences
|
||||
on accounts, taxes, tax codes and fiscal positions.
|
||||
* It may create the new account, taxes, tax codes and fiscal positions detected
|
||||
on the template.
|
||||
* It can also update (overwrite) the accounts, taxes, tax codes and fiscal
|
||||
positions that got modified on the template.
|
||||
5
account_chart_update/readme/ROADMAP.rst
Normal file
5
account_chart_update/readme/ROADMAP.rst
Normal file
@@ -0,0 +1,5 @@
|
||||
* Generate and update account reconcile models.
|
||||
* Generate XML-ID for fiscal position tax and account mapping lines.
|
||||
* Allow to select independently operations to perform (create, update,
|
||||
deactivate).
|
||||
* Detect fiscal positions to deactivate?
|
||||
7
account_chart_update/readme/USAGE.rst
Normal file
7
account_chart_update/readme/USAGE.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
The wizard, accesible from *Accounting > Settings > 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 / deactivated with some
|
||||
information about the detected differences, and allow the user to exclude
|
||||
records individually.
|
||||
BIN
account_chart_update/static/description/icon.png
Normal file
BIN
account_chart_update/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
436
account_chart_update/static/description/index.html
Normal file
436
account_chart_update/static/description/index.html
Normal file
@@ -0,0 +1,436 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.12: http://docutils.sourceforge.net/" />
|
||||
<title>Detect changes and update the Account Chart from a template</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7614 2013-02-21 15:55:51Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="detect-changes-and-update-the-account-chart-from-a-template">
|
||||
<h1 class="title">Detect changes and update the Account Chart from a template</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/account-financial-tools/tree/11.0/account_chart_update"><img alt="OCA/account-financial-tools" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/account-financial-tools-11-0/account-financial-tools-11-0-account_chart_update"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/92/11.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>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
|
||||
template.</p>
|
||||
<p>The wizard:</p>
|
||||
<ul class="simple">
|
||||
<li>Allows the user to compare a chart and a template showing differences
|
||||
on accounts, taxes, tax codes and fiscal positions.</li>
|
||||
<li>It may create the new account, taxes, tax codes and fiscal positions detected
|
||||
on the template.</li>
|
||||
<li>It can also update (overwrite) the accounts, taxes, tax codes and fiscal
|
||||
positions that got modified on the template.</li>
|
||||
</ul>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#known-issues-roadmap" id="id2">Known issues / Roadmap</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
|
||||
<p>The wizard, accesible from <em>Accounting > Settings > Update chart of accounts</em>,
|
||||
lets the user select what kind of objects must be checked/updated, and whether
|
||||
old records must be checked for changes and updates.</p>
|
||||
<p>It will display all the objects to be created / updated / deactivated with some
|
||||
information about the detected differences, and allow the user to exclude
|
||||
records individually.</p>
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#id2">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>Generate and update account reconcile models.</li>
|
||||
<li>Generate XML-ID for fiscal position tax and account mapping lines.</li>
|
||||
<li>Allow to select independently operations to perform (create, update,
|
||||
deactivate).</li>
|
||||
<li>Detect fiscal positions to deactivate?</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-tools/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_chart_update%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Tecnativa</li>
|
||||
<li>BCIM</li>
|
||||
<li>Okia</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Pedro M. Baeza <<a class="reference external" href="mailto:pedro.baeza@tecnativa.com">pedro.baeza@tecnativa.com</a>></li>
|
||||
<li>Jairo Llopis <<a class="reference external" href="mailto:jairo.llopis@tecnativa.com">jairo.llopis@tecnativa.com</a>></li>
|
||||
<li>Jacques-Etienne Baudoux <<a class="reference external" href="mailto:je@bcim.be">je@bcim.be</a>></li>
|
||||
<li>Sylvain Van Hoof <<a class="reference external" href="mailto:sylvain@okia.be">sylvain@okia.be</a>></li>
|
||||
<li>Nacho Muñoz <<a class="reference external" href="mailto:nacmuro@gmail.com">nacmuro@gmail.com</a>></li>
|
||||
<li>Alberto Martín - Guadaltech <<a class="reference external" href="mailto:alberto.martin@guadaltech.es">alberto.martin@guadaltech.es</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-financial-tools/tree/11.0/account_chart_update">OCA/account-financial-tools</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
4
account_chart_update/tests/__init__.py
Normal file
4
account_chart_update/tests/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_account_chart_update
|
||||
308
account_chart_update/tests/test_account_chart_update.py
Normal file
308
account_chart_update/tests/test_account_chart_update.py
Normal file
@@ -0,0 +1,308 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields
|
||||
from odoo.tests import common
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
|
||||
class TestAccountChartUpdate(common.HttpCase):
|
||||
at_install = False
|
||||
post_install = True
|
||||
|
||||
def _create_xml_id(self, record):
|
||||
return self.env['ir.model.data'].create({
|
||||
'module': 'account_chart_update',
|
||||
'name': "%s-%s" % (record._table, record.id),
|
||||
'model': record._name,
|
||||
'res_id': record.id,
|
||||
})
|
||||
|
||||
def _create_account_tmpl(self, name, code, user_type, chart_template):
|
||||
record = self.env['account.account.template'].create({
|
||||
'name': name,
|
||||
'code': code,
|
||||
'user_type_id': user_type.id,
|
||||
'chart_template_id': chart_template and chart_template.id,
|
||||
})
|
||||
self._create_xml_id(record)
|
||||
return record
|
||||
|
||||
def _create_tax_tmpl(self, name, chart_template):
|
||||
record = self.env['account.tax.template'].create({
|
||||
'name': name,
|
||||
'amount': 0,
|
||||
'chart_template_id': chart_template.id,
|
||||
'tax_group_id': self.env.ref('account.tax_group_taxes').id,
|
||||
})
|
||||
self._create_xml_id(record)
|
||||
return record
|
||||
|
||||
def _create_fp_tmpl(self, name, chart_template):
|
||||
record = self.env['account.fiscal.position.template'].create({
|
||||
'name': name,
|
||||
'chart_template_id': chart_template.id,
|
||||
})
|
||||
self._create_xml_id(record)
|
||||
return record
|
||||
|
||||
def setUp(self):
|
||||
super(TestAccountChartUpdate, self).setUp()
|
||||
# Make sure user is in English
|
||||
self.env.user.lang = 'en_US'
|
||||
self.account_type = self.env['account.account.type'].create({
|
||||
'name': 'Test account_chart_update account type',
|
||||
})
|
||||
self.account_template = self._create_account_tmpl(
|
||||
'Test', '100000', self.account_type, False,
|
||||
)
|
||||
self.chart_template = self.env['account.chart.template'].create({
|
||||
'name': 'Test account_chart_update chart',
|
||||
'currency_id': self.env.ref('base.EUR').id,
|
||||
'code_digits': 6,
|
||||
'transfer_account_id': self.account_template.id,
|
||||
})
|
||||
self.account_template.chart_template_id = self.chart_template.id
|
||||
self.account_template_pl = self._create_account_tmpl(
|
||||
'Undistributed Profits/Losses', '999999',
|
||||
self.env.ref("account.data_unaffected_earnings"),
|
||||
self.chart_template,
|
||||
)
|
||||
self.tax_template = self._create_tax_tmpl(
|
||||
'Test tax', self.chart_template,
|
||||
)
|
||||
self.fp_template = self._create_fp_tmpl('Test fp', self.chart_template)
|
||||
self.fp_template_tax = self.env[
|
||||
'account.fiscal.position.tax.template'
|
||||
].create({
|
||||
'tax_src_id': self.tax_template.id,
|
||||
'position_id': self.fp_template.id,
|
||||
})
|
||||
self._create_xml_id(self.fp_template_tax)
|
||||
self.fp_template_account = self.env[
|
||||
'account.fiscal.position.account.template'
|
||||
].create({
|
||||
'account_src_id': self.account_template.id,
|
||||
'account_dest_id': self.account_template.id,
|
||||
'position_id': self.fp_template.id,
|
||||
})
|
||||
self._create_xml_id(self.fp_template_account)
|
||||
self.tax_group = self.env['account.tax.group'].create({
|
||||
'name': 'Test tax group',
|
||||
})
|
||||
self.company = self.env['res.company'].create({
|
||||
'name': 'Test account_chart_update company',
|
||||
'currency_id': self.chart_template.currency_id.id,
|
||||
})
|
||||
# Load chart of template into company
|
||||
wizard = self.env['wizard.multi.charts.accounts'].create({
|
||||
'company_id': self.company.id,
|
||||
'chart_template_id': self.chart_template.id,
|
||||
'code_digits': self.chart_template.code_digits,
|
||||
'transfer_account_id': self.account_template.id,
|
||||
'currency_id': self.chart_template.currency_id.id,
|
||||
'bank_account_code_prefix': '572',
|
||||
'cash_account_code_prefix': '570',
|
||||
})
|
||||
wizard.onchange_chart_template_id()
|
||||
wizard.execute()
|
||||
self.tax = self.env['account.tax'].search([
|
||||
('name', '=', self.tax_template.name),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
self.account = self.env['account.account'].search([
|
||||
('code', '=', self.account_template.code),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
self.fp = self.env['account.fiscal.position'].search([
|
||||
('name', '=', self.fp_template.name),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
# Prepare wizard values
|
||||
self.wizard_obj = self.env['wizard.update.charts.accounts']
|
||||
self.wizard_vals = {
|
||||
'company_id': self.company.id,
|
||||
'chart_template_id': self.chart_template.id,
|
||||
'code_digits': 6,
|
||||
'lang': 'en_US'
|
||||
}
|
||||
|
||||
@mute_logger('odoo.sql_db')
|
||||
def test_chart_update(self):
|
||||
# Test no changes
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertEqual(wizard.state, 'ready')
|
||||
self.assertFalse(wizard.tax_ids)
|
||||
self.assertFalse(wizard.account_ids)
|
||||
self.assertFalse(wizard.fiscal_position_ids)
|
||||
wizard.unlink()
|
||||
# Add templates
|
||||
new_tax_tmpl = self._create_tax_tmpl(
|
||||
'Test tax 2', self.chart_template,
|
||||
)
|
||||
new_account_tmpl = self._create_account_tmpl(
|
||||
'Test account 2', '333333', self.account_type, self.chart_template,
|
||||
)
|
||||
new_fp = self._create_fp_tmpl('Test fp 2', self.chart_template)
|
||||
fp_template_tax = self.env[
|
||||
'account.fiscal.position.tax.template'
|
||||
].create({
|
||||
'tax_src_id': self.tax_template.id,
|
||||
'position_id': new_fp.id,
|
||||
})
|
||||
self._create_xml_id(fp_template_tax)
|
||||
fp_template_account = self.env[
|
||||
'account.fiscal.position.account.template'
|
||||
].create({
|
||||
'account_src_id': self.account_template.id,
|
||||
'account_dest_id': self.account_template.id,
|
||||
'position_id': new_fp.id,
|
||||
})
|
||||
self._create_xml_id(fp_template_account)
|
||||
# Check that no action is performed if the option is not selected
|
||||
wizard_vals = self.wizard_vals.copy()
|
||||
wizard_vals.update({
|
||||
'update_tax': False,
|
||||
'update_account': False,
|
||||
'update_fiscal_position': False,
|
||||
})
|
||||
wizard = self.wizard_obj.create(wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertFalse(wizard.tax_ids)
|
||||
self.assertFalse(wizard.account_ids)
|
||||
self.assertFalse(wizard.fiscal_position_ids)
|
||||
wizard.unlink()
|
||||
# Now do the real one for detecting additions
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertTrue(wizard.tax_ids)
|
||||
self.assertEqual(wizard.tax_ids.tax_id, new_tax_tmpl)
|
||||
self.assertEqual(wizard.tax_ids.type, 'new')
|
||||
self.assertTrue(wizard.account_ids)
|
||||
self.assertEqual(wizard.account_ids.account_id, new_account_tmpl)
|
||||
self.assertEqual(wizard.tax_ids.type, 'new')
|
||||
self.assertTrue(wizard.fiscal_position_ids)
|
||||
self.assertEqual(wizard.fiscal_position_ids.fiscal_position_id, new_fp)
|
||||
self.assertEqual(wizard.fiscal_position_ids.type, 'new')
|
||||
wizard.action_update_records()
|
||||
self.assertEqual(wizard.state, 'done')
|
||||
self.assertEqual(wizard.new_taxes, 1)
|
||||
self.assertEqual(wizard.new_accounts, 1)
|
||||
self.assertEqual(wizard.new_fps, 1)
|
||||
self.assertTrue(wizard.log)
|
||||
new_tax = self.env['account.tax'].search([
|
||||
('name', '=', new_tax_tmpl.name),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
self.assertTrue(new_tax)
|
||||
new_account = self.env['account.account'].search([
|
||||
('code', '=', new_account_tmpl.code),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
self.assertTrue(new_account)
|
||||
fp = self.env['account.fiscal.position'].search([
|
||||
('name', '=', new_fp.name),
|
||||
('company_id', '=', self.company.id),
|
||||
])
|
||||
self.assertTrue(fp)
|
||||
self.assertTrue(fp.tax_ids)
|
||||
self.assertTrue(fp.account_ids)
|
||||
wizard.unlink()
|
||||
# Update objects
|
||||
self.tax_template.description = "Test description"
|
||||
self.tax_template.tax_group_id = self.tax_group.id
|
||||
self.tax_template.refund_account_id = new_account_tmpl.id
|
||||
self.account_template.name = "Other name"
|
||||
self.fp_template.note = "Test note"
|
||||
self.fp_template.account_ids.account_dest_id = new_account_tmpl.id
|
||||
self.fp_template.tax_ids.tax_dest_id = self.tax_template.id
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertTrue(wizard.tax_ids)
|
||||
self.assertEqual(wizard.tax_ids.tax_id, self.tax_template)
|
||||
self.assertEqual(wizard.tax_ids.type, 'updated')
|
||||
self.assertTrue(wizard.account_ids)
|
||||
self.assertEqual(wizard.account_ids.account_id, self.account_template)
|
||||
self.assertEqual(wizard.account_ids.type, 'updated')
|
||||
self.assertTrue(wizard.fiscal_position_ids)
|
||||
self.assertTrue(wizard.fiscal_position_ids.type, 'updated')
|
||||
self.assertEqual(
|
||||
wizard.fiscal_position_ids.fiscal_position_id, self.fp_template,
|
||||
)
|
||||
self.assertEqual(wizard.fiscal_position_ids.type, 'updated')
|
||||
wizard.action_update_records()
|
||||
self.assertEqual(wizard.updated_taxes, 1)
|
||||
self.assertEqual(wizard.updated_accounts, 1)
|
||||
self.assertEqual(wizard.updated_fps, 1)
|
||||
self.assertEqual(self.tax.description, self.tax_template.description)
|
||||
self.assertEqual(self.tax.tax_group_id, self.tax_group)
|
||||
self.assertEqual(self.tax.refund_account_id, new_account)
|
||||
self.assertEqual(self.account.name, self.account_template.name)
|
||||
self.assertEqual(self.fp.note, self.fp_template.note)
|
||||
self.assertEqual(self.fp.account_ids.account_dest_id, new_account)
|
||||
self.assertEqual(self.fp.tax_ids.tax_dest_id, self.tax)
|
||||
wizard.unlink()
|
||||
# Remove objects
|
||||
new_tax_tmpl.unlink()
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertTrue(wizard.tax_ids)
|
||||
self.assertEqual(wizard.tax_ids.update_tax_id, new_tax)
|
||||
self.assertEqual(wizard.tax_ids.type, 'deleted')
|
||||
wizard.action_update_records()
|
||||
self.assertEqual(wizard.deleted_taxes, 1)
|
||||
self.assertFalse(new_tax.active)
|
||||
wizard.unlink()
|
||||
# Errors on account update
|
||||
self.account_template.reconcile = True
|
||||
self.env['account.move'].create({
|
||||
'name': 'Test move',
|
||||
'journal_id': self.env['account.journal'].search([
|
||||
('company_id', '=', self.company.id),
|
||||
], limit=1).id,
|
||||
'date': fields.Date.today(),
|
||||
'line_ids': [
|
||||
(0, 0, {
|
||||
'account_id': self.account.id,
|
||||
'name': 'Test move line',
|
||||
'debit': 10,
|
||||
'credit': 0,
|
||||
}),
|
||||
(0, 0, {
|
||||
'account_id': self.account.id,
|
||||
'name': 'Test move line2',
|
||||
'debit': 0,
|
||||
'credit': 10,
|
||||
}),
|
||||
]
|
||||
})
|
||||
self.tax_template.description = "Other description"
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
with self.assertRaises(Exception):
|
||||
wizard.action_update_records()
|
||||
# Errors on account update - continuing after that
|
||||
wizard.continue_on_errors = True
|
||||
wizard.action_update_records()
|
||||
self.assertFalse(self.account.reconcile)
|
||||
self.assertEqual(self.tax.description, self.tax_template.description)
|
||||
self.assertEqual(wizard.rejected_updated_account_number, 1)
|
||||
self.assertEqual(wizard.updated_accounts, 0)
|
||||
wizard.unlink()
|
||||
# Errors on account_creation
|
||||
self.account_template.reconcile = False
|
||||
new_account_tmpl_2 = self._create_account_tmpl(
|
||||
'Test account 3', '444444', self.account_type, self.chart_template,
|
||||
)
|
||||
wizard = self.wizard_obj.create(self.wizard_vals)
|
||||
wizard.action_find_records()
|
||||
self.assertEqual(wizard.account_ids.type, 'new')
|
||||
new_account_tmpl_2.code = '333333' # Trick the code for forcing error
|
||||
with self.assertRaises(Exception):
|
||||
wizard.action_update_records()
|
||||
wizard.continue_on_errors = True
|
||||
wizard.action_update_records()
|
||||
self.assertEqual(wizard.rejected_new_account_number, 1)
|
||||
self.assertEqual(wizard.new_accounts, 0)
|
||||
wizard.unlink()
|
||||
40
account_chart_update/views/account_config_settings_view.xml
Normal file
40
account_chart_update/views/account_config_settings_view.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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_res_config_settings" model="ir.ui.view">
|
||||
<field name="name">Open Account Chart Update Wizard</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="account.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
|
||||
<div data-key="account_invoicing" position="inside">
|
||||
<h2>Update Chart Template</h2>
|
||||
<div class="row mt16 o_settings_container">
|
||||
<div class="col-xs-12 col-md-6 o_setting_box">
|
||||
<div class="o_setting_left_pane"/>
|
||||
<div class="o_setting_right_pane">
|
||||
<label string="Update Chart Template"/>
|
||||
<div class="text-muted">
|
||||
Update Taxes, fiscal positions or chart of accounts.
|
||||
</div>
|
||||
<div class="content-group">
|
||||
<div class="row mt16"/>
|
||||
<div>
|
||||
<button string="Update chart template"
|
||||
name="%(action_wizard_update_chart)d"
|
||||
context="{'default_company_id': company_id}"
|
||||
type="action"
|
||||
icon="fa-arrow-right"
|
||||
class="oe_link"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
3
account_chart_update/wizard/__init__.py
Normal file
3
account_chart_update/wizard/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import wizard_chart_update
|
||||
787
account_chart_update/wizard/wizard_chart_update.py
Normal file
787
account_chart_update/wizard/wizard_chart_update.py
Normal file
@@ -0,0 +1,787 @@
|
||||
# © 2010 Jordi Esteve, Zikzakmedia S.L. (http://www.zikzakmedia.com)
|
||||
# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
|
||||
# Borja López Soilán
|
||||
# © 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
|
||||
# © 2015 Antonio Espinosa <antonioea@tecnativa.com>
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# © 2016 Jacques-Etienne Baudoux <je@bcim.be>
|
||||
# Copyright 2018 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import _, api, exceptions, fields, models, tools
|
||||
from odoo.tools import config
|
||||
from contextlib import closing
|
||||
from io import StringIO
|
||||
import logging
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
EXCEPTION_TEXT = "Traceback (most recent call last)"
|
||||
|
||||
|
||||
class WizardUpdateChartsAccounts(models.TransientModel):
|
||||
_name = 'wizard.update.charts.accounts'
|
||||
|
||||
state = fields.Selection(
|
||||
selection=[('init', 'Configuration'),
|
||||
('ready', 'Select records to update'),
|
||||
('done', 'Wizard completed')],
|
||||
string='Status', readonly=True, default='init')
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company', string='Company', required=True,
|
||||
ondelete='set null', default=lambda self: self.env.user.company_id.id)
|
||||
chart_template_id = fields.Many2one(
|
||||
comodel_name='account.chart.template', string='Chart Template',
|
||||
ondelete='cascade', required=True)
|
||||
chart_template_ids = fields.Many2many(
|
||||
"account.chart.template",
|
||||
string="Chart Templates",
|
||||
compute="_compute_chart_template_ids",
|
||||
help="Includes all chart templates.")
|
||||
code_digits = fields.Integer(
|
||||
string='# of digits', required=True,
|
||||
help="No. of digits to use for account code. "
|
||||
"Make sure it is the same number as existing accounts.")
|
||||
lang = fields.Selection(
|
||||
lambda self: self._get_lang_selection_options(), 'Language', size=5,
|
||||
required=True,
|
||||
help="For records searched by name (taxes, fiscal "
|
||||
"positions), the template name will be matched against the "
|
||||
"record name on this language.",
|
||||
default=lambda self: self.env.context.get('lang', self.env.user.lang))
|
||||
update_tax = fields.Boolean(
|
||||
string='Update taxes', default=True,
|
||||
help="Existing taxes are updated. Taxes are searched by name.")
|
||||
update_account = fields.Boolean(
|
||||
string='Update accounts', default=True,
|
||||
help="Existing accounts are updated. Accounts are searched by code.")
|
||||
update_fiscal_position = fields.Boolean(
|
||||
string='Update fiscal positions', default=True,
|
||||
help="Existing fiscal positions are updated. Fiscal positions are "
|
||||
"searched by name.")
|
||||
continue_on_errors = fields.Boolean(
|
||||
string="Continue on errors", default=False,
|
||||
help="If set, the wizard will continue to the next step even if "
|
||||
"there are minor errors.")
|
||||
tax_ids = fields.One2many(
|
||||
comodel_name='wizard.update.charts.accounts.tax', ondelete='cascade',
|
||||
inverse_name='update_chart_wizard_id', string='Taxes')
|
||||
account_ids = fields.One2many(
|
||||
comodel_name='wizard.update.charts.accounts.account',
|
||||
inverse_name='update_chart_wizard_id', string='Accounts',
|
||||
ondelete='cascade')
|
||||
fiscal_position_ids = fields.One2many(
|
||||
comodel_name='wizard.update.charts.accounts.fiscal.position',
|
||||
inverse_name='update_chart_wizard_id', string='Fiscal positions',
|
||||
ondelete='cascade')
|
||||
new_taxes = fields.Integer(
|
||||
string='New taxes', compute="_compute_new_taxes_count")
|
||||
new_accounts = fields.Integer(
|
||||
string='New accounts',
|
||||
compute="_compute_new_accounts_count")
|
||||
rejected_new_account_number = fields.Integer()
|
||||
new_fps = fields.Integer(
|
||||
string='New fiscal positions',
|
||||
compute="_compute_new_fps_count")
|
||||
updated_taxes = fields.Integer(
|
||||
string='Updated taxes',
|
||||
compute="_compute_updated_taxes_count")
|
||||
rejected_updated_account_number = fields.Integer()
|
||||
updated_accounts = fields.Integer(
|
||||
string='Updated accounts',
|
||||
compute="_compute_updated_accounts_count")
|
||||
updated_fps = fields.Integer(
|
||||
string='Updated fiscal positions',
|
||||
compute="_compute_updated_fps_count")
|
||||
deleted_taxes = fields.Integer(
|
||||
string='Deactivated taxes',
|
||||
compute="_compute_deleted_taxes_count")
|
||||
log = fields.Text(string='Messages and Errors', readonly=True)
|
||||
|
||||
@api.model
|
||||
def _get_lang_selection_options(self):
|
||||
"""Gets the available languages for the selection."""
|
||||
langs = self.env['res.lang'].search([])
|
||||
return [(lang.code, lang.name) for lang in langs]
|
||||
|
||||
@api.multi
|
||||
@api.depends("chart_template_id")
|
||||
def _compute_chart_template_ids(self):
|
||||
self.chart_template_ids = (
|
||||
self.env['wizard.multi.charts.accounts']
|
||||
._get_chart_parent_ids(self.chart_template_id))
|
||||
|
||||
@api.multi
|
||||
@api.depends('tax_ids')
|
||||
def _compute_new_taxes_count(self):
|
||||
self.new_taxes = len(self.tax_ids.filtered(lambda x: x.type == 'new'))
|
||||
|
||||
@api.multi
|
||||
@api.depends('account_ids')
|
||||
def _compute_new_accounts_count(self):
|
||||
self.new_accounts = len(
|
||||
self.account_ids.filtered(lambda x: x.type == 'new')
|
||||
) - self.rejected_new_account_number
|
||||
|
||||
@api.multi
|
||||
@api.depends('fiscal_position_ids')
|
||||
def _compute_new_fps_count(self):
|
||||
self.new_fps = len(
|
||||
self.fiscal_position_ids.filtered(lambda x: x.type == 'new'))
|
||||
|
||||
@api.multi
|
||||
@api.depends('tax_ids')
|
||||
def _compute_updated_taxes_count(self):
|
||||
self.updated_taxes = len(
|
||||
self.tax_ids.filtered(lambda x: x.type == 'updated'))
|
||||
|
||||
@api.multi
|
||||
@api.depends('account_ids')
|
||||
def _compute_updated_accounts_count(self):
|
||||
self.updated_accounts = len(
|
||||
self.account_ids.filtered(lambda x: x.type == 'updated')
|
||||
) - self.rejected_updated_account_number
|
||||
|
||||
@api.multi
|
||||
@api.depends('fiscal_position_ids')
|
||||
def _compute_updated_fps_count(self):
|
||||
self.updated_fps = len(
|
||||
self.fiscal_position_ids.filtered(lambda x: x.type == 'updated'))
|
||||
|
||||
@api.multi
|
||||
@api.depends('tax_ids')
|
||||
def _compute_deleted_taxes_count(self):
|
||||
self.deleted_taxes = len(
|
||||
self.tax_ids.filtered(lambda x: x.type == 'deleted'))
|
||||
|
||||
@api.multi
|
||||
@api.onchange("company_id")
|
||||
def _onchage_company_update_chart_template(self):
|
||||
self.chart_template_id = self.company_id.chart_template_id
|
||||
|
||||
@api.model
|
||||
def _get_code_digits(self, company=None):
|
||||
"""Returns the number of digits for the accounts, fetched from
|
||||
the company.
|
||||
"""
|
||||
if company is None:
|
||||
company = self.env.user.company_id
|
||||
return company.accounts_code_digits or 6
|
||||
|
||||
@api.onchange('company_id')
|
||||
def onchange_company_id(self):
|
||||
"""Update the code digits when the company changes"""
|
||||
self.code_digits = self._get_code_digits(company=self.company_id)
|
||||
|
||||
@api.multi
|
||||
def _reopen(self):
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'view_mode': 'form',
|
||||
'view_type': 'form',
|
||||
'res_id': self.id,
|
||||
'res_model': self._name,
|
||||
'target': 'new',
|
||||
# save original model in context,
|
||||
# because selecting the list of available
|
||||
# templates requires a model in context
|
||||
'context': {
|
||||
'default_model': self._name,
|
||||
},
|
||||
}
|
||||
|
||||
@api.multi
|
||||
def action_init(self):
|
||||
"""Initial action that sets the initial state."""
|
||||
self.state = 'init'
|
||||
return self._reopen()
|
||||
|
||||
@api.multi
|
||||
def action_find_records(self):
|
||||
"""Searchs for records to update/create and shows them."""
|
||||
self = self.with_context(lang=self.lang)
|
||||
# Search for, and load, the records to create/update.
|
||||
if self.update_tax:
|
||||
self._find_taxes()
|
||||
if self.update_account:
|
||||
self._find_accounts()
|
||||
if self.update_fiscal_position:
|
||||
self._find_fiscal_positions()
|
||||
# Write the results, and go to the next step.
|
||||
self.state = 'ready'
|
||||
return self._reopen()
|
||||
|
||||
@api.multi
|
||||
def action_update_records(self):
|
||||
"""Action that creates/updates/deletes the selected elements."""
|
||||
self = self.with_context(lang=self.lang)
|
||||
self.rejected_new_account_number = 0
|
||||
self.rejected_updated_account_number = 0
|
||||
with closing(StringIO()) as log_output:
|
||||
handler = logging.StreamHandler(log_output)
|
||||
_logger.addHandler(handler)
|
||||
# Create or update the records.
|
||||
if self.update_tax:
|
||||
self._update_taxes()
|
||||
perform_rest = True
|
||||
if self.update_account:
|
||||
self._update_accounts()
|
||||
if (EXCEPTION_TEXT in log_output.getvalue() and
|
||||
not self.continue_on_errors): # Abort early
|
||||
perform_rest = False
|
||||
# Clear this cache for avoiding incorrect account hits (as it was
|
||||
# queried before account creation)
|
||||
self.find_account_by_templates.clear_cache(self)
|
||||
if self.update_tax and perform_rest:
|
||||
self._update_taxes_pending_for_accounts()
|
||||
if self.update_fiscal_position and perform_rest:
|
||||
self._update_fiscal_positions()
|
||||
# Store new chart in the company
|
||||
self.company_id.chart_template_id = self.chart_template_id
|
||||
_logger.removeHandler(handler)
|
||||
self.log = log_output.getvalue()
|
||||
# Check if errors where detected and wether we should stop.
|
||||
if EXCEPTION_TEXT in self.log and not self.continue_on_errors:
|
||||
raise exceptions.Warning(
|
||||
_("One or more errors detected!\n\n%s") % self.log)
|
||||
# Store the data and go to the next step.
|
||||
self.state = 'done'
|
||||
return self._reopen()
|
||||
|
||||
@api.multi
|
||||
@tools.ormcache("templates")
|
||||
def find_tax_by_templates(self, templates):
|
||||
"""Find a tax that matches the template."""
|
||||
# search inactive taxes too, to avoid re-creating
|
||||
# taxes that have been deactivated before
|
||||
Tax = self.env['account.tax'].with_context(active_test=False)
|
||||
result = Tax
|
||||
for template in templates:
|
||||
single = Tax
|
||||
criteria = (
|
||||
("name", "=", template.name),
|
||||
("description", "=", template.name),
|
||||
("name", "=", template.description),
|
||||
("description", "=", template.description),
|
||||
)
|
||||
for domain in criteria:
|
||||
if single:
|
||||
break
|
||||
if domain[2]:
|
||||
single = Tax.search(
|
||||
[domain,
|
||||
("company_id", "=", self.company_id.id),
|
||||
("type_tax_use", "=", template.type_tax_use)],
|
||||
limit=1)
|
||||
result |= single
|
||||
return result[:1].id
|
||||
|
||||
@api.model
|
||||
@tools.ormcache("code")
|
||||
def padded_code(self, code):
|
||||
"""Return a right-zero-padded code with the chosen digits."""
|
||||
return code.ljust(self.code_digits, '0')
|
||||
|
||||
@api.multi
|
||||
@tools.ormcache("templates")
|
||||
def find_account_by_templates(self, templates):
|
||||
"""Find an account that matches the template."""
|
||||
return self.env['account.account'].search(
|
||||
[('code', 'in',
|
||||
list(map(self.padded_code, templates.mapped("code")))),
|
||||
('company_id', '=', self.company_id.id)],
|
||||
).id
|
||||
|
||||
@api.multi
|
||||
@tools.ormcache("templates")
|
||||
def find_fp_by_templates(self, templates):
|
||||
"""Find a real fiscal position from a template."""
|
||||
return self.env['account.fiscal.position'].search(
|
||||
[('name', 'in', templates.mapped("name")),
|
||||
('company_id', '=', self.company_id.id)], limit=1).id
|
||||
|
||||
@api.multi
|
||||
@tools.ormcache("templates", "current_fp_accounts")
|
||||
def find_fp_account_by_templates(self, templates, current_fp_accounts):
|
||||
result = []
|
||||
for tpl in templates:
|
||||
pos_id = self.find_fp_by_templates(tpl.position_id)
|
||||
src_id = self.find_account_by_templates(tpl.account_src_id)
|
||||
dest_id = self.find_account_by_templates(tpl.account_dest_id)
|
||||
existing = self.env["account.fiscal.position.account"].search([
|
||||
("position_id", "=", pos_id),
|
||||
("account_src_id", "=", src_id),
|
||||
("account_dest_id", "=", dest_id),
|
||||
])
|
||||
if not existing:
|
||||
# create a new mapping
|
||||
result.append((0, 0, {
|
||||
'position_id': pos_id,
|
||||
'account_src_id': src_id,
|
||||
'account_dest_id': dest_id,
|
||||
}))
|
||||
else:
|
||||
current_fp_accounts -= existing
|
||||
# Mark to be removed the lines not found
|
||||
if current_fp_accounts:
|
||||
result += [(2, x.id) for x in current_fp_accounts]
|
||||
return result
|
||||
|
||||
@api.multi
|
||||
@tools.ormcache("templates", "current_fp_taxes")
|
||||
def find_fp_tax_by_templates(self, templates, current_fp_taxes):
|
||||
result = []
|
||||
for tpl in templates:
|
||||
pos_id = self.find_fp_by_templates(tpl.position_id)
|
||||
src_id = self.find_tax_by_templates(tpl.tax_src_id)
|
||||
dest_id = self.find_tax_by_templates(tpl.tax_dest_id)
|
||||
existing = self.env["account.fiscal.position.tax"].search([
|
||||
("position_id", "=", pos_id),
|
||||
("tax_src_id", "=", src_id),
|
||||
("tax_dest_id", "=", dest_id),
|
||||
])
|
||||
if not existing:
|
||||
# create a new mapping
|
||||
result.append((0, 0, {
|
||||
'position_id': pos_id,
|
||||
'tax_src_id': src_id,
|
||||
'tax_dest_id': dest_id,
|
||||
}))
|
||||
else:
|
||||
current_fp_taxes -= existing
|
||||
# Mark to be removed the lines not found
|
||||
if current_fp_taxes:
|
||||
result += [(2, x.id) for x in current_fp_taxes]
|
||||
return result
|
||||
|
||||
@api.model
|
||||
@tools.ormcache("name")
|
||||
def fields_to_ignore(self, template, name):
|
||||
"""Get fields that will not be used when checking differences.
|
||||
|
||||
:param str template: A template record.
|
||||
:param str name: The name of the template model.
|
||||
:return set: Fields to ignore in diff.
|
||||
"""
|
||||
specials_mapping = {
|
||||
"account.tax.template": {
|
||||
"children_tax_ids",
|
||||
},
|
||||
"account.account.template": {
|
||||
"code",
|
||||
},
|
||||
}
|
||||
specials = ({"display_name", "__last_update", "company_id"} |
|
||||
specials_mapping.get(name, set()))
|
||||
return set(models.MAGIC_COLUMNS) | specials
|
||||
|
||||
@api.model
|
||||
def diff_fields(self, template, real):
|
||||
"""Get fields that are different in template and real records.
|
||||
|
||||
:param odoo.models.Model template:
|
||||
Template record.
|
||||
:param odoo.models.Model real:
|
||||
Real record.
|
||||
|
||||
:return dict:
|
||||
Fields that are different in both records, and the expected value.
|
||||
"""
|
||||
result = dict()
|
||||
ignore = self.fields_to_ignore(template, template._name)
|
||||
for key, field in template._fields.items():
|
||||
if key in ignore:
|
||||
continue
|
||||
expected = t = None
|
||||
# Translate template records to reals for comparison
|
||||
relation = field.get_description(self.env).get("relation", "")
|
||||
if relation:
|
||||
if ".tax.template" in relation:
|
||||
t = "tax"
|
||||
elif ".account.template" in relation:
|
||||
t = "account"
|
||||
if t:
|
||||
find = getattr(
|
||||
self,
|
||||
"find_%s%s_by_templates" % (
|
||||
"fp_" if ".fiscal.position" in relation
|
||||
else "",
|
||||
t))
|
||||
if ".fiscal.position" in relation:
|
||||
# Special case: if something is returned, then
|
||||
# there's any difference, so it will get non equal
|
||||
# when comparing, although we get the warning
|
||||
# "Comparing apples with oranges"
|
||||
expected = find(template[key], real[key])
|
||||
else:
|
||||
exp_id = find(template[key])
|
||||
expected = self.env[relation[:-9]].browse(exp_id)
|
||||
# Register detected differences
|
||||
try:
|
||||
if expected is not None:
|
||||
if expected != [] and expected != real[key]:
|
||||
result[key] = expected
|
||||
elif template[key] != real[key]:
|
||||
result[key] = template[key]
|
||||
if isinstance(result.get(key, False), models.Model):
|
||||
# Avoid to cache recordset references
|
||||
result[key] = result[key].id
|
||||
except KeyError:
|
||||
pass
|
||||
return result
|
||||
|
||||
@api.model
|
||||
def diff_notes(self, template, real):
|
||||
"""Get notes for humans on why is this record going to be updated.
|
||||
|
||||
:param openerp.models.Model template:
|
||||
Template record.
|
||||
|
||||
:param openerp.models.Model real:
|
||||
Real record.
|
||||
|
||||
:return str:
|
||||
Notes result.
|
||||
"""
|
||||
result = list()
|
||||
different_fields = sorted(
|
||||
template._fields[f].get_description(self.env)["string"]
|
||||
for f in self.diff_fields(template, real).keys())
|
||||
if different_fields:
|
||||
result.append(
|
||||
_("Differences in these fields: %s.") %
|
||||
", ".join(different_fields))
|
||||
# Special for taxes
|
||||
if template._name == "account.tax.template":
|
||||
if not real.active:
|
||||
result.append(_("Tax is disabled."))
|
||||
return "\n".join(result)
|
||||
|
||||
@api.multi
|
||||
def _find_taxes(self):
|
||||
"""Search for, and load, tax templates to create/update/delete."""
|
||||
found_taxes_ids = []
|
||||
self.tax_ids.unlink()
|
||||
# Search for changes between template and real tax
|
||||
for template in self.chart_template_ids.\
|
||||
with_context(active_test=False).mapped("tax_template_ids"):
|
||||
# Check if the template matches a real tax
|
||||
tax_id = self.find_tax_by_templates(template)
|
||||
if not tax_id:
|
||||
# Tax to be created
|
||||
self.tax_ids.create({
|
||||
'tax_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'new',
|
||||
'notes': _('Name or description not found.'),
|
||||
})
|
||||
else:
|
||||
found_taxes_ids.append(tax_id)
|
||||
# Check the tax for changes
|
||||
tax = self.env['account.tax'].browse(tax_id)
|
||||
notes = self.diff_notes(template, tax)
|
||||
if notes:
|
||||
# Tax to be updated
|
||||
self.tax_ids.create({
|
||||
'tax_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'updated',
|
||||
'update_tax_id': tax_id,
|
||||
'notes': notes,
|
||||
})
|
||||
# search for taxes not in the template and propose them for
|
||||
# deactivation
|
||||
taxes_to_deactivate = self.env['account.tax'].search(
|
||||
[('company_id', '=', self.company_id.id),
|
||||
("id", "not in", found_taxes_ids),
|
||||
("active", "=", True)])
|
||||
for tax in taxes_to_deactivate:
|
||||
self.tax_ids.create({
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'deleted',
|
||||
'update_tax_id': tax.id,
|
||||
'notes': _("To deactivate: not in the template"),
|
||||
})
|
||||
|
||||
@api.multi
|
||||
def _find_accounts(self):
|
||||
"""Load account templates to create/update."""
|
||||
self.account_ids.unlink()
|
||||
for template in self.chart_template_ids.mapped("account_ids"):
|
||||
# Search for a real account that matches the template
|
||||
account_id = self.find_account_by_templates(template)
|
||||
if not account_id:
|
||||
# Account to be created
|
||||
self.account_ids.create({
|
||||
'account_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'new',
|
||||
'notes': _('No account found with this code.'),
|
||||
})
|
||||
else:
|
||||
# Check the account for changes
|
||||
account = self.env['account.account'].browse(account_id)
|
||||
notes = self.diff_notes(template, account)
|
||||
if notes:
|
||||
# Account to be updated
|
||||
self.account_ids.create({
|
||||
'account_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'updated',
|
||||
'update_account_id': account_id,
|
||||
'notes': notes,
|
||||
})
|
||||
|
||||
@api.multi
|
||||
def _find_fiscal_positions(self):
|
||||
"""Load fiscal position templates to create/update."""
|
||||
wiz_fp = self.env['wizard.update.charts.accounts.fiscal.position']
|
||||
self.fiscal_position_ids.unlink()
|
||||
|
||||
# Search for new / updated fiscal positions
|
||||
templates = self.env['account.fiscal.position.template'].search(
|
||||
[('chart_template_id', 'in', self.chart_template_ids.ids)])
|
||||
for template in templates:
|
||||
# Search for a real fiscal position that matches the template
|
||||
fp_id = self.find_fp_by_templates(template)
|
||||
if not fp_id:
|
||||
# Fiscal position to be created
|
||||
wiz_fp.create({
|
||||
'fiscal_position_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'new',
|
||||
'notes': _('No fiscal position found with this name.')
|
||||
})
|
||||
else:
|
||||
# Check the fiscal position for changes
|
||||
fp = self.env['account.fiscal.position'].browse(fp_id)
|
||||
notes = self.diff_notes(template, fp)
|
||||
if notes:
|
||||
# Fiscal position template to be updated
|
||||
wiz_fp.create({
|
||||
'fiscal_position_id': template.id,
|
||||
'update_chart_wizard_id': self.id,
|
||||
'type': 'updated',
|
||||
'update_fiscal_position_id': fp_id,
|
||||
'notes': notes,
|
||||
})
|
||||
|
||||
@api.multi
|
||||
def _update_taxes(self):
|
||||
"""Process taxes to create/update/deactivate."""
|
||||
for wiz_tax in self.tax_ids:
|
||||
template, tax = wiz_tax.tax_id, wiz_tax.update_tax_id
|
||||
# Deactivate tax
|
||||
if wiz_tax.type == 'deleted':
|
||||
tax.active = False
|
||||
_logger.info(_("Deactivated tax %s."), "'%s'" % tax.name)
|
||||
continue
|
||||
# Create tax
|
||||
if wiz_tax.type == 'new':
|
||||
template._generate_tax(self.company_id)
|
||||
_logger.info(_("Created tax %s."), "'%s'" % template.name)
|
||||
# Update tax
|
||||
else:
|
||||
for key, value in self.diff_fields(template, tax).items():
|
||||
# We defer update because account might not be created yet
|
||||
if key in {'account_id', 'refund_account_id'}:
|
||||
continue
|
||||
tax[key] = value
|
||||
_logger.info(_("Updated tax %s."), "'%s'" % template.name)
|
||||
|
||||
@api.multi
|
||||
def _update_accounts(self):
|
||||
"""Process accounts to create/update."""
|
||||
for wiz_account in self.account_ids:
|
||||
account, template = (wiz_account.update_account_id,
|
||||
wiz_account.account_id)
|
||||
if wiz_account.type == 'new':
|
||||
# Create the account
|
||||
tax_template_ref = {
|
||||
tax.id: self.find_tax_by_templates(tax) for tax in
|
||||
template.tax_ids
|
||||
}
|
||||
vals = self.chart_template_id._get_account_vals(
|
||||
self.company_id, template,
|
||||
self.padded_code(template.code),
|
||||
tax_template_ref,
|
||||
)
|
||||
try:
|
||||
with self.env.cr.savepoint():
|
||||
self.chart_template_id.create_record_with_xmlid(
|
||||
self.company_id, template, 'account.account', vals,
|
||||
)
|
||||
_logger.info(
|
||||
_("Created account %s."),
|
||||
"'%s - %s'" % (vals['code'], vals['name']),
|
||||
)
|
||||
except Exception:
|
||||
self.rejected_new_account_number += 1
|
||||
if config['test_enable']:
|
||||
_logger.info(EXCEPTION_TEXT)
|
||||
else: # pragma: no cover
|
||||
_logger.exception(
|
||||
"ERROR: " + _("Exception creating account %s."),
|
||||
"'%s - %s'" % (template.code, template.name),
|
||||
)
|
||||
if not self.continue_on_errors:
|
||||
break
|
||||
else:
|
||||
# Update the account
|
||||
try:
|
||||
with self.env.cr.savepoint():
|
||||
for key, value in (iter(self.diff_fields(
|
||||
template, account).items())):
|
||||
account[key] = value
|
||||
_logger.info(
|
||||
_("Updated account %s."),
|
||||
"'%s - %s'" % (account.code, account.name),
|
||||
)
|
||||
except Exception:
|
||||
self.rejected_updated_account_number += 1
|
||||
if config['test_enable']:
|
||||
_logger.info(EXCEPTION_TEXT)
|
||||
else: # pragma: no cover
|
||||
_logger.exception(
|
||||
"ERROR: " + _("Exception writing account %s."),
|
||||
"'%s - %s'" % (account.code, account.name),
|
||||
)
|
||||
if not self.continue_on_errors:
|
||||
break
|
||||
|
||||
@api.multi
|
||||
def _update_taxes_pending_for_accounts(self):
|
||||
"""Updates the taxes (created or updated on previous steps) to set
|
||||
the references to the accounts (the taxes where created/updated first,
|
||||
when the referenced accounts are still not available).
|
||||
"""
|
||||
for wiz_tax in self.tax_ids:
|
||||
if wiz_tax.type == "deleted" or not wiz_tax.update_tax_id:
|
||||
continue
|
||||
template = wiz_tax.tax_id
|
||||
tax = wiz_tax.update_tax_id
|
||||
done = False
|
||||
for key, value in self.diff_fields(template, tax).items():
|
||||
if key in {'account_id', 'refund_account_id'}:
|
||||
tax[key] = value
|
||||
done = True
|
||||
if done:
|
||||
_logger.info(_("Post-updated tax %s."), "'%s'" % tax.name)
|
||||
|
||||
def _prepare_fp_vals(self, fp_template):
|
||||
# Tax mappings
|
||||
tax_mapping = []
|
||||
for fp_tax in fp_template.tax_ids:
|
||||
# Create the fp tax mapping
|
||||
tax_mapping.append({
|
||||
'tax_src_id': self.find_tax_by_templates(fp_tax.tax_src_id),
|
||||
'tax_dest_id': self.find_tax_by_templates(fp_tax.tax_dest_id),
|
||||
})
|
||||
# Account mappings
|
||||
account_mapping = []
|
||||
for fp_account in fp_template.account_ids:
|
||||
# Create the fp account mapping
|
||||
account_mapping.append({
|
||||
'account_src_id': (
|
||||
self.find_account_by_templates(fp_account.account_src_id)
|
||||
),
|
||||
'account_dest_id': (
|
||||
self.find_account_by_templates(fp_account.account_dest_id)
|
||||
),
|
||||
})
|
||||
return {
|
||||
'company_id': self.company_id.id,
|
||||
'name': fp_template.name,
|
||||
'tax_ids': [(0, 0, x) for x in tax_mapping],
|
||||
'account_ids': [(0, 0, x) for x in account_mapping],
|
||||
}
|
||||
|
||||
@api.multi
|
||||
def _update_fiscal_positions(self):
|
||||
"""Process fiscal position templates to create/update."""
|
||||
for wiz_fp in self.fiscal_position_ids:
|
||||
fp, template = (wiz_fp.update_fiscal_position_id,
|
||||
wiz_fp.fiscal_position_id)
|
||||
if wiz_fp.type == 'new':
|
||||
# Create a new fiscal position
|
||||
self.chart_template_id.create_record_with_xmlid(
|
||||
self.company_id, template, 'account.fiscal.position',
|
||||
self._prepare_fp_vals(template),
|
||||
)
|
||||
else:
|
||||
# Update the given fiscal position
|
||||
for key, value in self.diff_fields(template, fp).items():
|
||||
fp[key] = value
|
||||
_logger.info(
|
||||
_("Created or updated fiscal position %s."),
|
||||
"'%s'" % template.name)
|
||||
|
||||
|
||||
class WizardUpdateChartsAccountsTax(models.TransientModel):
|
||||
_name = 'wizard.update.charts.accounts.tax'
|
||||
_description = ("Tax that needs to be updated (new or updated in the "
|
||||
"template).")
|
||||
|
||||
tax_id = fields.Many2one(
|
||||
comodel_name='account.tax.template', string='Tax template',
|
||||
ondelete='set null')
|
||||
update_chart_wizard_id = fields.Many2one(
|
||||
comodel_name='wizard.update.charts.accounts',
|
||||
string='Update chart wizard', required=True, ondelete='cascade')
|
||||
type = fields.Selection(
|
||||
selection=[('new', 'New template'),
|
||||
('updated', 'Updated template'),
|
||||
('deleted', 'Tax to deactivate')],
|
||||
string='Type',
|
||||
readonly=True)
|
||||
type_tax_use = fields.Selection(
|
||||
related="tax_id.type_tax_use",
|
||||
readonly=True)
|
||||
update_tax_id = fields.Many2one(
|
||||
comodel_name='account.tax', string='Tax to update', required=False,
|
||||
ondelete='set null')
|
||||
notes = fields.Text('Notes', readonly=True)
|
||||
|
||||
|
||||
class WizardUpdateChartsAccountsAccount(models.TransientModel):
|
||||
_name = 'wizard.update.charts.accounts.account'
|
||||
_description = ("Account that needs to be updated (new or updated in the "
|
||||
"template).")
|
||||
|
||||
account_id = fields.Many2one(
|
||||
comodel_name='account.account.template', string='Account template',
|
||||
required=True, ondelete='set null')
|
||||
update_chart_wizard_id = fields.Many2one(
|
||||
comodel_name='wizard.update.charts.accounts',
|
||||
string='Update chart wizard', required=True, ondelete='cascade'
|
||||
)
|
||||
type = fields.Selection(
|
||||
selection=[('new', 'New template'),
|
||||
('updated', 'Updated template')],
|
||||
string='Type',
|
||||
readonly=True)
|
||||
update_account_id = fields.Many2one(
|
||||
comodel_name='account.account', string='Account to update',
|
||||
required=False, ondelete='set null')
|
||||
notes = fields.Text('Notes', readonly=True)
|
||||
|
||||
|
||||
class WizardUpdateChartsAccountsFiscalPosition(models.TransientModel):
|
||||
_name = 'wizard.update.charts.accounts.fiscal.position'
|
||||
_description = ("Fiscal position that needs to be updated (new or updated "
|
||||
"in the template).")
|
||||
|
||||
fiscal_position_id = fields.Many2one(
|
||||
comodel_name='account.fiscal.position.template',
|
||||
string='Fiscal position template', required=True, ondelete='set null')
|
||||
update_chart_wizard_id = fields.Many2one(
|
||||
comodel_name='wizard.update.charts.accounts',
|
||||
string='Update chart wizard', required=True, ondelete='cascade')
|
||||
type = fields.Selection(
|
||||
selection=[('new', 'New template'),
|
||||
('updated', 'Updated template')],
|
||||
string='Type', readonly=True, required=True,
|
||||
)
|
||||
update_fiscal_position_id = fields.Many2one(
|
||||
comodel_name='account.fiscal.position', required=False,
|
||||
string='Fiscal position to update', ondelete='set null')
|
||||
notes = fields.Text('Notes', readonly=True)
|
||||
133
account_chart_update/wizard/wizard_chart_update_view.xml
Normal file
133
account_chart_update/wizard/wizard_chart_update_view.xml
Normal file
@@ -0,0 +1,133 @@
|
||||
<?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_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" invisible="1" />
|
||||
<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>
|
||||
|
||||
<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>
|
||||
|
||||
</notebook>
|
||||
</group>
|
||||
|
||||
<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>
|
||||
|
||||
<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>
|
||||
|
||||
<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>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user